aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/stream_executor/stream.cc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-03-02 16:41:09 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-03-02 17:06:14 -0800
commit112a534b50c0a23dec95382941ac0556f2866b29 (patch)
tree576a4f7b5ef3cb14966d63208c0a9be54c022da0 /tensorflow/stream_executor/stream.cc
parentd2d5f1985de99777f97902b9fb6466a7c3eb3d1c (diff)
[XLA:GPU] Cache GPU substreams across executions
Change: 149063035
Diffstat (limited to 'tensorflow/stream_executor/stream.cc')
-rw-r--r--tensorflow/stream_executor/stream.cc10
1 files changed, 0 insertions, 10 deletions
diff --git a/tensorflow/stream_executor/stream.cc b/tensorflow/stream_executor/stream.cc
index 44c6d70636..9b67531689 100644
--- a/tensorflow/stream_executor/stream.cc
+++ b/tensorflow/stream_executor/stream.cc
@@ -1495,16 +1495,6 @@ Stream &Stream::ThenWaitFor(Stream *other) {
return *this;
}
-Stream &Stream::ThenWaitFor(std::vector<std::unique_ptr<Stream>> *others) {
- VLOG_CALL(PARAM(others));
-
- for (auto &stream : *others) {
- CHECK_NE(stream.get(), this);
- ThenWaitFor(stream.get());
- }
- return *this;
-}
-
Stream &Stream::ThenWaitFor(Event *event) {
VLOG_CALL(PARAM(event));