Home
last modified time | relevance | path

Searched refs:IsNextIteration (Results 1 – 22 of 22) sorted by relevance

/external/tensorflow/tensorflow/core/common_runtime/
Dlower_while_op_test.cc82 ASSERT_FALSE(op->IsNextIteration()); in TEST()
112 if (op->IsNextIteration()) { in TEST()
183 ASSERT_FALSE(op->IsNextIteration()); in TEST()
207 if (op->IsNextIteration()) { in TEST()
Dlower_if_while_test.cc273 ASSERT_FALSE(op->IsNextIteration()); in TEST()
Dexecutor.cc655 (IsEnter(n) || IsExit(n) || IsNextIteration(n)); in Initialize()
2160 DCHECK(IsNextIteration(node)); in PropagateOutputs()
/external/tensorflow/tensorflow/compiler/jit/
Dresource_operation_safety_analysis.cc275 return !edge.src()->IsNextIteration(); in ComputeIncompatibleResourceOperationPairs()
293 if (n->IsMerge() && e->src()->IsNextIteration()) { in ComputeIncompatibleResourceOperationPairs()
Dshape_inference_helpers.cc34 if (e->src()->IsNextIteration()) { in Remove()
Ddeadness_analysis.cc825 if (backedge->src()->IsNextIteration()) { in CreateMultipleNextIterationInputsError()
839 if (e->src()->IsNextIteration()) { in FindUniqueBackedge()
925 if (!e->IsControlEdge() && e->src()->IsNextIteration()) { in HandleMerge()
1031 } else if (n->IsNextIteration()) { in HandleNode()
1043 return !edge.src()->IsNextIteration(); in Populate()
1088 if (n->IsNextIteration()) { in PopulateWithReversePostOrder()
Dpartially_decluster_pass.cc34 bool NotBackedge(const Edge& edge) { return !edge.src()->IsNextIteration(); } in NotBackedge()
Dxla_cluster_util.cc187 if (edge->src()->IsNextIteration()) { in CreateCycleDetectionGraph()
Ddeadness_analysis_test.cc581 return !edge.src()->IsNextIteration(); in TEST()
/external/tensorflow/tensorflow/core/graph/
Dgraph.h151 bool IsNextIteration() const { return class_ == NC_NEXT_ITERATION; } in IsNextIteration() function
167 IsNextIteration()); in IsControlFlow()
740 inline bool IsNextIteration(const Node* n) { return n->IsNextIteration(); } in IsNextIteration() function
Dvalidate.cc77 if (!e->IsControlEdge() && e->src()->IsNextIteration()) { in ValidateGraphHasNoCycle()
Dgraph_partition.cc52 inline bool IsNextIteration(const NodeDef& node_def) { in IsNextIteration() function
366 IsNextIteration(node)) { in OptimizeControlFlowColocation()
820 if (IsNextIteration(*ndef)) { in TopologicalSortNodesWithTimePriority()
Dgraph_constructor.cc53 inline bool IsNextIteration(const NodeDef& node_def) { in IsNextIteration() function
328 bool is_next_iteration = IsNextIteration(*node_defs_[processed]); in UpdatePendingCountAndReady()
487 if (IsNextIteration(node_def)) { in GetNextIterationNodes()
/external/tensorflow/tensorflow/core/grappler/utils/
Dtopological_sort.cc73 if (IsNextIteration(graph.node(input))) { in ComputeTopologicalOrder()
Dscc.cc215 if (IsNextIteration(*node)) { in IdentifyLoops()
/external/tensorflow/tensorflow/compiler/tf2xla/
Dconst_analysis.cc124 [](const Edge& edge) { return !edge.src()->IsNextIteration(); }); in BackwardsConstAnalysis()
Dfunctionalize_while.cc408 if (!IsNextIteration(arg.next_iteration)) { in FunctionalizeLoop()
/external/tensorflow/tensorflow/core/grappler/
Dop_types.cc335 bool IsNextIteration(const NodeDef& node) { in IsNextIteration() function
677 return IsEnter(node) || IsExit(node) || IsNextIteration(node); in ModifiesFrameInfo()
Dop_types.h108 bool IsNextIteration(const NodeDef& node);
/external/tensorflow/tensorflow/core/debug/
Ddebug_graph_utils.cc206 if (!src_node->IsEnter() && !src_node->IsNextIteration()) { in InsertNodes()
/external/tensorflow/tensorflow/cc/framework/
Dgradients.cc489 DCHECK(!n->IsEnter() && !n->IsNextIteration()) << n->DebugString(); in AddGradients()
/external/tensorflow/tensorflow/core/grappler/costs/
Dgraph_properties.cc2089 } else if (IsNextIteration(node)) { in InferStatically()