mirror of https://github.com/llvm/torch-mlir
build: update llvm tag to 70423eed
Changes: - Rename `kNoIterationLimit` to `kNoLimit`. (https://reviews.llvm.org/D140525) Signed-Off-by: Gaurav Shukla <gaurav@nod-labs.com>gaurav/update_tags oneshot-20230104.77
parent
6e0b5b9ba7
commit
3f8a8c7941
|
@ -1 +1 @@
|
|||
Subproject commit 7ccbb4dff10efe6c26219204e361ddb0264938b8
|
||||
Subproject commit 70423eedecea4015c1c0f2ca7df700d9063205ca
|
|
@ -3667,7 +3667,7 @@ public:
|
|||
|
||||
GreedyRewriteConfig config;
|
||||
config.useTopDownTraversal = true;
|
||||
config.maxIterations = GreedyRewriteConfig::kNoIterationLimit;
|
||||
config.maxIterations = GreedyRewriteConfig::kNoLimit;
|
||||
|
||||
if (failed(applyPatternsAndFoldGreedily(getOperation(), std::move(patterns),
|
||||
config))) {
|
||||
|
|
|
@ -194,7 +194,7 @@ class SimplifyDtypeCalculationsPass
|
|||
// A single linear scan should suffice.
|
||||
GreedyRewriteConfig config;
|
||||
config.useTopDownTraversal = true;
|
||||
config.maxIterations = GreedyRewriteConfig::kNoIterationLimit;
|
||||
config.maxIterations = GreedyRewriteConfig::kNoLimit;
|
||||
if (failed(applyPatternsAndFoldGreedily(getOperation(), std::move(patterns),
|
||||
config))) {
|
||||
return signalPassFailure();
|
||||
|
|
|
@ -384,7 +384,7 @@ class SimplifyShapeCalculationsPass
|
|||
// A single linear scan should suffice.
|
||||
GreedyRewriteConfig config;
|
||||
config.useTopDownTraversal = true;
|
||||
config.maxIterations = GreedyRewriteConfig::kNoIterationLimit;
|
||||
config.maxIterations = GreedyRewriteConfig::kNoLimit;
|
||||
if (failed(applyPatternsAndFoldGreedily(getOperation(), std::move(patterns),
|
||||
config))) {
|
||||
return signalPassFailure();
|
||||
|
|
Loading…
Reference in New Issue