We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 626f743 commit 4ea1cf5Copy full SHA for 4ea1cf5
third_party/nvidia/lib/TritonNVIDIAGPUToLLVM/ConvertLayoutOpToLLVM/SharedToDotOperandMMAv2.cpp
@@ -498,6 +498,8 @@ Type getSharedMemTy(Type argType) {
498
return type::i8Ty(ctx);
499
else if (argType.getIntOrFloatBitWidth() == 16)
500
return type::i16Ty(ctx);
501
+ else if (argType.getIntOrFloatBitWidth() == 32)
502
+ return type::i32Ty(ctx);
503
else
504
llvm::report_fatal_error("mma16816 data type not supported");
505
}
0 commit comments