pub enum MatmulLaunchError {
Unavailable(MatmulAvailabilityError),
InvalidProblem(MatmulInvalidProblem),
InvalidConfig(InvalidConfigError),
Unimplemented(MatmulUnimplementedError),
}
Variants§
InvalidProblem(MatmulInvalidProblem)
InvalidConfig(InvalidConfigError)
Unimplemented(MatmulUnimplementedError)
Trait Implementations§
Source§impl Debug for MatmulLaunchError
impl Debug for MatmulLaunchError
Source§impl From<Box<dyn Display>> for MatmulLaunchError
impl From<Box<dyn Display>> for MatmulLaunchError
Source§fn from(value: InvalidConfigError) -> Self
fn from(value: InvalidConfigError) -> Self
Converts to this type from the input type.
Source§impl From<MatmulAvailabilityError> for MatmulLaunchError
impl From<MatmulAvailabilityError> for MatmulLaunchError
Source§fn from(value: MatmulAvailabilityError) -> Self
fn from(value: MatmulAvailabilityError) -> Self
Converts to this type from the input type.
Source§impl From<MatmulInvalidProblem> for MatmulLaunchError
impl From<MatmulInvalidProblem> for MatmulLaunchError
Source§fn from(value: MatmulInvalidProblem) -> Self
fn from(value: MatmulInvalidProblem) -> Self
Converts to this type from the input type.
Source§impl From<MatmulLaunchError> for ConvLaunchError
impl From<MatmulLaunchError> for ConvLaunchError
Source§fn from(value: MatmulLaunchError) -> Self
fn from(value: MatmulLaunchError) -> Self
Converts to this type from the input type.
Source§impl From<MatmulUnimplementedError> for MatmulLaunchError
impl From<MatmulUnimplementedError> for MatmulLaunchError
Source§fn from(value: MatmulUnimplementedError) -> Self
fn from(value: MatmulUnimplementedError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MatmulLaunchError
impl !RefUnwindSafe for MatmulLaunchError
impl !Send for MatmulLaunchError
impl !Sync for MatmulLaunchError
impl Unpin for MatmulLaunchError
impl !UnwindSafe for MatmulLaunchError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more