aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Adrian Kuegel <akuegel@google.com>2018-09-11 05:34:31 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-09-11 05:39:11 -0700
commit9fd56039064871a736bb7cff398b2a8e08454bee (patch)
treed9f8ad53a34fb62b2b654b208bfa66db33073c44
parente18f84a394bcbde62b344a3b32e8d8fd248fea58 (diff)
Fix a typo in cudnn_convolution_rewriter.
PiperOrigin-RevId: 212436340
-rw-r--r--tensorflow/compiler/xla/service/gpu/cudnn_convolution_rewriter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/compiler/xla/service/gpu/cudnn_convolution_rewriter.cc b/tensorflow/compiler/xla/service/gpu/cudnn_convolution_rewriter.cc
index 3d1266355b..228379a248 100644
--- a/tensorflow/compiler/xla/service/gpu/cudnn_convolution_rewriter.cc
+++ b/tensorflow/compiler/xla/service/gpu/cudnn_convolution_rewriter.cc
@@ -263,7 +263,7 @@ MatchBackwardInput(HloInstruction* conv) {
!(window_util::HasBaseDilation(conv->window()) &&
(reverse_filter->IsConstant() || is_1x1_filter))) {
VLOG(1) << "Can't match to backwards convolution. Either filter is not "
- "kReverse, or it's not a base-dialted conv with a 1x1 or "
+ "kReverse, or it's not a base-dilated conv with a 1x1 or "
"constant filter.";
return no_match_result;
}