pub enum QuantParam {
    F32,
    F16,
    BF16,
    UE8M0,
    UE4M3,
}Expand description
Quantization floating-point precision.
This is used to represent the floating-point precision of quantization parameters like the scale(s) or the accumulation precision used during operations like matrix multiplication.
Variants§
F32
Full precision.
F16
Half precision.
BF16
bfloat16 precision.
UE8M0
unsigned floating point, e8m0 format.
UE4M3
unsigned floating point, e4m3 format.
Trait Implementations§
Source§impl Clone for QuantParam
 
impl Clone for QuantParam
Source§fn clone(&self) -> QuantParam
 
fn clone(&self) -> QuantParam
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for QuantParam
 
impl Debug for QuantParam
Source§impl<'de> Deserialize<'de> for QuantParam
 
impl<'de> Deserialize<'de> for QuantParam
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for QuantParam
 
impl Hash for QuantParam
Source§impl Ord for QuantParam
 
impl Ord for QuantParam
Source§fn cmp(&self, other: &QuantParam) -> Ordering
 
fn cmp(&self, other: &QuantParam) -> Ordering
1.21.0 · Source§fn 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
Source§impl PartialEq for QuantParam
 
impl PartialEq for QuantParam
Source§impl PartialOrd for QuantParam
 
impl PartialOrd for QuantParam
Source§impl Serialize for QuantParam
 
impl Serialize for QuantParam
impl Copy for QuantParam
impl Eq for QuantParam
impl StructuralPartialEq for QuantParam
Auto Trait Implementations§
impl Freeze for QuantParam
impl RefUnwindSafe for QuantParam
impl Send for QuantParam
impl Sync for QuantParam
impl Unpin for QuantParam
impl UnwindSafe for QuantParam
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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<Q, K> Comparable<K> for Q
 
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.