Home
last modified time | relevance | path

Searched refs:GetFetch (Results 1 – 12 of 12) sorted by relevance

/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
Dgraph_pruning.cc145 reachable_ops.insert(graph.GetFetch()); in PruneGraph()
146 VisitOpOperands(graph, graph.GetFetch(), &reachable_ops, &ops_to_visit); in PruneGraph()
Dparallel_execute_to_islands.cc169 tf_executor::FetchOp fetch = graph_op.GetFetch(); in CreateIslandsFromParallelExecute()
Dtpu_device_propagation.cc240 PropagateDevicesToResults(func, graph.GetFetch(), value_to_device); in runOnFunction()
Dreplicate_to_island.cc286 tf_executor::FetchOp fetch = graph_op.GetFetch(); in CreateIslandsFromReplicate()
Dexecutor_island_coarsening.cc323 InsertDummyIslandForFetch(graph.GetFetch()); in runOnFunction()
Dshape_inference.cc394 ValuePort(graph.GetFetch().fetches()[port[0]]), values); in ComputeOutputComponent()
932 graph_op.GetFetch(), graph_op.GetFetch().fetches(), op->getResults()); in InferShapeForNonTFDialectOperation()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/translate/
Dtf_executor_to_functional.cc64 for (auto result : llvm::zip(graph.results(), graph.GetFetch().fetches())) in LiftIslandOpInnerOpsFromGraph()
Dexport_graphdef.cc499 for (const auto& it : llvm::enumerate(graph_op.GetFetch().getOperands())) { in Convert()
608 exporter.GetControlRetNodes(graph_op.GetFetch(), control_ret_nodes)); in Convert()
Dimport_model.cc1458 auto fetch = graph.GetFetch(); in Convert()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/ir/
Dtf_executor.cc161 FetchOp GraphOp::GetFetch() { return llvm::cast<FetchOp>(GetBody().back()); } in GetFetch() function in mlir::tf_executor::GraphOp
967 rewriter.replaceOp(op, op.GetFetch().fetches()); in matchAndRewrite()
985 FetchOp fetch_op = op.GetFetch(); in matchAndRewrite()
Dtf_executor_ops.td125 FetchOp GetFetch();
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/analysis/
Dresource_alias_analysis.cc188 value = graph.GetFetch().getOperand(res_index); in BacktrackValue()