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)
ComplexI16
ComplexI32
ComplexI64
ComplexF16
ComplexF32
ComplexF64
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_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) -> 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
1.21.0 · sourcefn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
Restrict a value to a certain interval. Read more
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 · 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 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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
impl<T> ClampCast for Twhere
T: 'static + PartialOrd<T> + Copy,
impl<T> ClampCast for Twhere
T: 'static + PartialOrd<T> + Copy,
fn clamp_cast<O>(self) -> Owhere
Self: AsPrimitive<O> + Datum,
O: AsPrimitive<Self> + Bounded + Datum,
sourceimpl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
sourcefn 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
. Read moresourcefn 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
. Read moresourcefn 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. Read moresourcefn 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. Read more