Home
last modified time | relevance | path

Searched defs:graph_def (Results 1 – 25 of 132) sorted by relevance

123456

/external/tensorflow/tensorflow/core/framework/
Dgraph_def_util.cc36 string SummarizeGraphDef(const GraphDef& graph_def) { in SummarizeGraphDef()
46 Status ValidateExternalGraphDefSyntax(const GraphDef& graph_def) { in ValidateExternalGraphDefSyntax()
53 Status AddDefaultAttrsToGraphDef(GraphDef* graph_def, in AddDefaultAttrsToGraphDef()
118 static bool IsFunction(const GraphDef& graph_def, const string& op_name) { in IsFunction()
126 GraphDef* graph_def, const OpRegistryInterface& consumer_op_registry, in RemoveNewDefaultAttrsFromGraphDef()
155 void OpsUsedByGraph(const GraphDef& graph_def, in OpsUsedByGraph()
200 Status StrippedOpListForGraph(const GraphDef& graph_def, in StrippedOpListForGraph()
/external/tensorflow/tensorflow/core/graph/
Dvalidate_test.cc43 GraphDef graph_def; in TEST() local
58 GraphDef graph_def; in TEST() local
81 GraphDef graph_def; in TEST() local
103 GraphDef graph_def; in TEST() local
115 GraphDef graph_def; in TEST() local
Dvalidate.cc29 Status ValidateGraphDef(const GraphDef& graph_def, in ValidateGraphDef()
45 const GraphDef& graph_def, const OpRegistryInterface& op_registry) { in ValidateGraphDefAgainstOpRegistry()
51 Status ValidateGraphDefAgainstOpList(const GraphDef& graph_def, in ValidateGraphDefAgainstOpList()
/external/tensorflow/tensorflow/cc/training/
Dqueue_runner_test.cc78 GraphDef graph_def; in BuildSimpleGraph() local
102 const GraphDef& graph_def) { in BuildSessionAndInitVariable()
112 GraphDef graph_def = BuildSimpleGraph(); in TEST() local
130 GraphDef graph_def = BuildSimpleGraph(); in TEST() local
150 GraphDef graph_def = BuildSimpleGraph(); in TEST() local
165 GraphDef graph_def = BuildSimpleGraph(); in TEST() local
196 GraphDef graph_def; in BuildDoubleQueueGraph() local
202 auto graph_def = BuildDoubleQueueGraph(); in TEST() local
239 auto graph_def = BuildDoubleQueueGraph(); in TEST() local
284 GraphDef graph_def = BuildDoubleQueueGraph(); in TEST() local
[all …]
/external/tensorflow/tensorflow/tools/graph_transforms/
Dsort_by_execution_order_test.cc33 void GetOrder(const GraphDef& graph_def, std::map<string, int>* order) { in GetOrder()
41 GraphDef graph_def; in TestSimpleAdd() local
67 GraphDef graph_def; in TestSimpleLinear() local
100 GraphDef graph_def; in TestSimpleTree() local
151 GraphDef graph_def; in TestCommonAncestor() local
Dset_device_test.cc38 GraphDef graph_def; in CreateDeviceGraph() local
83 GraphDef graph_def = CreateDeviceGraph(); in TEST() local
104 GraphDef graph_def = CreateDeviceGraph(); in TEST() local
Dstrip_unused_nodes_test.cc40 GraphDef graph_def; in TestSimpleAdd() local
71 GraphDef graph_def; in TestCommonAncestor() local
131 GraphDef graph_def; in TestSimplePlaceholder() local
174 GraphDef graph_def; in TestPlaceholderDefaultArgs() local
220 GraphDef graph_def; in TestPlaceholderNamedArgs() local
Dobfuscate_names_test.cc39 GraphDef graph_def; in TestSimpleTree() local
92 GraphDef graph_def; in TestManyNodes() local
111 GraphDef graph_def; in TestNameClashes() local
Dinsert_logging_test.cc38 void CheckGraphCanRun(const GraphDef& graph_def, in CheckGraphCanRun()
64 GraphDef graph_def; in TestInsertLogging() local
111 GraphDef graph_def; in TestInsertLoggingByOpType() local
160 GraphDef graph_def; in TestInsertLoggingByPrefix() local
Dremove_nodes_test.cc39 GraphDef graph_def; in TestRemoveNodes() local
126 GraphDef graph_def; in TestRemoveOutputNodes() local
165 GraphDef graph_def; in TestRemoveChainedNodes() local
215 GraphDef graph_def; in TestRemoveMultipleInputs() local
Dbackports_test.cc42 GraphDef graph_def; in TestBackportConcatV2() local
108 GraphDef graph_def; in TEST() local
180 GraphDef graph_def; in TEST() local
Dfold_constants_test.cc69 GraphDef graph_def; in TestSimpleAdd() local
106 GraphDef graph_def; in TestOpExclusionAdd() local
130 GraphDef graph_def; in TestShapePropagation() local
159 GraphDef graph_def; in TestPreserveOutputShapes() local
172 void TestConstantFolding(const GraphDef& graph_def, in TestConstantFolding()
316 GraphDef graph_def; in TestRemoveUnusedNodes() local
346 GraphDef graph_def; in TestRemoveUnusedNodesMultipleOutputs() local
/external/tensorflow/tensorflow/compiler/tf2xla/
Dxla_jit_compiled_cpu_function_test.cc41 GraphDef graph_def; in SumGraph() local
74 GraphDef graph_def = SumGraph(); in TEST() local
135 GraphDef graph_def = SumGraph(); in TEST() local
Dtf2xla_test.cc41 GraphDef graph_def; in SumGraph() local
68 GraphDef graph_def = SumGraph(); in TEST() local
Ddump_graph.cc64 string DumpGraphDefToFile(const string& name, GraphDef const& graph_def) { in DumpGraphDefToFile()
77 GraphDef graph_def; in DumpGraphToFile() local
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_tfgraph_builder_test.cc73 GraphDef graph_def = generator_.GetGraphDef(); in TEST_F() local
100 GraphDef graph_def = generator_.GetGraphDef(); in TEST_F() local
112 GraphDef graph_def = generator_.GetGraphDef(); in TEST_F() local
131 GraphDef graph_def = generator_.GetGraphDef(); in TEST_F() local
153 GraphDef graph_def = generator_.GetGraphDef(); in TEST_F() local
/external/tensorflow/tensorflow/contrib/meta_graph_transform/
Dmeta_graph_transform.py70 def _gtt_transforms(graph_def, input_names, output_names, initializer_names, argument
99 def _freeze_transform(graph_def, output_names, initializer_names, saver_def, argument
143 def _clean_save_and_restore(graph_def, op, removed_op_names): argument
185 def _sparsify_gather_transform(graph_def, input_names, output_names, argument
263 def _do_transforms(graph_def, argument
327 def _connect_to_shared_init_op(graph_def, shared_init_op_name, argument
543 def _find_op(graph_def, op_name): argument
/external/tensorflow/tensorflow/cc/tools/
Dfreeze_saved_model_test.cc61 const GraphDef& graph_def, const string& init_node, in InitializeSavedModelBundleSession()
76 Status AddGraphDefToSavedModelBundle(const GraphDef& graph_def, in AddGraphDefToSavedModelBundle()
88 const GraphDef& graph_def, const std::unordered_set<string>& outputs, in AddGraphDefWithOutputsToSavedModelBundle()
162 GraphDef graph_def; in TEST_F() local
181 GraphDef graph_def; in TEST_F() local
204 GraphDef graph_def; in TEST_F() local
240 GraphDef graph_def; in TEST_F() local
274 GraphDef graph_def; in TEST_F() local
/external/tensorflow/tensorflow/contrib/receptive_field/python/util/
Dgraph_compute_order.py28 def parse_graph_nodes(graph_def): argument
160 def get_compute_order(graph_def, input_node_name='', input_node_size=None): argument
/external/tensorflow/tensorflow/python/framework/
Dmeta_graph.py135 def ops_used_by_graph_def(graph_def): argument
171 def stripped_op_list_for_graph(graph_def): argument
290 def _find_extraneous_saver_nodes(graph_def, saver_def): argument
511 def create_meta_graph_def(meta_info_def=None, argument
810 graph_def=None, argument
Dgraph_util_impl.py112 def _extract_graph_summary(graph_def): argument
153 def extract_sub_graph(graph_def, dest_nodes): argument
/external/tensorflow/tensorflow/contrib/tensorrt/segment/
Dsegment_test.cc51 tensorflow::GraphDef* graph_def) { in GetGraphDef()
110 GraphDef graph_def; in TEST_F() local
154 GraphDef graph_def; in TEST_F() local
209 GraphDef graph_def; in TEST_F() local
266 GraphDef graph_def; in TEST_F() local
336 GraphDef graph_def; in TEST_F() local
/external/tensorflow/tensorflow/python/summary/writer/
Dwriter.py48 def __init__(self, event_writer, graph=None, graph_def=None): argument
156 def _add_graph_def(self, graph_def, global_step=None): argument
161 def add_graph(self, graph, global_step=None, graph_def=None): argument
296 graph_def=None, argument
/external/tensorflow/tensorflow/core/common_runtime/
Dgraph_execution_state.cc53 GraphDef* graph_def, const GraphExecutionStateOptions& options) in GraphExecutionState()
74 GraphDef* graph_def, const GraphExecutionStateOptions& options, in MakeForBaseGraph()
93 const GraphExecutionStateOptions& options, const GraphDef& graph_def, in MakeForPrunedGraph()
237 const GraphDef* graph_def = &original_graph_def_; in InitBaseGraph() local
/external/tensorflow/tensorflow/contrib/util/
Dconvert_graphdef_memmapped_format_test.cc29 bool GraphHasImmutableConstNodes(const GraphDef& graph_def) { in GraphHasImmutableConstNodes()
58 GraphDef graph_def; in TEST() local
109 GraphDef graph_def; in TEST() local

123456