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
§
status: cusolverStatus_tLoader(LoaderError)
The dynamic loader failed.
FeatureNotSupported
The requested API is newer than the installed driver supports.