@@ -357,7 +357,7 @@ The following tables list the functions available in the `CUDA Runtime API <http
357357 +----------------------------+--------------------------------------------------------------------------------------------+
358358 | cudaMallocArray | -- |
359359 +----------------------------+--------------------------------------------------------------------------------------------+
360- | cudaMallocHost | alpaka::allocBuf<TElement>(device, extents) 1D, 2D, 3D suppoorted! |
360+ | cudaMallocHost | alpaka::allocBuf<TElement>(device, extents) 1D, 2D, 3D supported! |
361361 +----------------------------+--------------------------------------------------------------------------------------------+
362362 | cudaMallocManaged | -- |
363363 +----------------------------+--------------------------------------------------------------------------------------------+
@@ -376,13 +376,13 @@ The following tables list the functions available in the `CUDA Runtime API <http
376376 +----------------------------+--------------------------------------------------------------------------------------------+
377377 | cudaMemRangeGetAttributes | -- |
378378 +----------------------------+--------------------------------------------------------------------------------------------+
379- | cudaMemcpy | alpaka::memcpy(memBufDst, memBufSrc, extents1D) |
379+ | cudaMemcpy | alpaka::memcpy(queue, memBufDst, memBufSrc, extents1D) |
380380 +----------------------------+--------------------------------------------------------------------------------------------+
381- | cudaMemcpy2D | alpaka::memcpy(memBufDst, memBufSrc, extents2D) |
381+ | cudaMemcpy2D | alpaka::memcpy(queue, memBufDst, memBufSrc, extents2D) |
382382 +----------------------------+--------------------------------------------------------------------------------------------+
383383 | cudaMemcpy2DArrayToArray | -- |
384384 +----------------------------+--------------------------------------------------------------------------------------------+
385- | cudaMemcpy2DAsync | alpaka::memcpy(memBufDst, memBufSrc, extents2D, queue ) |
385+ | cudaMemcpy2DAsync | alpaka::memcpy(queue, memBufDst, memBufSrc, extents2D) |
386386 +----------------------------+--------------------------------------------------------------------------------------------+
387387 | cudaMemcpy2DFromArray | -- |
388388 +----------------------------+--------------------------------------------------------------------------------------------+
@@ -392,17 +392,17 @@ The following tables list the functions available in the `CUDA Runtime API <http
392392 +----------------------------+--------------------------------------------------------------------------------------------+
393393 | cudaMemcpy2DToArrayAsync | -- |
394394 +----------------------------+--------------------------------------------------------------------------------------------+
395- | cudaMemcpy3D | alpaka::memcpy(memBufDst, memBufSrc, extents3D) |
395+ | cudaMemcpy3D | alpaka::memcpy(queue, memBufDst, memBufSrc, extents3D) |
396396 +----------------------------+--------------------------------------------------------------------------------------------+
397- | cudaMemcpy3DAsync | alpaka::memcpy(memBufDst, memBufSrc, extents3D, queue ) |
397+ | cudaMemcpy3DAsync | alpaka::memcpy(queue, memBufDst, memBufSrc, extents3D) |
398398 +----------------------------+--------------------------------------------------------------------------------------------+
399- | cudaMemcpy3DPeer | alpaka::memcpy(memBufDst, memBufSrc, extents3D) |
399+ | cudaMemcpy3DPeer | alpaka::memcpy(queue, memBufDst, memBufSrc, extents3D) |
400400 +----------------------------+--------------------------------------------------------------------------------------------+
401- | cudaMemcpy3DPeerAsync | alpaka::memcpy(memBufDst, memBufSrc, extents3D, queue ) |
401+ | cudaMemcpy3DPeerAsync | alpaka::memcpy(queue, memBufDst, memBufSrc, extents3D) |
402402 +----------------------------+--------------------------------------------------------------------------------------------+
403403 | cudaMemcpyArrayToArray | -- |
404404 +----------------------------+--------------------------------------------------------------------------------------------+
405- | cudaMemcpyAsync | alpaka::memcpy(memBufDst, memBufSrc, extents1D, queue ) |
405+ | cudaMemcpyAsync | alpaka::memcpy(queue, memBufDst, memBufSrc, extents1D) |
406406 +----------------------------+--------------------------------------------------------------------------------------------+
407407 | cudaMemcpyFromArray | -- |
408408 +----------------------------+--------------------------------------------------------------------------------------------+
@@ -412,9 +412,9 @@ The following tables list the functions available in the `CUDA Runtime API <http
412412 +----------------------------+--------------------------------------------------------------------------------------------+
413413 | cudaMemcpyFromSymbolAsync | -- |
414414 +----------------------------+--------------------------------------------------------------------------------------------+
415- | cudaMemcpyPeer | alpaka::memcpy(memBufDst, memBufSrc, extents1D) |
415+ | cudaMemcpyPeer | alpaka::memcpy(queue, memBufDst, memBufSrc, extents1D) |
416416 +----------------------------+--------------------------------------------------------------------------------------------+
417- | cudaMemcpyPeerAsync | alpaka::memcpy(memBufDst, memBufSrc, extents1D, queue ) |
417+ | cudaMemcpyPeerAsync | alpaka::memcpy(queue, memBufDst, memBufSrc, extents1D) |
418418 +----------------------------+--------------------------------------------------------------------------------------------+
419419 | cudaMemcpyToArray | -- |
420420 +----------------------------+--------------------------------------------------------------------------------------------+
@@ -424,17 +424,17 @@ The following tables list the functions available in the `CUDA Runtime API <http
424424 +----------------------------+--------------------------------------------------------------------------------------------+
425425 | cudaMemcpyToSymbolAsync | -- |
426426 +----------------------------+--------------------------------------------------------------------------------------------+
427- | cudaMemset | alpaka::memset(memBufDst, byte, extents1D) |
427+ | cudaMemset | alpaka::memset(queue, memBufDst, byte, extents1D) |
428428 +----------------------------+--------------------------------------------------------------------------------------------+
429- | cudaMemset2D | alpaka::memset(memBufDst, byte, extents2D) |
429+ | cudaMemset2D | alpaka::memset(queue, memBufDst, byte, extents2D) |
430430 +----------------------------+--------------------------------------------------------------------------------------------+
431- | cudaMemset2DAsync | alpaka::memset(memBufDst, byte, extents2D, queue) |
431+ | cudaMemset2DAsync | alpaka::memset(queue, memBufDst, byte, extents2D, queue) |
432432 +----------------------------+--------------------------------------------------------------------------------------------+
433- | cudaMemset3D | alpaka::memset(memBufDst, byte, extents3D) |
433+ | cudaMemset3D | alpaka::memset(queue, memBufDst, byte, extents3D) |
434434 +----------------------------+--------------------------------------------------------------------------------------------+
435- | cudaMemset3DAsync | alpaka::memset(memBufDst, byte, extents3D, queue ) |
435+ | cudaMemset3DAsync | alpaka::memset(queue, memBufDst, byte, extents3D) |
436436 +----------------------------+--------------------------------------------------------------------------------------------+
437- | cudaMemsetAsync | alpaka::memset(memBufDst, byte, extents1D, queue ) |
437+ | cudaMemsetAsync | alpaka::memset(queue, memBufDst, byte, extents1D) |
438438 +----------------------------+--------------------------------------------------------------------------------------------+
439439 | makecudaExtent | -- |
440440 +----------------------------+--------------------------------------------------------------------------------------------+
0 commit comments