Enum cudnn::Error [] [src]

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

Defines CUDA's cuDNN errors.

Variants

NotInitialized

Failure with CUDA cuDNN initialization.

AllocFailed

Failure with allocation.

BadParam

Failure with a provided parameter.

InternalError

Failure with cuDNN.

InvalidValue

Failure with provided value.

ArchMismatch

Failure with the hardware architecture.

MappingError

Failure with memory access or internal error/bug.

ExecutionFailed

Failure with Kernel execution.

NotSupported

Failure with an unsupported request.

LicenseError

Failure CUDA License.

Unknown

Failure

Trait Implementations

impl Display for Error

fn fmt(&self, f: &mut Formatter) -> Result

impl Error for Error

fn description(&self) -> &str

fn cause(&self) -> Option<&Error>

Derived Implementations

impl Clone for Error

fn clone(&self) -> Error

1.0.0fn clone_from(&mut self, source: &Self)

impl Copy for Error

impl Debug for Error

fn fmt(&self, __arg_0: &mut Formatter) -> Result