Changes between Version 9 and Version 10 of Notes_on_CUDA_Semantics


Ignore:
Timestamp:
06/29/21 15:09:15 (5 years ago)
Author:
Alex Wilton
Comment:

Added small list of supported CUDA features

Legend:

Unmodified
Added
Removed
Modified
  • Notes_on_CUDA_Semantics

    v9 v10  
     1== Supported Features ==
     2
     3* CUDA kernels with the `__global__` specifier
     4* Use of the CUDA variables `threadIdx`, `blockIdx`, `gridDim`, and `blockDim`
     5* `__syncthreads`
     6* Enqueuing multiple kernel calls with the null stream
     7* `cudaMalloc`
     8* `cudaMemcpy`
     9* `cudaFree`
     10* `cudaDeviceSynchronize`
    111
    212== Cuda Programming Model ==