pub struct DequantizedWeightMatmulConfig {
pub rows: usize,
pub columns: usize,
pub reduction: usize,
pub activation_row_stride: usize,
pub weight_row_stride: usize,
pub output_row_stride: usize,
}Fields§
§rows: usize§columns: usize§reduction: usize§activation_row_stride: usize§weight_row_stride: usize§output_row_stride: usizeTrait Implementations§
Source§impl Clone for DequantizedWeightMatmulConfig
impl Clone for DequantizedWeightMatmulConfig
Source§fn clone(&self) -> DequantizedWeightMatmulConfig
fn clone(&self) -> DequantizedWeightMatmulConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DequantizedWeightMatmulConfig
Source§impl PartialEq for DequantizedWeightMatmulConfig
impl PartialEq for DequantizedWeightMatmulConfig
Source§fn eq(&self, other: &DequantizedWeightMatmulConfig) -> bool
fn eq(&self, other: &DequantizedWeightMatmulConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DequantizedWeightMatmulConfig
Auto Trait Implementations§
impl Freeze for DequantizedWeightMatmulConfig
impl RefUnwindSafe for DequantizedWeightMatmulConfig
impl Send for DequantizedWeightMatmulConfig
impl Sync for DequantizedWeightMatmulConfig
impl Unpin for DequantizedWeightMatmulConfig
impl UnsafeUnpin for DequantizedWeightMatmulConfig
impl UnwindSafe for DequantizedWeightMatmulConfig
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