Trait orkhon::prelude::ops::binary::BinMiniOp[][src]

pub trait BinMiniOp: 'static + DynHash + Send + Sync + Debug + Downcast + DynClone {
    pub fn name(&self) -> &'static str;
pub fn operating_datum_type(
        &self,
        a: DatumType,
        b: DatumType
    ) -> Result<DatumType, Error>;
pub fn result_datum_type(
        &self,
        a: DatumType,
        b: DatumType
    ) -> Result<DatumType, Error>;
pub fn eval_in_place(&self, a: &Tensor, b: &mut Tensor) -> Result<(), Error>;
pub fn eval_out_of_place(
        &self,
        c: &mut Tensor,
        a: &Tensor,
        b: &Tensor
    ) -> Result<(), Error>; pub fn validation(&self) -> Validation { ... }
pub fn eval_broadcast_and_typecast(
        &self,
        inputs: SmallVec<[Arc<Tensor>; 4]>
    ) -> Result<SmallVec<[Arc<Tensor>; 4]>, Error> { ... }
pub fn eval_broadcast(
        &self,
        inputs: SmallVec<[Arc<Tensor>; 4]>
    ) -> Result<SmallVec<[Arc<Tensor>; 4]>, Error> { ... }
pub fn unary_with_b_const(&self, b: &Arc<Tensor>) -> Option<UnaryOp> { ... }
pub fn declutter_bin(
        &self,
        model: &Graph<TypedFact, Box<dyn TypedOp + 'static, Global>>,
        node: &Node<TypedFact, Box<dyn TypedOp + 'static, Global>>
    ) -> Result<Option<ModelPatch<TypedFact, Box<dyn TypedOp + 'static, Global>>>, Error> { ... }
pub fn declutter_unary(
        &self,
        model: &Graph<TypedFact, Box<dyn TypedOp + 'static, Global>>,
        node: &Node<TypedFact, Box<dyn TypedOp + 'static, Global>>,
        a: &Arc<Tensor>
    ) -> Result<Option<ModelPatch<TypedFact, Box<dyn TypedOp + 'static, Global>>>, Error> { ... }
pub fn cost_per_element(
        &self,
        dt: DatumType
    ) -> SmallVec<[(Cost, usize); 4]> { ... } }

Required methods

pub fn name(&self) -> &'static str[src]

pub fn operating_datum_type(
    &self,
    a: DatumType,
    b: DatumType
) -> Result<DatumType, Error>
[src]

pub fn result_datum_type(
    &self,
    a: DatumType,
    b: DatumType
) -> Result<DatumType, Error>
[src]

pub fn eval_in_place(&self, a: &Tensor, b: &mut Tensor) -> Result<(), Error>[src]

pub fn eval_out_of_place(
    &self,
    c: &mut Tensor,
    a: &Tensor,
    b: &Tensor
) -> Result<(), Error>
[src]

Loading content...

Provided methods

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

pub fn eval_broadcast_and_typecast(
    &self,
    inputs: SmallVec<[Arc<Tensor>; 4]>
) -> Result<SmallVec<[Arc<Tensor>; 4]>, Error>
[src]

pub fn eval_broadcast(
    &self,
    inputs: SmallVec<[Arc<Tensor>; 4]>
) -> Result<SmallVec<[Arc<Tensor>; 4]>, Error>
[src]

pub fn unary_with_b_const(&self, b: &Arc<Tensor>) -> Option<UnaryOp>[src]

pub fn declutter_bin(
    &self,
    model: &Graph<TypedFact, Box<dyn TypedOp + 'static, Global>>,
    node: &Node<TypedFact, Box<dyn TypedOp + 'static, Global>>
) -> Result<Option<ModelPatch<TypedFact, Box<dyn TypedOp + 'static, Global>>>, Error>
[src]

pub fn declutter_unary(
    &self,
    model: &Graph<TypedFact, Box<dyn TypedOp + 'static, Global>>,
    node: &Node<TypedFact, Box<dyn TypedOp + 'static, Global>>,
    a: &Arc<Tensor>
) -> Result<Option<ModelPatch<TypedFact, Box<dyn TypedOp + 'static, Global>>>, Error>
[src]

pub fn cost_per_element(&self, dt: DatumType) -> SmallVec<[(Cost, usize); 4]>[src]

Loading content...

Implementations

impl dyn BinMiniOp + 'static[src]

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

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

pub fn downcast<__T>(
    self: Box<dyn BinMiniOp + 'static, Global>
) -> Result<Box<__T, Global>, Box<dyn BinMiniOp + 'static, Global>> where
    __T: BinMiniOp
[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>(
    self: Rc<dyn BinMiniOp + 'static>
) -> Result<Rc<__T>, Rc<dyn BinMiniOp + 'static>> where
    __T: BinMiniOp
[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>(&self) -> Option<&__T> where
    __T: BinMiniOp
[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>(&mut self) -> Option<&mut __T> where
    __T: BinMiniOp
[src]

Returns a mutable reference to the object within the trait object if it is of type __T, or None if it isn't.

Implementors

impl BinMiniOp for And[src]

impl BinMiniOp for Equals[src]

impl BinMiniOp for Greater[src]

impl BinMiniOp for GreaterEqual[src]

impl BinMiniOp for Lesser[src]

impl BinMiniOp for LesserEqual[src]

impl BinMiniOp for NotEquals[src]

impl BinMiniOp for Or[src]

impl BinMiniOp for Xor[src]

impl BinMiniOp for Add[src]

impl BinMiniOp for Div[src]

impl BinMiniOp for FlippedPow[src]

impl BinMiniOp for FlippedShiftLeft[src]

impl BinMiniOp for FlippedShiftRight[src]

impl BinMiniOp for Max[src]

impl BinMiniOp for Min[src]

impl BinMiniOp for Mul[src]

impl BinMiniOp for Pow[src]

impl BinMiniOp for Rem[src]

impl BinMiniOp for ShiftLeft[src]

impl BinMiniOp for ShiftRight[src]

impl BinMiniOp for Sub[src]

Loading content...