aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/framework/graph_def_util.h
diff options
context:
space:
mode:
authorGravatar Geoffrey Irving <geoffreyi@google.com>2017-06-01 15:24:16 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-06-01 15:28:43 -0700
commit8032e1f75dd6a56b39a07890f60acc6b275d0683 (patch)
tree846f20b2be63f8d28802f37a1f408a6779042098 /tensorflow/core/framework/graph_def_util.h
parent2e44be35dc037b9c191569fd43caf1a7fcfceaec (diff)
Make function instantiation use std::vector<NodeDef> instead of GraphDef
It's about to turn into std::vector<NodeInfoPtr>; this change gets us partway there. RELNOTES: n/a PiperOrigin-RevId: 157771141
Diffstat (limited to 'tensorflow/core/framework/graph_def_util.h')
-rw-r--r--tensorflow/core/framework/graph_def_util.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tensorflow/core/framework/graph_def_util.h b/tensorflow/core/framework/graph_def_util.h
index 56355eaf36..27e3de581a 100644
--- a/tensorflow/core/framework/graph_def_util.h
+++ b/tensorflow/core/framework/graph_def_util.h
@@ -27,6 +27,7 @@ namespace tensorflow {
// Produce a human-readable version of a GraphDef that is more concise
// than a text-format proto.
string SummarizeGraphDef(const GraphDef& graph_def);
+string SummarizeGraphDef(gtl::ArraySlice<NodeDef> node_defs);
// Validates the syntax of a GraphDef provided externally.
//