Changes between Version 9 and Version 10 of Notes_on_CUDA_Semantics
- Timestamp:
- 06/29/21 15:09:15 (5 years ago)
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` 1 11 2 12 == Cuda Programming Model ==
