Delegate CUstreamCallback
CUDA stream callback
Namespace: ManagedCuda.BasicTypes
Assembly: ManagedCuda.dll
Syntax
public delegate void CUstreamCallback(CUstream hStream, CUResult status, IntPtr userData);
Parameters
Type | Name | Description |
---|---|---|
CUstream | hStream | The stream the callback was added to, as passed to ::cuStreamAddCallback. May be NULL. |
CUResult | status | CUDA_SUCCESS or any persistent error on the stream. |
System.IntPtr | userData | User parameter provided at registration. |