pub enum InputPrecision {
TF32,
TF32x3,
IEEE,
}Expand description
Tensor-core precision mode for dot on f32 × f32 inputs.
Variants§
TF32
TF32 precision (default on devices with Tensor Cores).
TF32x3
Emulate higher precision using three TF32 dot products.
IEEE
Full IEEE-754 precision.
Auto Trait Implementations§
impl Freeze for InputPrecision
impl RefUnwindSafe for InputPrecision
impl Send for InputPrecision
impl Sync for InputPrecision
impl Unpin for InputPrecision
impl UnsafeUnpin for InputPrecision
impl UnwindSafe for InputPrecision
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