File size: 565 Bytes
8ae5fc5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | ---
grand_parent: Pipelines
parent: cuda::pipeline
---
# `cuda::pipeline::producer_commit`
Defined in header `<cuda/pipeline>`:
```cuda
template <cuda::thread_scope Scope>
__host__ __device__
void cuda::pipeline<Scope>::producer_commit();
```
Commits operations previously issued by the current thread to the current
_pipeline stage_.
## Expects
If the calling thread is a _consumer thread_, the behavior is undefined.
The pipeline is in a _quitted state_ (see [`cuda::pipeline::quit`]), the
behavior is undefined.
[`cuda::pipeline::quit`]: ./quit.md
|