| 828 | |
| 829 | template <class PropagatorStateType> |
| 830 | void ExecutorState<PropagatorStateType>::ProcessConstTensor( |
| 831 | const NodeItem& item, EntryVector* outputs, NodeExecStatsInterface* stats) { |
| 832 | nodestats::SetOpStart(stats); |
| 833 | nodestats::SetOpEnd(stats); |
| 834 | Entry& output = (*outputs)[0]; |
| 835 | output.state = Entry::State::HAS_CONST_TENSOR; |
| 836 | output.const_tensor = item.const_tensor; |
| 837 | output.alloc_attr = item.output_attrs()[0]; |
| 838 | } |
| 839 | |
| 840 | template <class PropagatorStateType> |
| 841 | void ExecutorState<PropagatorStateType>::Process( |
nothing calls this directly
no test coverage detected