Struct burn_tensor::quantization::QuantizationParameters
source · 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<1>: Freeze,
<B as Backend>::QuantizedTensorPrimitive<1>: Freeze,
<B as Backend>::IntTensorPrimitive<1>: Freeze,
impl<B> RefUnwindSafe for QuantizationParameters<B>where
<B as Backend>::FloatTensorPrimitive<1>: RefUnwindSafe,
<B as Backend>::QuantizedTensorPrimitive<1>: RefUnwindSafe,
<B as Backend>::IntTensorPrimitive<1>: RefUnwindSafe,
impl<B> Send for QuantizationParameters<B>
impl<B> Sync for QuantizationParameters<B>where
<B as Backend>::FloatTensorPrimitive<1>: Sync,
<B as Backend>::QuantizedTensorPrimitive<1>: Sync,
<B as Backend>::IntTensorPrimitive<1>: Sync,
impl<B> Unpin for QuantizationParameters<B>where
<B as Backend>::FloatTensorPrimitive<1>: Unpin,
<B as Backend>::QuantizedTensorPrimitive<1>: Unpin,
<B as Backend>::IntTensorPrimitive<1>: Unpin,
impl<B> UnwindSafe for QuantizationParameters<B>where
<B as Backend>::FloatTensorPrimitive<1>: UnwindSafe,
<B as Backend>::QuantizedTensorPrimitive<1>: UnwindSafe,
<B as Backend>::IntTensorPrimitive<1>: 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
)