Enum DiagType
The DiagType type indicates whether the main diagonal of the dense matrix is unity and consequently should not be touched or modified by the function. Its values correspond to Fortran characters ‘N’ or ‘n’ (non-unit) and ‘U’ or ‘u’ (unit) that are often used as parameters to legacy BLAS implementations.
Namespace: ManagedCuda.CudaBlas
Assembly: CudaBlas.dll
Syntax
public enum DiagType
Fields
| Name | Description |
|---|---|
| NonUnit | the matrix diagonal has non-unit elements |
| Unit | the matrix diagonal has unit elements |