aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/common_runtime/graph_execution_state.cc
diff options
context:
space:
mode:
authorGravatar Mingsheng Hong <hongm@google.com>2018-03-01 14:15:20 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-03-01 14:18:50 -0800
commitf8f4a6e26cc1108495c0b9a55d9a7d6e7005c2b5 (patch)
tree47566990e1e975b7f6e6d60083b454951020fee4 /tensorflow/core/common_runtime/graph_execution_state.cc
parent80710d5c53a8b2896a57dbe026d7f742e71fc03b (diff)
Internal change.
PiperOrigin-RevId: 187532378
Diffstat (limited to 'tensorflow/core/common_runtime/graph_execution_state.cc')
-rw-r--r--tensorflow/core/common_runtime/graph_execution_state.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/tensorflow/core/common_runtime/graph_execution_state.cc b/tensorflow/core/common_runtime/graph_execution_state.cc
index 33a5d60eb7..785ec3d227 100644
--- a/tensorflow/core/common_runtime/graph_execution_state.cc
+++ b/tensorflow/core/common_runtime/graph_execution_state.cc
@@ -73,6 +73,10 @@ GraphExecutionState::~GraphExecutionState() {
/* static */ Status GraphExecutionState::MakeForBaseGraph(
GraphDef* graph_def, const GraphExecutionStateOptions& options,
std::unique_ptr<GraphExecutionState>* out_state) {
+#ifndef __ANDROID__
+ VLOG(1) << "Graph proto is " << graph_def->DebugString();
+#endif // __ANDROID__
+
std::unique_ptr<GraphExecutionState> ret(
new GraphExecutionState(graph_def, options));