aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/stream_executor/dnn.h
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-12-22 12:42:59 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-12-22 12:46:28 -0800
commite4532d20973c4c00854492362665317551661c18 (patch)
tree398527e29bd30d39237adb4785be5069fdb646fa /tensorflow/stream_executor/dnn.h
parent673641c2d6a27fa97ee05453d671853731a4c602 (diff)
Merge changes from github.
PiperOrigin-RevId: 179953488
Diffstat (limited to 'tensorflow/stream_executor/dnn.h')
-rw-r--r--tensorflow/stream_executor/dnn.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tensorflow/stream_executor/dnn.h b/tensorflow/stream_executor/dnn.h
index 07314a0ff7..f4162b0962 100644
--- a/tensorflow/stream_executor/dnn.h
+++ b/tensorflow/stream_executor/dnn.h
@@ -2024,7 +2024,7 @@ class DnnSupport {
// output_h_desc: descriptor for the output "h" state.
// output_h_data: the memory region that stores the output "h" data.
// output_c_desc: descriptor for the output "c" state.
- // output_c_data: the memory region that stores the outptu "c" data. This
+ // output_c_data: the memory region that stores the output "c" data. This
// must be specified for LSTM models.
// is_training: whether this is used in training or inference. That decides
// whether respace_space data need to be produced.
@@ -2033,7 +2033,7 @@ class DnnSupport {
// retains the data and feed it to the backward pass.
// workspace_allocator: an allocator to create temporary workspace used in
// this kernel. The caller is responsible for retaining the memory long
- // enough for the lifespan of this operation, and recycles aftewards.
+ // enough for the lifespan of this operation, and recycles afterwards.
virtual bool DoRnnForward(Stream* stream, const dnn::RnnDescriptor& rnn_desc,
const dnn::RnnSequenceTensorDescriptor& input_desc,
const DeviceMemory<Eigen::half>& input_data,
@@ -2112,7 +2112,7 @@ class DnnSupport {
// output_h_desc: descriptor for the output "h" state.
// output_h_data: the memory region that stores the output "h" data.
// output_c_desc: descriptor for the output "c" state.
- // output_c_data: the memory region that stores the outptu "c" data. This
+ // output_c_data: the memory region that stores the output "c" data. This
// must be specified for LSTM models.
// output_backprop_data: the device memory region that contains the backprop
// to the output sequence.