Enum tract_data::prelude::DatumType
source · [−]pub enum DatumType {
}Variants
Bool
U8
U16
U32
U64
I8
I16
I32
I64
F16
F32
F64
TDim
Blob
String
QI8(QParams)
QU8(QParams)
QI32(QParams)
ComplexI16
ComplexI32
ComplexI64
ComplexF16
ComplexF32
ComplexF64
Implementations
sourceimpl DatumType
impl DatumType
pub fn super_types(&self) -> TVec<DatumType>
pub fn super_type_for(
i: impl IntoIterator<Item = impl Borrow<DatumType>>
) -> Option<DatumType>
pub fn common_super_type(&self, rhs: DatumType) -> Option<DatumType>
pub fn is_unsigned(&self) -> bool
pub fn is_signed(&self) -> bool
pub fn is_float(&self) -> bool
pub fn is_complex(&self) -> bool
pub fn is_complex_float(&self) -> bool
pub fn is_complex_signed(&self) -> bool
pub fn is_copy(&self) -> bool
pub fn is_quantized(&self) -> bool
pub fn qparams(&self) -> Option<QParams>
pub fn with_qparams(&self, qparams: QParams) -> DatumType
pub fn zp_scale(&self) -> (i32, f32)
pub fn unquantized(&self) -> DatumType
pub fn integer(signed: bool, size: usize) -> Self
pub fn is_integer(&self) -> bool
pub fn size_of(&self) -> usize
pub fn alignment(&self) -> usize
pub fn min_value(&self) -> Tensor
pub fn max_value(&self) -> Tensor
Trait Implementations
sourceimpl Ord for DatumType
impl Ord for DatumType
sourceimpl PartialOrd<DatumType> for DatumType
impl PartialOrd<DatumType> for DatumType
sourcefn partial_cmp(&self, other: &DatumType) -> Option<Ordering>
fn partial_cmp(&self, other: &DatumType) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Copy for DatumType
impl Eq for DatumType
impl StructuralEq for DatumType
impl StructuralPartialEq for DatumType
Auto Trait Implementations
impl RefUnwindSafe for DatumType
impl Send for DatumType
impl Sync for DatumType
impl Unpin for DatumType
impl UnwindSafe for DatumType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more