Trait tract_pulse::internal::tract_core::internal::Op [−]
pub trait Op: 'static + Debug + DynClone + Send + Sync + Downcast + EvalOp + DynHash { fn op_families(&self) -> &'static [&'static str]ⓘ; fn name(&self) -> Cow<'_, str>; fn as_typed(&self) -> Option<&(dyn TypedOp + 'static)>; fn validation(&self) -> Validation { ... } fn same_as(&self, _other: &(dyn Op + 'static)) -> bool { ... } fn info(&self) -> Result<Vec<String, Global>, Error> { ... } }
Expand description
A base operation
Required methods
Vector of short strings defining what families the op belongs too. tract-core defines “core”, “mir”, “lir”.
Provided methods
fn validation(&self) -> Validation
fn validation(&self) -> Validation
The kind of accuracy check that should be performed on operation when testing them.
Implementations
impl dyn Op + 'static
impl dyn Op + 'static
Returns true if the trait object wraps an object of type __T
.
Returns a boxed object from a boxed trait object if the underlying object is of type
__T
. Returns the original boxed trait if it isn’t.
Returns an Rc
-ed object from an Rc
-ed trait object if the underlying object is of
type __T
. Returns the original Rc
-ed trait if it isn’t.
pub fn downcast_ref<__T>(&self) -> Option<&__T> where
__T: Op,
pub fn downcast_ref<__T>(&self) -> Option<&__T> where
__T: Op,
Returns a reference to the object within the trait object if it is of type __T
, or
None
if it isn’t.
pub fn downcast_mut<__T>(&mut self) -> Option<&mut __T> where
__T: Op,
pub fn downcast_mut<__T>(&mut self) -> Option<&mut __T> where
__T: Op,
Returns a mutable reference to the object within the trait object if it is of type
__T
, or None
if it isn’t.
Trait Implementations
Implementations on Foreign Types
pub fn op_families(&self) -> &'static [&'static str]ⓘ
pub fn op_families(&self) -> &'static [&'static str]ⓘ
Implementors
impl Op for FiniteReshape
impl Op for GatherElements
impl Op for MultiBroadcastTo
impl Op for ScatterElements
impl Op for TypedConcat
impl Op for MergeOpUnicast
impl Op for TypedBinOp
impl Op for DeconvUnary
impl Op for ElementWiseOp
impl Op for LirMatMulUnary
impl Op for QMatMulUnary
impl Op for MatMatMulPack
impl Op for MatMulUnary
impl Op for DequantizeLinearF32
impl Op for TypedSource
impl Op for Downsample
impl Op for UnimplementedOp