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
This commit is contained in:
Aditya Kane
2025-07-30 19:11:23 -07:00
committed by GitHub
parent 84a27b3926
commit f09045d660

View File

@ -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)