[−][src]Struct tract_hir::ops::scan::InferenceScan
Fields
body: InferenceModelinput_mapping: Vec<InputMapping<()>>output_mapping: Vec<OutputMapping<(), TDim>>seq_length_input_slot: Option<usize>clean_scan_counts: booliter_count_fact: GenericFactoid<TDim>backward: boolImplementations
impl InferenceScan[src]
pub fn new(
body: InferenceModel,
input_mapping: Vec<InputMapping<()>>,
output_mapping: Vec<OutputMapping<(), TDim>>,
seq_length_input_slot: Option<usize>,
clean_scan_counts: bool,
iter_count_fact: GenericFactoid<TDim>,
backward: bool
) -> Self[src]
body: InferenceModel,
input_mapping: Vec<InputMapping<()>>,
output_mapping: Vec<OutputMapping<(), TDim>>,
seq_length_input_slot: Option<usize>,
clean_scan_counts: bool,
iter_count_fact: GenericFactoid<TDim>,
backward: bool
) -> Self
Constructs a new InferenceScan.
Trait Implementations
impl Clone for InferenceScan[src]
fn clone(&self) -> InferenceScan[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for InferenceScan[src]
impl Default for InferenceScan[src]
fn default() -> InferenceScan[src]
impl DynHash for InferenceScan
impl Hash for InferenceScan[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl InferenceOp for InferenceScan[src]
fn infer_facts(
&mut self,
inputs: TVec<&InferenceFact>,
outputs: TVec<&InferenceFact>,
_observed: TVec<&InferenceFact>
) -> TractResult<(TVec<InferenceFact>, TVec<InferenceFact>, TVec<InferenceFact>)>[src]
&mut self,
inputs: TVec<&InferenceFact>,
outputs: TVec<&InferenceFact>,
_observed: TVec<&InferenceFact>
) -> TractResult<(TVec<InferenceFact>, TVec<InferenceFact>, TVec<InferenceFact>)>
fn to_typed(
&self,
_source: &InferenceModel,
node: &InferenceNode,
target: &mut TypedModel,
mapping: &HashMap<OutletId, OutletId>
) -> TractResult<TVec<OutletId>>[src]
&self,
_source: &InferenceModel,
node: &InferenceNode,
target: &mut TypedModel,
mapping: &HashMap<OutletId, OutletId>
) -> TractResult<TVec<OutletId>>
fn nboutputs(&self) -> TractResult<usize>[src]
fn as_op(&self) -> &dyn Op[src]
fn as_op_mut(&mut self) -> &mut dyn Op[src]
fn infer(
&mut self,
inputs: TVec<&InferenceFact>,
outputs: TVec<&InferenceFact>,
observed: TVec<&InferenceFact>
) -> TractResult<(TVec<InferenceFact>, TVec<InferenceFact>, TVec<InferenceFact>)>[src]
&mut self,
inputs: TVec<&InferenceFact>,
outputs: TVec<&InferenceFact>,
observed: TVec<&InferenceFact>
) -> TractResult<(TVec<InferenceFact>, TVec<InferenceFact>, TVec<InferenceFact>)>
fn observe_outlets(
&self,
_model: &InferenceModel,
_node: &InferenceNode
) -> TractResult<Vec<OutletId>>[src]
&self,
_model: &InferenceModel,
_node: &InferenceNode
) -> TractResult<Vec<OutletId>>
fn incorporate(
&self,
model: &InferenceModel,
node: &InferenceNode
) -> TractResult<Option<InferenceModelPatch>>[src]
&self,
model: &InferenceModel,
node: &InferenceNode
) -> TractResult<Option<InferenceModelPatch>>
impl Op for InferenceScan[src]
fn name(&self) -> Cow<str>[src]
fn info(&self) -> TractResult<Vec<String>>[src]
fn nested_models(&self) -> Vec<(Cow<str>, &dyn Model, Vec<String>, Vec<String>)>[src]
fn op_families(&self) -> &'static [&'static str][src]
fn as_typed(&self) -> Option<&dyn TypedOp>[src]
fn as_pulsed(&self) -> Option<&dyn PulsedOp>[src]
fn validation(&self) -> Validation[src]
fn same_as(&self, _other: &(dyn Op + 'static)) -> bool[src]
fn is_canonic(&self) -> bool[src]
impl StatefullOp for InferenceScan[src]
fn state(
&self,
session: &mut SessionState,
node_id: usize
) -> TractResult<Option<Box<dyn OpState>>>[src]
&self,
session: &mut SessionState,
node_id: usize
) -> TractResult<Option<Box<dyn OpState>>>
fn as_stateless(&self) -> Option<&(dyn StatelessOp + 'static)>[src]
Auto Trait Implementations
impl !RefUnwindSafe for InferenceScan
impl Send for InferenceScan
impl Sync for InferenceScan
impl Unpin for InferenceScan
impl !UnwindSafe for InferenceScan
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Downcast for T where
T: Any,
T: Any,
fn into_any(self: Box<T>) -> Box<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn as_any(&self) -> &(dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
impl<T> DowncastSync for T where
T: Send + Sync + Any,
T: Send + Sync + Any,
impl<T> DynClone for T where
T: Clone, [src]
T: Clone,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<O> StatefullOp for O where
O: StatelessOp + Clone, [src]
O: StatelessOp + Clone,
fn state(
&self,
_session: &mut SessionState,
_node_id: usize
) -> Result<Option<Box<dyn OpState + 'static>>, TractError>[src]
&self,
_session: &mut SessionState,
_node_id: usize
) -> Result<Option<Box<dyn OpState + 'static>>, TractError>
fn as_stateless(&self) -> Option<&(dyn StatelessOp + 'static)>[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,