Home
last modified time | relevance | path

Searched refs:GraphCollectiveOrder (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/core/common_runtime/
Dbuild_graph_options.cc40 case GraphCollectiveOrder::kNone: in DebugString()
43 case GraphCollectiveOrder::kEdges: in DebugString()
46 case GraphCollectiveOrder::kAttrs: in DebugString()
Dbuild_graph_options.h41 GraphCollectiveOrder collective_order = GraphCollectiveOrder::kNone;
Dgraph_execution_state.cc948 if (options.collective_order != GraphCollectiveOrder::kNone) { in BuildGraph()
Ddirect_session.cc1303 options.collective_order = GraphCollectiveOrder::kEdges; in CreateExecutors()
1305 options.collective_order = GraphCollectiveOrder::kAttrs; in CreateExecutors()
/external/tensorflow/tensorflow/core/graph/
Dcollective_order.h22 enum class GraphCollectiveOrder { kNone, kEdges, kAttrs }; enum
32 Status OrderCollectives(Graph* graph, GraphCollectiveOrder order_type);
Dcollective_order.cc148 Graph* graph, GraphCollectiveOrder order_type, in InsertControlDependencies()
151 if (order_type == GraphCollectiveOrder::kEdges) { in InsertControlDependencies()
158 } else if (order_type == GraphCollectiveOrder::kAttrs) { in InsertControlDependencies()
184 Status OrderCollectives(Graph* graph, GraphCollectiveOrder order_type) { in OrderCollectives()
Dcollective_order_test.cc143 TF_EXPECT_OK(OrderCollectives(graph.get(), GraphCollectiveOrder::kEdges)); in TEST()
150 TF_EXPECT_OK(OrderCollectives(graph.get(), GraphCollectiveOrder::kAttrs)); in TEST()
192 TF_EXPECT_OK(OrderCollectives(graph.get(), GraphCollectiveOrder::kEdges)); in TEST()
230 TF_EXPECT_OK(OrderCollectives(graph.get(), GraphCollectiveOrder::kAttrs)); in TEST()
/external/tensorflow/tensorflow/core/distributed_runtime/
Dmaster_session.cc1162 opts->collective_order = GraphCollectiveOrder::kEdges; in BuildBuildGraphOptions()
1164 opts->collective_order = GraphCollectiveOrder::kAttrs; in BuildBuildGraphOptions()