Skip to content

Commit

Permalink
Document alpaka::allocAsyncBuf
Browse files Browse the repository at this point in the history
Document alpaka::allocAsyncBuf<TElement>(queue, extents) as the alpaka
version of cudaMAllocAsync().

Signed-off-by: Andrea Bocci <[email protected]>
  • Loading branch information
fwyzard authored and j-stephan committed Sep 2, 2022
1 parent f4c0b63 commit b518e8c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/source/dev/backends.rst
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,9 @@ The following tables list the functions available in the `CUDA Runtime API <http
+----------------------------+--------------------------------------------------------------------------------------------+
| cudaFreeArray | -- |
+----------------------------+--------------------------------------------------------------------------------------------+
| cudaFreeHost | n/a |
| cudaFreeAsync | n/a (automatic memory management with reference counted memory handles) |
+----------------------------+--------------------------------------------------------------------------------------------+
| cudaFreeHost | n/a (automatic memory management with reference counted memory handles) |
+----------------------------+--------------------------------------------------------------------------------------------+
| cudaFreeMipmappedArray | -- |
+----------------------------+--------------------------------------------------------------------------------------------+
Expand Down Expand Up @@ -388,6 +390,8 @@ The following tables list the functions available in the `CUDA Runtime API <http
+----------------------------+--------------------------------------------------------------------------------------------+
| cudaMallocArray | -- |
+----------------------------+--------------------------------------------------------------------------------------------+
| cudaMallocAsync | alpaka::allocAsyncBuf<TElement>(queue, extents1D) |
+----------------------------+--------------------------------------------------------------------------------------------+
| cudaMallocHost | alpaka::allocMappedBuf<TPltf, TElement>(host, extents) 1D, 2D, 3D supported! |
+----------------------------+--------------------------------------------------------------------------------------------+
| cudaMallocManaged | -- |
Expand Down

0 comments on commit b518e8c

Please sign in to comment.