Skip to content

Commit 4ea1cf5

Browse files
committed
Add support for i32 to SharedToDotOperandMMAv2
1 parent 626f743 commit 4ea1cf5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

third_party/nvidia/lib/TritonNVIDIAGPUToLLVM/ConvertLayoutOpToLLVM/SharedToDotOperandMMAv2.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -498,6 +498,8 @@ Type getSharedMemTy(Type argType) {
498498
return type::i8Ty(ctx);
499499
else if (argType.getIntOrFloatBitWidth() == 16)
500500
return type::i16Ty(ctx);
501+
else if (argType.getIntOrFloatBitWidth() == 32)
502+
return type::i32Ty(ctx);
501503
else
502504
llvm::report_fatal_error("mma16816 data type not supported");
503505
}

0 commit comments

Comments
 (0)