Enum QuantParam
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§
§impl Clone for QuantParam
impl Clone for QuantParam
§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 more§impl Debug for QuantParam
impl Debug for QuantParam
§impl<'de> Deserialize<'de> for QuantParam
impl<'de> Deserialize<'de> for QuantParam
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<QuantParam, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<QuantParam, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Hash for QuantParam
impl Hash for QuantParam
§impl Ord for QuantParam
impl Ord for QuantParam
§impl PartialEq for QuantParam
impl PartialEq for QuantParam
§impl PartialOrd for QuantParam
impl PartialOrd for QuantParam
§impl Serialize for QuantParam
impl Serialize for QuantParam
§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more