aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/stream_executor/stream.h
diff options
context:
space:
mode:
authorGravatar Sanjoy Das <sanjoy@google.com>2018-06-15 15:25:33 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-06-15 15:28:49 -0700
commit5e9a39d6ad6eee207a7af88bb1bbe1deefb8bbb2 (patch)
treed048fd44b1703a023787cbc14262b5b30fb48e33 /tensorflow/stream_executor/stream.h
parent94b3db68ee2edb568b6b12d3063b72074910f878 (diff)
Reflow comments; NFC
PiperOrigin-RevId: 200783258
Diffstat (limited to 'tensorflow/stream_executor/stream.h')
-rw-r--r--tensorflow/stream_executor/stream.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/tensorflow/stream_executor/stream.h b/tensorflow/stream_executor/stream.h
index 3da1b856d6..a32f4105ad 100644
--- a/tensorflow/stream_executor/stream.h
+++ b/tensorflow/stream_executor/stream.h
@@ -156,14 +156,13 @@ class Stream {
const TypedKernel<Params...> &kernel, Args... args);
// Record a "start" event for the interval timer at this point in the
- // stream's
- // execution (relative to the previously and subsequently enqueued items in
- // the stream's execution). Streams may be started/stopped multiple times.
+ // stream's execution (relative to the previously and subsequently enqueued
+ // items in the stream's execution). Streams may be started/stopped multiple
+ // times.
Stream &ThenStartTimer(Timer *t);
// Record a "stop" event for the interval timer at this point in the
- // stream's
- // execution. See also Stream::ThenStartTimer.
+ // stream's execution. See also Stream::ThenStartTimer.
Stream &ThenStopTimer(Timer *t);
// TODO(leary) If work is added to the stream that is being depended upon,
@@ -179,8 +178,7 @@ class Stream {
//
// Checks that a stream does not wait for itself, and it is up to the
// user to guarantee that a stream does not come to wait on itself in a
- // cyclic
- // manner; in that case, behavior is undefined.
+ // cyclic manner; in that case, behavior is undefined.
//
// N.B. Base recursion case for the variadic ThenWaitFor.
Stream &ThenWaitFor(Stream *other);