Home
last modified time | relevance | path

Searched refs:result_graph_def (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/python/tools/
Doptimize_for_inference_lib.py360 result_graph_def = graph_pb2.GraphDef()
366 result_graph_def.node.extend([new_node])
368 result_graph_def.node.extend(new_ops)
369 return result_graph_def
477 result_graph_def = graph_pb2.GraphDef()
483 result_graph_def.node.extend([new_node])
485 result_graph_def.node.extend(new_ops)
486 return result_graph_def
/external/tensorflow/tensorflow/tools/graph_transforms/
Dfold_constants_test.cc248 GraphDef result_graph_def; in TestReplaceSendRecvs() local
251 &result_graph_def)); in TestReplaceSendRecvs()
254 graph_transforms::MapNamesToNodes(result_graph_def, &node_map); in TestReplaceSendRecvs()
282 GraphDef result_graph_def; in TestReplaceSendRecvsPrefixNames() local
285 &result_graph_def)); in TestReplaceSendRecvsPrefixNames()
288 graph_transforms::MapNamesToNodes(result_graph_def, &node_map); in TestReplaceSendRecvsPrefixNames()
319 GraphDef result_graph_def; in TestRemoveUnusedNodes() local
321 graph_def, {{"placeholder"}, {"output"}}, &result_graph_def)); in TestRemoveUnusedNodes()
324 graph_transforms::MapNamesToNodes(result_graph_def, &node_map); in TestRemoveUnusedNodes()
Dtransform_utils_test.cc244 GraphDef result_graph_def; in TestFilterGraphDef() local
248 &result_graph_def); in TestFilterGraphDef()
251 MapNamesToNodes(result_graph_def, &node_map); in TestFilterGraphDef()
269 GraphDef result_graph_def; in TestRemoveAttributes() local
270 RemoveAttributes(graph_def, {"dtype"}, &result_graph_def); in TestRemoveAttributes()
273 MapNamesToNodes(result_graph_def, &node_map); in TestRemoveAttributes()
/external/tensorflow/tensorflow/core/kernels/
Dremote_fused_graph_execute_utils.cc1019 GraphDef result_graph_def; in FuseCluster() local
1021 graph.ToGraphDef(&result_graph_def); in FuseCluster()
1025 BuildClusterByBorder(inputs, outputs, result_graph_def, &graph_cluster)); in FuseCluster()
1028 TF_RETURN_IF_ERROR(BuildClusterSubgraphDef(graph_cluster, result_graph_def, in FuseCluster()