aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/stream_executor/stream.h
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-12-15 10:52:15 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-12-15 10:56:03 -0800
commite355290854e0c9dedd878741cfb2740a72059a27 (patch)
tree1fd0ca99be0299dfb59456ed2905e089cd3e0106 /tensorflow/stream_executor/stream.h
parent224cf1c94edbf484aaaf3986312331d3ce6787b8 (diff)
Remove Stream::BlockHostUntilDoneWithStatus; all callers use BlockHostUntilDone.
PiperOrigin-RevId: 179213341
Diffstat (limited to 'tensorflow/stream_executor/stream.h')
-rw-r--r--tensorflow/stream_executor/stream.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/tensorflow/stream_executor/stream.h b/tensorflow/stream_executor/stream.h
index 4c34452048..37828d9882 100644
--- a/tensorflow/stream_executor/stream.h
+++ b/tensorflow/stream_executor/stream.h
@@ -1907,11 +1907,6 @@ class Stream {
// Otherwise returns an error describing why the blocking failed.
port::Status BlockHostUntilDone() LOCKS_EXCLUDED(mu_);
- // DEPRECATED(b/70298427) - new code should use BlockHostUntilDone()
- //
- // Equivalent to BlockHostUntilDone()
- port::Status BlockHostUntilDoneWithStatus() LOCKS_EXCLUDED(mu_);
-
// Warning! This method interacts with internal threads in
// sometimes-unpredictable ways and is intended for GPU-Executor-internal
// use