mirror of
https://github.com/NVIDIA/cuda-samples.git
synced 2025-04-23 16:21:29 +01:00
36 lines
912 B
Markdown
36 lines
912 B
Markdown
# StreamPriorities - Stream Priorities
|
|
|
|
## Description
|
|
|
|
This sample demonstrates basic use of stream priorities.
|
|
|
|
## Key Concepts
|
|
|
|
CUDA Streams and Events
|
|
|
|
## Supported SM Architectures
|
|
|
|
## Supported OSes
|
|
|
|
Linux
|
|
|
|
## Supported CPU Architecture
|
|
|
|
x86_64, ppc64le
|
|
|
|
## CUDA APIs involved
|
|
|
|
### [CUDA Runtime API](http://docs.nvidia.com/cuda/cuda-runtime-api/index.html)
|
|
cudaMemcpy, cudaStreamCreateWithPriority, cudaDeviceGetStreamPriorityRange, cudaEventSynchronize, cudaEventRecord, cudaMalloc, cudaEventElapsedTime, cudaGetDeviceProperties, cudaEventCreate
|
|
|
|
## Dependencies needed to build/run
|
|
[Stream-Priorities](../../../README.md#stream-priorities)
|
|
|
|
## Prerequisites
|
|
|
|
Download and install the [CUDA Toolkit 12.5](https://developer.nvidia.com/cuda-downloads) for your corresponding platform.
|
|
Make sure the dependencies mentioned in [Dependencies]() section above are installed.
|
|
|
|
## References (for more details)
|
|
|