Show / Hide Table of Contents

    Enum DataType

    The cublasDataType_t type is an enumerant to specify the data precision. It is used when the data reference does not carry the type itself (e.g void *). To mimic the typedef in cublas_api.h, we redefine the enum identically to cudaDataType

    Namespace: ManagedCuda.CudaBlas
    Assembly: CudaBlas.dll
    Syntax
    public enum DataType

    Fields

    Name Description
    CUDA_C_16F

    16 bit complex

    CUDA_C_32F

    32 bit complex

    CUDA_C_64F

    64 bit complex

    CUDA_C_8I

    8 bit complex as a pair of signed integers

    CUDA_C_8U

    8 bit complex as a pair of signed integers

    CUDA_R_16F

    16 bit real

    CUDA_R_32F

    32 bit real

    CUDA_R_64F

    64 bit real

    CUDA_R_8I

    8 bit real as a signed integer

    CUDA_R_8U

    8 bit real as a signed integer

    • Improve this Doc
    • View Source
    Back to top Generated by DocFX