From f09045d6609a7f25c5b377a6f923b8ff17fecd04 Mon Sep 17 00:00:00 2001 From: Aditya Kane <64411306+AdityaKane2001@users.noreply.github.com> Date: Wed, 30 Jul 2025 19:11:23 -0700 Subject: [PATCH] Corrected minor nit in mma_traits.hpp (#2447) * Corrected minor nit in mma_traits.hpp The entry and descriptions were jumbled up. * Update mma_traits.hpp * Update mma_traits.hpp --- include/cute/atom/mma_traits.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/cute/atom/mma_traits.hpp b/include/cute/atom/mma_traits.hpp index de24b643..986b1ae0 100644 --- a/include/cute/atom/mma_traits.hpp +++ b/include/cute/atom/mma_traits.hpp @@ -41,10 +41,10 @@ namespace cute /** * concept MMA_Traits * { - * using ValTypeD = // Logical A-value type - * using ValTypeA = // Logical B-value type - * using ValTypeB = // Logical C-value type - * using ValTypeC = // Logical D-value type (NOTE: Not used? Assumed == ValTypeD) + * using ValTypeD = // Logical D-value type + * using ValTypeA = // Logical A-value type + * using ValTypeB = // Logical B-value type + * using ValTypeC = // Logical C-value type (NOTE: Not used? Assumed == ValTypeD) * * using FrgTypeA = // A-type consumed by MMA (if ommitted, same as ValTypeA) * using FrgTypeB = // B_type consumed by MMA (if ommitted, same as ValTypeB)