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.
scf.parallel
1 parent 3b12279 commit 58f592bCopy full SHA for 58f592b
lib/Dialect/Calyx/Transforms/ExcludeExecuteRegionCanonicalize.cpp
@@ -53,7 +53,8 @@ void ExcludeExecuteRegionCanonicalizePass::runOnOperation() {
53
54
// Add op-specific canonicalization patterns
55
for (const RegisteredOperationName &op : ctx->getRegisteredOperations()) {
56
- if (op.getStringRef() == "scf.execute_region")
+ if (op.getStringRef() == "scf.execute_region" ||
57
+ op.getStringRef() == "scf.parallel")
58
continue;
59
60
op.getCanonicalizationPatterns(patterns, ctx);
0 commit comments