aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Liangliang He <lliang.he@gmail.com>2016-12-04 09:34:55 +0800
committerGravatar Shanqing Cai <cais@google.com>2016-12-03 20:34:55 -0500
commit32b584d2bad23b9393111ca8ec28888f888bdf18 (patch)
tree7da1d2bb7b713dd492922b3dd031f2265cfd8ee0
parent7bf6c8474b3f62b0e2db5ddf13c75681199afc13 (diff)
Fix typo in executor.h (#6004)
-rw-r--r--tensorflow/core/common_runtime/executor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/core/common_runtime/executor.h b/tensorflow/core/common_runtime/executor.h
index 8cca22fb6f..239c9666e3 100644
--- a/tensorflow/core/common_runtime/executor.h
+++ b/tensorflow/core/common_runtime/executor.h
@@ -39,7 +39,7 @@ class StepStatsCollector;
// Rendezvous* rendezvous = NewNaiveRendezvous();
// TF_CHECK_OK(rendezvous->Send("input", some_input_tensor));
// TF_CHECK_OK(executor->Run({ExecutorOpts, rendezvous, nullptr}));
-// TF_CHECK_OK(rendezvous->Recv("input", &output_tensor));
+// TF_CHECK_OK(rendezvous->Recv("output", &output_tensor));
// ... ...
//
// Multiple threads can call Executor::Run concurrently.