pub struct QuantizationParameters<B: Backend> {
pub scale: Tensor<B, 1>,
pub offset: Option<Tensor<B, 1, Int>>,
}Expand description
The quantization parameters.
Fields§
§scale: Tensor<B, 1>The scaling factor.
offset: Option<Tensor<B, 1, Int>>The zero-point offset.
Trait Implementations§
Source§impl<B: Clone + Backend> Clone for QuantizationParameters<B>
impl<B: Clone + Backend> Clone for QuantizationParameters<B>
Source§fn clone(&self) -> QuantizationParameters<B>
fn clone(&self) -> QuantizationParameters<B>
Returns a copy 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<B: Backend> From<QuantizationParameters<B>> for QuantizationParametersPrimitive<B>
impl<B: Backend> From<QuantizationParameters<B>> for QuantizationParametersPrimitive<B>
Source§fn from(value: QuantizationParameters<B>) -> Self
fn from(value: QuantizationParameters<B>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<B> Freeze for QuantizationParameters<B>where
<B as Backend>::FloatTensorPrimitive: Freeze,
<B as Backend>::QuantizedTensorPrimitive: Freeze,
<B as Backend>::IntTensorPrimitive: Freeze,
impl<B> RefUnwindSafe for QuantizationParameters<B>where
<B as Backend>::FloatTensorPrimitive: RefUnwindSafe,
<B as Backend>::QuantizedTensorPrimitive: RefUnwindSafe,
<B as Backend>::IntTensorPrimitive: RefUnwindSafe,
impl<B> Send for QuantizationParameters<B>
impl<B> Sync for QuantizationParameters<B>
impl<B> Unpin for QuantizationParameters<B>where
<B as Backend>::FloatTensorPrimitive: Unpin,
<B as Backend>::QuantizedTensorPrimitive: Unpin,
<B as Backend>::IntTensorPrimitive: Unpin,
impl<B> UnwindSafe for QuantizationParameters<B>where
<B as Backend>::FloatTensorPrimitive: UnwindSafe,
<B as Backend>::QuantizedTensorPrimitive: UnwindSafe,
<B as Backend>::IntTensorPrimitive: UnwindSafe,
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)