CUDA C API - Advanced Flashcards
What is CUDA Stream
- In CUDA programming, a stream is a series of commands that execute in order.
- Operations within a given stream occur in order.
- Operations in different non-default streams are not guaranteed to operate in any specific order relative to each other.
What is the default Stream?
- Kernels runs on default stream if no manually created one is provided. This stream is special.
- The default stream is blocking and will both wait for all other streams to complete before running, and, will block other streams from running until it completes
How to add additional streams, what are they called? How to destroy them?
- non-default CUDA streams
```c
cudaStream_t stream;
cudaStreamCreate(&stream);
someKernel«<number_of_blocks, threads_per_block, 0, stream»>();
// cudaStreamDestroy
will return immediately (is non-blocking), but will not actually destroy stream until
// all stream operations are complete.
cudaStreamDestroy(stream);
~~~
Asynchronously copy pinned host memory to device over non-default stream.
```c
cudaMemcpyAsync(&device_array, // Take care to access correct location in array.
&host_array, // Take care to access correct location in array.
segmentSize, // Only copy a segment’s worth of memory.
cudaMemcpyHostToDevice,
stream); // Provide optional argument for non-default stream.
~~~