aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/stream_executor/stream_executor_pimpl.cc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-12-15 08:53:08 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-12-15 08:57:14 -0800
commit2df1a5cffe483c4f43828eb5a1c499560056661e (patch)
tree78a5e2c4db724fe0b3b70354a680d7dc8965a7ad /tensorflow/stream_executor/stream_executor_pimpl.cc
parent483f51a259cd31294f80229dee901919fa9ab698 (diff)
Rename StreamExecutorInterface::BlockHostUntilDoneWithStatus to BlockHostUntilDone.
PiperOrigin-RevId: 179198370
Diffstat (limited to 'tensorflow/stream_executor/stream_executor_pimpl.cc')
-rw-r--r--tensorflow/stream_executor/stream_executor_pimpl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/stream_executor/stream_executor_pimpl.cc b/tensorflow/stream_executor/stream_executor_pimpl.cc
index c4b248657e..afca1c2e59 100644
--- a/tensorflow/stream_executor/stream_executor_pimpl.cc
+++ b/tensorflow/stream_executor/stream_executor_pimpl.cc
@@ -436,7 +436,7 @@ port::Status StreamExecutor::BlockHostUntilDone(Stream *stream) {
port::Status result;
SCOPED_TRACE(TraceListener::BlockHostUntilDone, &result, stream);
- result = implementation_->BlockHostUntilDoneWithStatus(stream);
+ result = implementation_->BlockHostUntilDone(stream);
return result;
}