Struct tract_pulse::internal::tract_core::ops::matmul::MatMulQParams
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: QParamKind
Implementations§
§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: &Graph<TypedFact, Box<dyn TypedOp + 'static, Global>>,
node: &Node<TypedFact, Box<dyn TypedOp + 'static, Global>>
) -> Result<Option<(Vec<OutletId, Global>, MatMulQParams)>, Error>
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 Graph<TypedFact, Box<dyn TypedOp + 'static, Global>>,
node_name: &str,
inputs_wires: &[OutletId],
a_dt: DatumType,
b_dt: DatumType,
c_dt: DatumType
) -> Result<SmallVec<[OutletId; 4]>, Error>
Trait Implementations§
§impl Clone for MatMulQParams
impl Clone for MatMulQParams
§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 more§impl Debug for MatMulQParams
impl Debug for MatMulQParams
§impl Hash for MatMulQParams
impl Hash for MatMulQParams
§impl PartialEq<MatMulQParams> for MatMulQParams
impl PartialEq<MatMulQParams> for MatMulQParams
§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> 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.