From 45ecbc885ba7be3480fdfed1de2720ad5aa24d86 Mon Sep 17 00:00:00 2001 From: Andrew Kerr Date: Wed, 20 Nov 2019 11:27:13 -0800 Subject: [PATCH] Removed redundant conjugation operations from matrix_traits. (#65) --- include/cutlass/matrix_traits.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/cutlass/matrix_traits.h b/include/cutlass/matrix_traits.h index 9e62c4ca..8e7fe330 100644 --- a/include/cutlass/matrix_traits.h +++ b/include/cutlass/matrix_traits.h @@ -43,9 +43,7 @@ enum class MatrixLayout { /// Transformation applied to matrix operands enum class MatrixTransform { kNone, /// no operation - kTranspose, /// transpose operation - kConjugate, /// conjugate - kHermitian /// conjugate transpose + kTranspose /// transpose operation }; ////////////////////////////////////////////////////////////////////////////////////////////////////