Trait tract_core::ops::Op[][src]

pub trait Op: Debug + DynClone + Send + Sync + 'static + Downcast + EvalOp + DynHash {
    fn op_families(&self) -> &'static [&'static str]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
;
fn name(&self) -> Cow<'_, str>;
fn as_typed(&self) -> Option<&dyn TypedOp>; fn validation(&self) -> Validation { ... }
fn same_as(&self, _other: &dyn Op) -> bool { ... }
fn info(&self) -> TractResult<Vec<String>> { ... } }

A base operation

Required methods

fn op_families(&self) -> &'static [&'static str]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

Vector of short strings defining what families the op belongs too. tract-core defines “core”, “mir”, “lir”.

fn name(&self) -> Cow<'_, str>[src]

fn as_typed(&self) -> Option<&dyn TypedOp>[src]

Loading content...

Provided methods

fn validation(&self) -> Validation[src]

The kind of accuracy check that should be performed on operation when testing them.

fn same_as(&self, _other: &dyn Op) -> bool[src]

Compare two ops.

fn info(&self) -> TractResult<Vec<String>>[src]

Short (one-line) strings giving hints on internal implementation or important configuration details to be displayed in dumps.

Loading content...

Implementations

impl dyn Op[src]

pub fn is<__T: Op>(&self) -> bool[src]

Returns true if the trait object wraps an object of type __T.

pub fn downcast<__T: Op>(self: Box<Self>) -> Result<Box<__T>, Box<Self>>[src]

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: Op>(self: Rc<Self>) -> Result<Rc<__T>, Rc<Self>>[src]

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: Op>(&self) -> Option<&__T>[src]

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: Op>(&mut self) -> Option<&mut __T>[src]

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

impl AsMut<dyn Op + 'static> for dyn TypedOp[src]

impl AsMut<dyn Op + 'static> for Box<dyn TypedOp>[src]

impl AsRef<dyn Op + 'static> for dyn TypedOp[src]

impl AsRef<dyn Op + 'static> for Box<dyn TypedOp>[src]

Implementors

impl Op for AxisOp[src]

impl Op for ConstantOfShape[src]

impl Op for FiniteReshape[src]

impl Op for Gather[src]

impl Op for MultiBroadcastTo[src]

impl Op for OneHot[src]

impl Op for Pad[src]

impl Op for Slice[src]

impl Op for Tile[src]

impl Op for TypedConcat[src]

impl Op for MergeOpUnicast[src]

impl Op for TypedBinOp[src]

impl Op for UnaryOp[src]

impl Op for ConvUnary[src]

impl Op for Im2Col[src]

impl Op for MaxPool[src]

impl Op for SumPool[src]

impl Op for Downsample[src]

impl Op for Dummy[src]

impl Op for ElementWiseOp[src]

impl Op for Identity[src]

impl Op for Const[src]

impl Op for Iff[src]

impl Op for LirMatMulUnary[src]

impl Op for MatMul[src]

impl Op for QMatMul[src]

impl Op for MatMulUnary[src]

impl Op for MatMatMulPack[src]

impl Op for Reduce[src]

impl Op for DequantizeLinearF32[src]

impl Op for LirScan[src]

impl Op for Scan[src]

impl Op for TypedSource[src]

impl Op for UnimplementedOp[src]

Loading content...