-
Beta Was this translation helpful? Give feedback.
      
      
          Answered by
          
            ccecka
          
      
      
        Mar 6, 2024 
      
    
    Replies: 1 comment 11 replies
-
| 
         Looks like a slideware typo to me. The following program #include <cute/tensor.hpp>
using namespace cute;
int main()
{
  using MMA = MMA_Traits<SM80_16x8x8_F32F16F16F32_TN>;
  print("ALayout: "); print(typename MMA::ALayout{}); print("\n");
  print("BLayout: "); print(typename MMA::BLayout{}); print("\n");
  print("CLayout: "); print(typename MMA::CLayout{}); print("\n");
}prints which makes a lot more sense:  Looks like you've got the right idea, but check out the   | 
  
Beta Was this translation helpful? Give feedback.
                  
                    11 replies
                  
                
            
      Answer selected by
        MARD1NO
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
        
    


Looks like a slideware typo to me.
The following program
prints
which makes a lot more sense:
ALayouthas size-4 in the V-mode andBLayouthas size-2 in the V-mode.Looks like you've got the right idea, but check out the
MMA_Atomdocumentation a…