Struct QuantizedBytes
pub struct QuantizedBytes {
pub bytes: Bytes,
pub scheme: QuantizationScheme,
pub num_elements: usize,
}
Expand description
Quantized data bytes representation.
§Notes
- The quantized values are packed into 32-bit unsigned integers. For example, int8
quantized values pack 4 grouped values into a single
u32
. When unpacking these values, we make sure to retrieve only the meaningful values (and ignore the alignment padding). - Quantization parameters are appended to the tensor data. As such, the last bytes always correspond to the scale parameter. If the quantization scheme includes an offset (zero-point) parameter, it is next to last.
Fields§
§bytes: Bytes
The quantized values and quantization parameters represented as bytes.
scheme: QuantizationScheme
The quantization scheme.
num_elements: usize
The number of quantized elements.
Implementations§
§impl QuantizedBytes
impl QuantizedBytes
pub fn new<E>(value: Vec<E>, strategy: QuantizationStrategy) -> QuantizedByteswhere
E: Element,
pub fn new<E>(value: Vec<E>, strategy: QuantizationStrategy) -> QuantizedByteswhere
E: Element,
Creates a new quantized bytes representation.
Auto Trait Implementations§
impl Freeze for QuantizedBytes
impl RefUnwindSafe for QuantizedBytes
impl Send for QuantizedBytes
impl Sync for QuantizedBytes
impl Unpin for QuantizedBytes
impl UnwindSafe for QuantizedBytes
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> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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