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 !RefUnwindSafe for ConvSetupError
impl !Send for ConvSetupError
impl !Sync for ConvSetupError
impl !UnwindSafe for ConvSetupError
impl Freeze for ConvSetupError
impl Unpin for ConvSetupError
impl UnsafeUnpin 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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more