#[repr(u32)]pub enum CuTensorMapFloatOobFill {
None = 0,
NanRequestZeroFma = 1,
}Expand description
Out-of-bounds fill mode for TMA loads.
When a TMA access goes out of the declared tensor bounds, this controls whether out-of-bounds elements return zero or NaN.
Variants§
None = 0
No fill — out-of-bounds reads are undefined.
NanRequestZeroFma = 1
Out-of-bounds float reads return NaN; FMA returns zero.
Trait Implementations§
Source§impl Clone for CuTensorMapFloatOobFill
impl Clone for CuTensorMapFloatOobFill
Source§fn clone(&self) -> CuTensorMapFloatOobFill
fn clone(&self) -> CuTensorMapFloatOobFill
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CuTensorMapFloatOobFill
impl Debug for CuTensorMapFloatOobFill
Source§impl Hash for CuTensorMapFloatOobFill
impl Hash for CuTensorMapFloatOobFill
Source§impl PartialEq for CuTensorMapFloatOobFill
impl PartialEq for CuTensorMapFloatOobFill
impl Copy for CuTensorMapFloatOobFill
impl Eq for CuTensorMapFloatOobFill
impl StructuralPartialEq for CuTensorMapFloatOobFill
Auto Trait Implementations§
impl Freeze for CuTensorMapFloatOobFill
impl RefUnwindSafe for CuTensorMapFloatOobFill
impl Send for CuTensorMapFloatOobFill
impl Sync for CuTensorMapFloatOobFill
impl Unpin for CuTensorMapFloatOobFill
impl UnsafeUnpin for CuTensorMapFloatOobFill
impl UnwindSafe for CuTensorMapFloatOobFill
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