From 68134f039472439f0175122aba5ada4bc7e7f294 Mon Sep 17 00:00:00 2001 From: Sanjoy Das Date: Wed, 16 May 2018 15:01:22 -0700 Subject: [PATCH] Fix typo in comment PiperOrigin-RevId: 196894582 --- tensorflow/compiler/xla/service/cpu/dot_op_emitter.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tensorflow/compiler/xla/service/cpu/dot_op_emitter.h b/tensorflow/compiler/xla/service/cpu/dot_op_emitter.h index 566f07b..a75b8ff 100644 --- a/tensorflow/compiler/xla/service/cpu/dot_op_emitter.h +++ b/tensorflow/compiler/xla/service/cpu/dot_op_emitter.h @@ -112,13 +112,13 @@ class DotOpEmitter { // The number of columns on the RHS. int64 n; - // True if the LHS matrix column major. + // True if the LHS matrix is column major. bool lhs_column_major; // True if the LHS contraction dimension is not 1. bool lhs_non_canonical; - // True if the RHS matrix column major. + // True if the RHS matrix is column major. bool rhs_column_major; // True if the RHS contraction dimension is not 0. -- 2.7.4