Enum cublas::error::Error [] [src]

pub enum Error {
    NotInitialized,
    AllocFailed,
    InternalError(&'static str),
    InvalidValue(&'static str),
    ArchMismatch,
    MappingError,
    ExecutionFailed,
    NotSupported(&'static str),
    LicenseError,
    Unknown(&'static str),
}

Defines cuBLAS errors.

Variants

Failure with cuBLAS initialization.

Failure with allocation.

Failure with cuDNN.

Failure with provided value.

Failure with the hardware architecture.

Failure with memory access or internal error/bug.

Failure with Kernel execution.

Failure with an unsupported request.

Failure CUDA License.

Failure

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Copy for Error
[src]

impl Clone for Error
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more