memory-allocation
Here are 225 public repositories matching this topic...
-
Updated
Mar 8, 2017 - Objective-C
-
Updated
Jul 30, 2019 - C++
-
Updated
Aug 4, 2020 - C++
-
Updated
Sep 13, 2020 - C++
-
Updated
Aug 17, 2020 - C
-
Updated
Sep 17, 2020 - C
-
Updated
Mar 3, 2020 - Scala
-
Updated
Aug 10, 2020 - C++
-
Updated
Sep 11, 2020 - D
-
Updated
Oct 20, 2018 - C
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.
-
Updated
Jan 30, 2017 - JavaScript
small has a set of unit test written with TAP framework - https://github.com/tarantool/small/tree/master/test
These unit tests produce a TAP output but it is not actually a TAP compliant and test-run.py cannot parse output from these tests. That's why we maintain .result files for unit tests and use diff-based approach here.
We need to fix output in a lib used in unit tests and make ou
-
Updated
Jan 5, 2019 - C
-
Updated
Aug 26, 2020 - Rust
-
Updated
Oct 19, 2019 - C++
-
Updated
Jan 29, 2020 - Shell
-
Updated
Oct 30, 2018 - C
-
Updated
Jul 19, 2020 - Java
-
Updated
May 20, 2019 - C++
-
Updated
May 1, 2020 - C#
-
Updated
Sep 15, 2020 - Zig
-
Updated
May 7, 2018 - C++
-
Updated
Feb 20, 2020 - Cuda
-
Updated
Apr 30, 2018 - C
-
Updated
Sep 29, 2017 - C
-
Updated
Oct 23, 2017 - C++
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."
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)