Home
last modified time | relevance | path

Searched refs:TaggedNode (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/core/common_runtime/
Dsimple_propagator_state.h55 struct TaggedNode { struct
58 explicit TaggedNode(const NodeItem* node_item) : node_item(node_item) {} in TaggedNode() argument
76 void push_back(const TaggedNode& node) { ready_.push_back(node); } in push_back()
77 TaggedNode front() const { in front()
101 gtl::InlinedVector<TaggedNode, 16> ready_;
106 typedef gtl::InlinedVector<TaggedNode, 8> TaggedNodeSeq;
115 void PropagateOutputs(const TaggedNode& tagged_node, EntryVector* outputs,
120 Entry* GetInputTensors(const TaggedNode& tagged_node) { in GetInputTensors()
132 FrameAndIter GetFrameAndIter(const TaggedNode& tagged_node) const { in GetFrameAndIter()
140 void MaybeMarkStarted(const TaggedNode& tagged_node) { in MaybeMarkStarted()
[all …]
Dpropagator_state.h62 struct TaggedNode { struct
68 TaggedNode() = default; argument
69 TaggedNode(const NodeItem* node_item, FrameState* in_frame, in TaggedNode() argument
89 void push_back(const TaggedNode& node) { ready_.push_back(node); } in push_back()
90 TaggedNode front() const { in front()
114 gtl::InlinedVector<TaggedNode, 16> ready_;
119 typedef gtl::InlinedVector<TaggedNode, 8> TaggedNodeSeq;
433 void PropagateOutputs(const TaggedNode& tagged_node, EntryVector* outputs,
442 Entry* GetInputTensors(const TaggedNode& tagged_node) const in GetInputTensors()
448 FrameAndIter GetFrameAndIter(const TaggedNode& tagged_node) const { in GetFrameAndIter()
[all …]
Dsimple_propagator_state.cc52 ready->push_back(TaggedNode{item}); in ActivateRoots()
56 void SimplePropagatorState::PropagateOutputs(const TaggedNode& tagged_node, in PropagateOutputs()
Dexecutor.cc282 typedef typename PropagatorStateType::TaggedNode TaggedNode; typedef in tensorflow::__anonce8950920111::ExecutorState
290 void Process(TaggedNode node, int64 scheduled_nsec);
295 const TaggedNode& tagged_node, Entry* first_input,
492 AsyncState(const OpKernelContext::Params& p, const TaggedNode& _tagged_node, in AsyncState()
512 TaggedNode tagged_node;
594 const TaggedNode& tagged_node, Entry* first_input, in ProcessAsync()
664 void ExecutorState<PropagatorStateType>::Process(TaggedNode tagged_node, in Process()
1167 const TaggedNode* curr_expensive_node = nullptr; in ScheduleReady()
Dpropagator_state.cc65 void PropagatorState::PropagateOutputs(const TaggedNode& tagged_node, in PropagateOutputs()
404 TaggedNode& t = ready->emplace_back(); \ in ActivateNodesFastPathInternal()