aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/util
diff options
context:
space:
mode:
authorGravatar Guozhong Zhuang <guozhong.zhuang@intel.com>2018-09-21 09:56:29 -0700
committerGravatar Guozhong Zhuang <guozhong.zhuang@intel.com>2018-09-21 09:56:29 -0700
commit59a47b7d330a40971bad89f0e8aa282e79e889f1 (patch)
treec1687307a2f64618da4f227518935239613f144b /tensorflow/core/util
parent16a257eb598b7dfd220249babf8d18c984aab103 (diff)
refine a comment per Tatiana's suggestions
Diffstat (limited to 'tensorflow/core/util')
-rw-r--r--tensorflow/core/util/mkl_util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/core/util/mkl_util.h b/tensorflow/core/util/mkl_util.h
index f371fd6f95..2f2705de92 100644
--- a/tensorflow/core/util/mkl_util.h
+++ b/tensorflow/core/util/mkl_util.h
@@ -2098,7 +2098,7 @@ static inline memory::format get_desired_format(int channel,
(channel % 8) == 0) {
fmt_desired = is_2d
? memory::format::nChw8c
- : memory::format::ncdhw; // not support avx2 for 3d yet.
+ : memory::format::ncdhw; // no avx2 support for 3d yet.
} else {
fmt_desired = is_2d ? memory::format::nchw : memory::format::ncdhw;
}