Enum PointerMode
The PointerMode type indicates whether the scalar values are passed by reference on the host or device. It is important to point out that if several scalar values are present in the function call, all of them must conform to the same single pointer mode. The pointer mode can be set and retrieved using cublasSetPointerMode() and cublasGetPointerMode() routines, respectively.
Namespace: ManagedCuda.CudaBlas
Assembly: CudaBlas.dll
Syntax
public enum PointerMode
Fields
| Name | Description |
|---|---|
| Device | the scalars are passed by reference on the device |
| Host | the scalars are passed by reference on the host |