pub type Error = Error<cusparseStatus_t>;Expand description
Error type for cuSPARSE operations.
Aliased Type§
pub enum Error {
Status {
status: cusparseStatus_t,
},
Loader(LoaderError),
FeatureNotSupported {
api: &'static str,
since: CudaVersion,
},
}Variants§
Status
The library returned a non-success status code.
Fields
§
status: cusparseStatus_tLoader(LoaderError)
The dynamic loader failed.
FeatureNotSupported
The requested API is newer than the installed driver supports.