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.
Dialect.cpp
1 parent 8d32f5d commit d46b7d2Copy full SHA for d46b7d2
third_party/intel/lib/Dialect/TritonIntelGPU/IR/Dialect.cpp
@@ -547,7 +547,7 @@ LogicalResult Subgroup2DBlockEncodingAttr::verify(
547
if (!(kWidth == 1 || kWidth == 2 || kWidth == 4)) {
548
return emitError() << "kWidth must be 1, 2 or 4, but was: " << kWidth;
549
}
550
- if (!threadsPerWarp == 16) {
+ if (!(threadsPerWarp == 16)) {
551
return emitError() << "threadsPerWarp must be 16, but was: "
552
<< threadsPerWarp;
553
0 commit comments