-
Updated
Mar 8, 2017 - Objective-C
memory-allocation
Here are 198 public repositories matching this topic...
-
Updated
Jul 30, 2019 - C++
-
Updated
Mar 3, 2020 - C++
-
Updated
May 5, 2020 - C
-
Updated
Mar 3, 2020 - Scala
-
Updated
May 24, 2020 - C
-
Updated
Apr 24, 2020 - C++
-
Updated
May 22, 2020 - D
-
Updated
Oct 20, 2018 - C
Is your feature request related to a problem? Please describe.
There's currently no memory resource for allocating pinned memory (e.g., cudaHostAlloc
).
Describe the solution you'd like
There should be a pinned_memory_resource
.
Additional context
Inspired by rapidsai/cudf#2872 (comment)
Support C11 free()
With aligned_alloc() in the C11 standard, free() is called to free memory, rather than an equivalent aligned_free()
.
We should update our library with some logic that can be used to correctly call aligned_free() if free() is used instead.
Share Code Snippets
We should have the ability to share examples a la jsFiddle. There are some examples that I would like to share with my students without having to recreate them each time.
-
Updated
Jan 5, 2019 - C
-
Updated
Oct 19, 2019 - C++
-
Updated
May 15, 2020 - Rust
-
Updated
Jan 29, 2020 - Shell
-
Updated
Oct 30, 2018 - C
-
Updated
May 20, 2019 - C++
-
Updated
Feb 20, 2020 - Cuda
-
Updated
Dec 19, 2019 - Zig
-
Updated
Oct 23, 2017 - C++
-
Updated
Sep 29, 2017 - C
-
Updated
Apr 30, 2018 - C
-
Updated
Apr 19, 2018 - C
-
Updated
Apr 2, 2019 - Rust
-
Updated
Apr 3, 2019 - Java
Improve this page
Add a description, image, and links to the memory-allocation topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the memory-allocation topic, visit your repo's landing page and select "manage topics."
In addition to memory-specific concepts already described in docs, it would be useful to describe basic concepts of memory management, such as allocator, arena, pool, etc. This would make the library design easier to understand by newcomers. Also this clarifies the nomenclature used by the library and its docs.