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