Searched refs:object_graph (Results 1 – 6 of 6) sorted by relevance
/external/tensorflow/tensorflow/c/experimental/saved_model/core/ |
D | object_graph_traversal_test.cc | 303 SavedObjectGraph object_graph = ParseSavedObjectGraph(kSingleChildFoo); in TEST() local 304 absl::optional<int> node = internal::FindNodeAtPath("foo", object_graph); in TEST() 310 SavedObjectGraph object_graph = ParseSavedObjectGraph(kSingleChildFoo); in TEST() local 311 absl::optional<int> node = internal::FindNodeAtPath("bar", object_graph); in TEST() 316 SavedObjectGraph object_graph = ParseSavedObjectGraph(kSingleChildFoo); in TEST() local 317 absl::optional<int> node = internal::FindNodeAtPath("FOO", object_graph); in TEST() 322 SavedObjectGraph object_graph = in TEST() local 324 absl::optional<int> node = internal::FindNodeAtPath("foo.bar", object_graph); in TEST() 330 SavedObjectGraph object_graph = ParseSavedObjectGraph(kMultiplePathsToChild); in TEST() local 332 internal::FindNodeAtPath("foo.baz", object_graph); in TEST() [all …]
|
D | saved_model_utils.h | 85 const SavedObjectGraph& object_graph);
|
D | saved_model_utils.cc | 335 const SavedObjectGraph& object_graph) { in FindNodeAtPath() argument 336 const auto& nodes = object_graph.nodes(); in FindNodeAtPath()
|
/external/tensorflow/tensorflow/cc/saved_model/ |
D | bundle_v2.cc | 71 TrackableObjectGraph* object_graph) { in ReadCheckpointObjectGraph() argument 86 if (!object_graph->ParseFromString(*object_graph_string)) { in ReadCheckpointObjectGraph()
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/translate/ |
D | import_model.cc | 2536 explicit ObjectNames(const SavedObjectGraph& object_graph, 2598 ObjectNames::ObjectNames(const SavedObjectGraph& object_graph, in ObjectNames() argument 2600 : object_graph_(object_graph), in ObjectNames() 2761 Status DiagnoseMultipleConcreteFunctions(const SavedObjectGraph& object_graph, in DiagnoseMultipleConcreteFunctions() argument 2763 for (int node_id = 0; node_id < object_graph.nodes_size(); node_id++) { in DiagnoseMultipleConcreteFunctions() 2764 const SavedObject& object = object_graph.nodes(node_id); in DiagnoseMultipleConcreteFunctions() 3072 const SavedObjectGraph& object_graph, in CreateSavedModelIR() argument 3090 for (int node_id = 0; node_id < object_graph.nodes_size(); node_id++) { in CreateSavedModelIR() 3091 const SavedObject& object = object_graph.nodes(node_id); in CreateSavedModelIR() 3137 object_graph.concrete_functions().at(function.concrete_functions(0)); in CreateSavedModelIR() [all …]
|
/external/tensorflow/tensorflow/python/saved_model/ |
D | save_test.py | 621 object_graph = meta_graph_def.object_graph_def 624 for n in object_graph.nodes
|