Enum CUstreamWriteValue_flags
Flags for ::cuStreamWriteValue32
Namespace: ManagedCuda.BasicTypes
Assembly: ManagedCuda.dll
Syntax
public enum CUstreamWriteValue_flags
Fields
Name | Description |
---|---|
Default | Default behavior |
NoMemoryBarrier | Permits the write to be reordered with writes which were issued before it, as a performance optimization. Normally, ::cuStreamWriteValue32 will provide a memory fence before the write, which has similar semantics to __threadfence_system() but is scoped to the stream rather than a CUDA thread. |