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)
Implementations§
source§impl 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_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§
source§impl Ord for DatumType
impl Ord for DatumType
source§impl PartialEq<DatumType> for DatumType
impl PartialEq<DatumType> for DatumType
source§impl PartialOrd<DatumType> for DatumType
impl PartialOrd<DatumType> for DatumType
1.0.0 · source§fn 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 moreimpl 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§
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