pub enum ConvLaunchError {
Matmul(MatmulLaunchError),
Groups(usize),
Unknown,
}
Variants§
Trait Implementations§
Source§impl Debug for ConvLaunchError
impl Debug for ConvLaunchError
Source§impl From<MatmulAvailabilityError> for ConvLaunchError
impl From<MatmulAvailabilityError> for ConvLaunchError
Source§fn from(value: MatmulAvailabilityError) -> Self
fn from(value: MatmulAvailabilityError) -> 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 Into<AutotuneError> for ConvLaunchError
impl Into<AutotuneError> for ConvLaunchError
Source§fn into(self) -> AutotuneError
fn into(self) -> AutotuneError
Converts this type into the (usually inferred) input type.
Auto Trait Implementations§
impl Freeze for ConvLaunchError
impl !RefUnwindSafe for ConvLaunchError
impl !Send for ConvLaunchError
impl !Sync for ConvLaunchError
impl Unpin for ConvLaunchError
impl !UnwindSafe for ConvLaunchError
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