pub enum PtxType {
Show 16 variants
S8,
S16,
S32,
S64,
U8,
U16,
U32,
U64,
F16,
F32,
F64,
B8,
B16,
B32,
B64,
Pred,
}Expand description
PTX data types
Variants§
S8
8-bit signed integer
S16
16-bit signed integer
S32
32-bit signed integer
S64
64-bit signed integer
U8
8-bit unsigned integer
U16
16-bit unsigned integer
U32
32-bit unsigned integer
U64
64-bit unsigned integer
F16
16-bit floating point
F32
32-bit floating point
F64
64-bit floating point
B8
8-bit untyped
B16
16-bit untyped
B32
32-bit untyped
B64
64-bit untyped
Pred
Predicate (boolean)
Implementations§
Trait Implementations§
impl Copy for PtxType
impl Eq for PtxType
impl StructuralPartialEq for PtxType
Auto Trait Implementations§
impl Freeze for PtxType
impl RefUnwindSafe for PtxType
impl Send for PtxType
impl Sync for PtxType
impl Unpin for PtxType
impl UnsafeUnpin for PtxType
impl UnwindSafe for PtxType
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