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 b3f7ce4 commit 4cd6abaCopy full SHA for 4cd6aba
lib/Dialect/TritonNvidiaGPU/IR/Dialect.cpp
@@ -253,12 +253,6 @@ LogicalResult TensorMemoryEncodingAttr::verify(
253
if (CTASplitM < 1 || CTASplitN < 1) {
254
return emitError() << "CTASplitM and CTASplitN must be greater than 0";
255
}
256
- if (blockM != 64 && blockM != 128) {
257
- return emitError() << "blockM must be 64 or 128";
258
- }
259
- if (!llvm::isPowerOf2_32(blockN) || blockN > 512) {
260
- return emitError() << "blockN must be a power of 2 and less than 512";
261
262
if (!unpacked && blockN < 2) {
263
return emitError() << "blockN must be at least 2 for packed tensor memory";
264
0 commit comments