Changes between Initial Version and Version 1 of CUDA Documentation


Ignore:
Timestamp:
07/02/21 15:08:17 (5 years ago)
Author:
Alex Wilton
Comment:

Added Cuda Documentation Page

Legend:

Unmodified
Added
Removed
Modified
  • CUDA Documentation

    v1 v1  
     1== Supported Features ==
     2
     3* CUDA kernels with the `__global__` specifier
     4* The dim3 struct type
     5* Use of the CUDA variables `threadIdx`, `blockIdx`, `gridDim`, and `blockDim`
     6* `__syncthreads`
     7* Enqueuing multiple kernel calls with the null stream
     8* `cudaMalloc`
     9* `cudaMemcpy`
     10* `cudaFree`
     11* `cudaDeviceSynchronize`
     12
     13== Major Limitations ==
     14
     15* Lacks support for other stream types
     16
     17=== Missing Features ===
     18
     19* Use of the `warpSize` variable
     20* Atomic functions (e.g. `atomicAdd`)