Enum rcudnn::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

Failure with CUDA cuDNN initialization.

Failure with allocation.

Failure with a provided parameter.

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]

[src]

Formats the value using the given formatter.

impl Copy for Error
[src]

impl Clone for Error
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

[src]

A short description of the error. Read more

[src]

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