pub enum ConvSetupError {
Matmul(MatmulSetupError),
Groups(usize),
Unknown,
Launch(LaunchError),
}Variants§
Trait Implementations§
Source§impl Debug for ConvSetupError
impl Debug for ConvSetupError
Source§impl From<LaunchError> for ConvSetupError
impl From<LaunchError> for ConvSetupError
Source§fn from(value: LaunchError) -> Self
fn from(value: LaunchError) -> Self
Converts to this type from the input type.
Source§impl From<MatmulAvailabilityError> for ConvSetupError
impl From<MatmulAvailabilityError> for ConvSetupError
Source§fn from(value: MatmulAvailabilityError) -> Self
fn from(value: MatmulAvailabilityError) -> Self
Converts to this type from the input type.
Source§impl From<MatmulSetupError> for ConvSetupError
impl From<MatmulSetupError> for ConvSetupError
Source§fn from(value: MatmulSetupError) -> Self
fn from(value: MatmulSetupError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ConvSetupError
impl !RefUnwindSafe for ConvSetupError
impl !Send for ConvSetupError
impl !Sync for ConvSetupError
impl Unpin for ConvSetupError
impl !UnwindSafe for ConvSetupError
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