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(&'static str)

Failure with CUDA cuDNN initialization.

AllocFailed(&'static str)

Failure with allocation.

BadParam(&'static str)

Failure with a provided parameter.

InternalError(&'static str)

Failure with cuDNN.

InvalidValue(&'static str)

Failure with provided value.

ArchMismatch(&'static str)

Failure with the hardware architecture.

MappingError(&'static str)

Failure with memory access or internal error/bug.

ExecutionFailed(&'static str)

Failure with Kernel execution.

NotSupported(&'static str)

Failure with an unsupported request.

LicenseError(&'static str)

Failure CUDA License.

Unknown(&'static str)

Failure

Trait Implementations

impl Clone for Error
[src]

fn clone(&self) -> Error

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl Copy for Error
[src]

impl Debug for Error
[src]

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

Formats the value using the given formatter.

impl Display for Error
[src]

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

Formats the value using the given formatter.

impl Error for Error
[src]

fn description(&self) -> &str

A short description of the error. Read more

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

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