use crate::infer::*;
use crate::internal::*;
use tract_core::ops::source::{SourceState, TypedSource};
#[derive(Debug, Clone, new, Hash)]
pub struct Source;
impl Op for Source {
fn name(&self) -> Cow<str> {
"Source".into()
}
not_a_typed_op!();
}
impl EvalOp for Source {
fn is_stateless(&self) -> bool {
false
}
fn state(
&self,
_session: &mut SessionState,
node_id: usize,
) -> TractResult<Option<Box<dyn OpState>>> {
Ok(Some(Box::new(SourceState(node_id))))
}
}
impl InferenceRulesOp for Source {
fn rules<'r, 'p: 'r, 's: 'r>(
&'s self,
_s: &mut Solver<'r>,
inputs: &'p [TensorProxy],
outputs: &'p [TensorProxy],
) -> InferenceResult {
check_input_arity(inputs, 0)?;
check_output_arity(outputs, 1)?;
Ok(())
}
as_op!();
fn to_typed(
&self,
_source: &InferenceModel,
node: &InferenceNode,
target: &mut TypedModel,
_mapping: &HashMap<OutletId, OutletId>,
) -> TractResult<TVec<OutletId>> {
if let Ok(fact) = TypedFact::try_from(&node.outputs[0].fact) {
target.wire_node(&*node.name, TypedSource::new(fact), &[])
} else {
bail!("Source node without a determined fact. Help: provide explicit input facts to your model.")
}
}
}