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 3cac88c commit ab63790Copy full SHA for ab63790
mlir/lib/Dialect/Polynomial/IR/PolynomialOps.cpp
@@ -196,15 +196,15 @@ namespace {
196
197
void SubOp::getCanonicalizationPatterns(RewritePatternSet &results,
198
MLIRContext *context) {
199
- populateWithGenerated(results);
+ results.add<SubAsAdd>(context);
200
}
201
202
void NTTOp::getCanonicalizationPatterns(RewritePatternSet &results,
203
204
+ results.add<NTTAfterINTT>(context);
205
206
207
void INTTOp::getCanonicalizationPatterns(RewritePatternSet &results,
208
209
+ results.add<INTTAfterNTT>(context);
210
0 commit comments