aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/stream_executor/stream.h
diff options
context:
space:
mode:
authorGravatar Justin Lebar <jlebar@google.com>2017-03-02 17:21:02 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-03-02 17:44:47 -0800
commite065b3093f4fec5a5f79ad9de81f6baab361962e (patch)
treeeb020533a0a818b27b9612f62f94694b35fd2b68 /tensorflow/stream_executor/stream.h
parent112a534b50c0a23dec95382941ac0556f2866b29 (diff)
[StreamExecutor] Minor comment cleanups.
Change: 149066697
Diffstat (limited to 'tensorflow/stream_executor/stream.h')
-rw-r--r--tensorflow/stream_executor/stream.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/tensorflow/stream_executor/stream.h b/tensorflow/stream_executor/stream.h
index 2045e8a1c2..a092e87004 100644
--- a/tensorflow/stream_executor/stream.h
+++ b/tensorflow/stream_executor/stream.h
@@ -121,12 +121,8 @@ class Stream {
// Convenience wrapper around Init() and InitTimer().
Stream &InitWithTimer(Timer *t);
- // Warning! After calling BlockHostUntilDone(), all sub-streams will be
- // returned and hence invalid. This may be a temporary solution to the issue
- // b/18070215.
- // Get or create a sub-stream from this stream. If there is any sub-stream
- // in the pool that can be reused then just return this sub-stream.
- // Otherwise
+ // Get or create a sub-stream from this stream. If there is any sub-stream in
+ // the pool that can be reused then just return this sub-stream. Otherwise
// create a new sub-stream.
Stream *GetOrCreateSubStream();