Trait tract_pulse::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
fn op_families(&self) -> &'static [&'static str]ⓘ
fn op_families(&self) -> &'static [&'static str]ⓘ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) -> ValidationThe kind of accuracy check that should be performed on operation when testing them.
Implementations
impl dyn Op + 'static
impl dyn Op + 'staticpub fn is<__T>(&self) -> bool where
__T: Op,
pub fn is<__T>(&self) -> bool where
__T: Op, Returns true if the trait object wraps an object of type __T.
pub fn downcast<__T>(
self: Box<dyn Op + 'static, Global>
) -> Result<Box<__T, Global>, Box<dyn Op + 'static, Global>> where
__T: Op,
pub fn downcast<__T>(
self: Box<dyn Op + 'static, Global>
) -> Result<Box<__T, Global>, Box<dyn Op + 'static, Global>> where
__T: Op, 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.
pub fn downcast_rc<__T>(
self: Rc<dyn Op + 'static>
) -> Result<Rc<__T>, Rc<dyn Op + 'static>> where
__T: Op,
pub fn downcast_rc<__T>(
self: Rc<dyn Op + 'static>
) -> Result<Rc<__T>, Rc<dyn Op + 'static>> where
__T: Op, 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
impl Op for PulsePad[src]
impl Op for PulsePad[src]impl Op for Delay[src]
impl Op for Delay[src]Implementors
impl Op for PulsedSource[src]
impl Op for PulsedSource[src]impl Op for ConstantOfShape
impl Op for ConstantOfShapeimpl Op for FiniteReshape
impl Op for FiniteReshapeimpl Op for GatherElements
impl Op for GatherElementsimpl Op for MultiBroadcastTo
impl Op for MultiBroadcastToimpl Op for ScatterElements
impl Op for ScatterElementsimpl Op for Slice
impl Op for Sliceimpl Op for TypedConcat
impl Op for TypedConcatimpl Op for MergeOpUnicast
impl Op for MergeOpUnicastimpl Op for TypedBinOp
impl Op for TypedBinOpimpl Op for UnaryOp
impl Op for UnaryOppub fn name(&self) -> Cow<'_, str>
pub fn info(&self) -> Result<Vec<String, Global>, Error>
pub fn validation(&self) -> Validation
pub fn op_families(&self) -> &'static [&'static str]ⓘ
pub fn as_typed(&self) -> Option<&(dyn TypedOp + 'static)>
impl Op for Im2Col
impl Op for Im2Colimpl Op for ConvUnary
impl Op for ConvUnarypub fn name(&self) -> Cow<'_, str>
pub fn info(&self) -> Result<Vec<String, Global>, Error>
pub fn validation(&self) -> Validation
pub fn op_families(&self) -> &'static [&'static str]ⓘ
pub fn as_typed(&self) -> Option<&(dyn TypedOp + 'static)>
impl Op for DeconvUnary
impl Op for DeconvUnaryimpl Op for SumPool
impl Op for SumPoolpub fn name(&self) -> Cow<'_, str>
pub fn info(&self) -> Result<Vec<String, Global>, Error>
pub fn validation(&self) -> Validation
pub fn op_families(&self) -> &'static [&'static str]ⓘ
pub fn as_typed(&self) -> Option<&(dyn TypedOp + 'static)>
impl Op for ElementWiseOp
impl Op for ElementWiseOppub fn name(&self) -> Cow<'_, str>
pub fn info(&self) -> Result<Vec<String, Global>, Error>
pub fn validation(&self) -> Validation
pub fn op_families(&self) -> &'static [&'static str]ⓘ
pub fn as_typed(&self) -> Option<&(dyn TypedOp + 'static)>
impl Op for LirMatMulUnary
impl Op for LirMatMulUnaryimpl Op for MatMatMulPack
impl Op for MatMatMulPackimpl Op for MatMulUnary
impl Op for MatMulUnaryimpl Op for DequantizeLinearF32
impl Op for DequantizeLinearF32pub fn name(&self) -> Cow<'_, str>
pub fn info(&self) -> Result<Vec<String, Global>, Error>
pub fn validation(&self) -> Validation
pub fn op_families(&self) -> &'static [&'static str]ⓘ
pub fn as_typed(&self) -> Option<&(dyn TypedOp + 'static)>
impl Op for Scan
impl Op for Scanpub fn name(&self) -> Cow<'_, str>
pub fn info(&self) -> Result<Vec<String, Global>, Error>
pub fn validation(&self) -> Validation
pub fn op_families(&self) -> &'static [&'static str]ⓘ
pub fn as_typed(&self) -> Option<&(dyn TypedOp + 'static)>
impl Op for TypedSource
impl Op for TypedSource