Skip to main content

Error

Type Alias Error 

Source
pub type Error = Error<cusolverStatus_t>;
Expand description

Error type for cuSOLVER operations.

Aliased Type§

pub enum Error {
    Status {
        status: cusolverStatus_t,
    },
    Loader(LoaderError),
    FeatureNotSupported {
        api: &'static str,
        since: CudaVersion,
    },
}

Variants§

§

Status

The library returned a non-success status code.

Fields

§

Loader(LoaderError)

The dynamic loader failed.

§

FeatureNotSupported

The requested API is newer than the installed driver supports.

Fields

§api: &'static str