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 |