Trait tract_hir::prelude::SpecialOps

source ·
pub trait SpecialOps<F, O> {
    // Required methods
    fn create_dummy(&self) -> O;
    fn create_source(&self, fact: F) -> O;
    fn is_source(op: &O) -> bool;
    fn wire_node(
        &mut self,
        name: impl Into<String>,
        op: impl Into<O>,
        inputs: &[OutletId]
    ) -> Result<SmallVec<[OutletId; 4]>, Error>;
    fn add_const(
        &mut self,
        name: impl Into<String>,
        v: impl IntoArcTensor
    ) -> Result<OutletId, Error>;
}

Required Methods§

source

fn create_dummy(&self) -> O

source

fn create_source(&self, fact: F) -> O

source

fn is_source(op: &O) -> bool

source

fn wire_node( &mut self, name: impl Into<String>, op: impl Into<O>, inputs: &[OutletId] ) -> Result<SmallVec<[OutletId; 4]>, Error>

source

fn add_const( &mut self, name: impl Into<String>, v: impl IntoArcTensor ) -> Result<OutletId, Error>

Object Safety§

This trait is not object safe.

Implementors§