Enum tract_pulse::internal::DatumType
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§
§impl DatumType
impl DatumType
pub fn super_types(&self) -> SmallVec<[DatumType; 4]>
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) -> DatumType
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§
§impl DatumTypeExt for DatumType
impl DatumTypeExt for DatumType
§impl Ord for DatumType
impl Ord for DatumType
§impl PartialOrd<DatumType> for DatumType
impl PartialOrd<DatumType> for DatumType
§fn partial_cmp(&self, other: &DatumType) -> Option<Ordering>
fn partial_cmp(&self, other: &DatumType) -> Option<Ordering>
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
§impl<T> ClampCast for Twhere
T: PartialOrd<T> + Copy + 'static,
impl<T> ClampCast for Twhere T: PartialOrd<T> + Copy + 'static,
fn clamp_cast<O>(self) -> Owhere Self: AsPrimitive<O> + Datum, O: AsPrimitive<Self> + Bounded + Datum,
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
source§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.