Struct tract_core::ops::matmul::mir_quant::MatMulQParams
source · pub struct MatMulQParams {
pub a0: QParamKind,
pub a_scale: QParamKind,
pub b0: QParamKind,
pub b_scale: QParamKind,
pub c0: QParamKind,
pub c_scale: QParamKind,
}Fields§
§a0: QParamKind§a_scale: QParamKind§b0: QParamKind§b_scale: QParamKind§c0: QParamKind§c_scale: QParamKindImplementations§
source§impl MatMulQParams
impl MatMulQParams
pub fn noop_static(dt: DatumType) -> MatMulQParams
pub fn all_dynamic(offset: usize) -> MatMulQParams
pub fn all_from_qtype() -> MatMulQParams
pub fn iter(&self) -> impl Iterator<Item = (&str, &QParamKind)>
pub fn iter_mut(&mut self) -> impl Iterator<Item = (&str, &mut QParamKind)>
pub fn inline_static( &self, model: &TypedModel, node: &TypedNode ) -> TractResult<Option<(Vec<OutletId>, MatMulQParams)>>
pub fn remove_input(&mut self, ix: usize)
pub fn insert_input(&mut self, ix: usize)
pub fn input_count(&self) -> usize
pub fn as_outlet_ids( &self, model: &mut TypedModel, node_name: &str, inputs_wires: &[OutletId], a_dt: DatumType, b_dt: DatumType, c_dt: DatumType ) -> TractResult<TVec<OutletId>>
Trait Implementations§
source§impl Clone for MatMulQParams
impl Clone for MatMulQParams
source§fn clone(&self) -> MatMulQParams
fn clone(&self) -> MatMulQParams
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 Debug for MatMulQParams
impl Debug for MatMulQParams
source§impl Hash for MatMulQParams
impl Hash for MatMulQParams
source§impl PartialEq<MatMulQParams> for MatMulQParams
impl PartialEq<MatMulQParams> for MatMulQParams
source§fn eq(&self, other: &MatMulQParams) -> bool
fn eq(&self, other: &MatMulQParams) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for MatMulQParams
impl StructuralEq for MatMulQParams
impl StructuralPartialEq for MatMulQParams
Auto Trait Implementations§
impl RefUnwindSafe for MatMulQParams
impl Send for MatMulQParams
impl Sync for MatMulQParams
impl Unpin for MatMulQParams
impl UnwindSafe for MatMulQParams
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> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
source§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.