Struct burn_core::tensor::quantization::QuantizationParameters
source · pub struct QuantizationParameters<B>where
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 for QuantizationParameters<B>
impl<B> 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> Debug for QuantizationParameters<B>
impl<B> Debug for QuantizationParameters<B>
source§impl<B> From<QuantizationParameters<B>> for QuantizationParametersPrimitive<B>where
B: Backend,
impl<B> From<QuantizationParameters<B>> for QuantizationParametersPrimitive<B>where
B: Backend,
source§fn from(value: QuantizationParameters<B>) -> QuantizationParametersPrimitive<B>
fn from(value: QuantizationParameters<B>) -> QuantizationParametersPrimitive<B>
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)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§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