[Mlir-commits] [mlir] 970f94d - [MLIR] Fix integration tests broken by D118285
Uday Bondhugula
llvmlistbot at llvm.org
Wed Jan 26 23:31:12 PST 2022
Author: Uday Bondhugula
Date: 2022-01-27T13:00:30+05:30
New Revision: 970f94d05193024bb6082a77dc10deaaf78afc0b
URL: https://github.com/llvm/llvm-project/commit/970f94d05193024bb6082a77dc10deaaf78afc0b
DIFF: https://github.com/llvm/llvm-project/commit/970f94d05193024bb6082a77dc10deaaf78afc0b.diff
LOG: [MLIR] Fix integration tests broken by D118285
[MLIR] Fix integration tests broken by D118285.
Added:
Modified:
mlir/test/Integration/Dialect/Async/CPU/microbench-linalg-async-parallel-for.mlir
mlir/test/Integration/Dialect/Async/CPU/microbench-scf-async-parallel-for.mlir
mlir/test/Integration/Dialect/Async/CPU/test-async-parallel-for-1d.mlir
mlir/test/Integration/Dialect/Standard/CPU/test-ceil-floor-pos-neg.mlir
mlir/test/python/integration/dialects/linalg/opsrun.py
Removed:
################################################################################
diff --git a/mlir/test/Integration/Dialect/Async/CPU/microbench-linalg-async-parallel-for.mlir b/mlir/test/Integration/Dialect/Async/CPU/microbench-linalg-async-parallel-for.mlir
index 7c50fbddcd227..b6ae33b0e2190 100644
--- a/mlir/test/Integration/Dialect/Async/CPU/microbench-linalg-async-parallel-for.mlir
+++ b/mlir/test/Integration/Dialect/Async/CPU/microbench-linalg-async-parallel-for.mlir
@@ -7,7 +7,7 @@
// RUN: -convert-async-to-llvm \
// RUN: -convert-scf-to-std \
// RUN: -arith-expand \
-// RUN: -std-expand \
+// RUN: -memref-expand \
// RUN: -convert-vector-to-llvm \
// RUN: -convert-memref-to-llvm \
// RUN: -convert-std-to-llvm \
diff --git a/mlir/test/Integration/Dialect/Async/CPU/microbench-scf-async-parallel-for.mlir b/mlir/test/Integration/Dialect/Async/CPU/microbench-scf-async-parallel-for.mlir
index 3537616d839de..4040e9db07efd 100644
--- a/mlir/test/Integration/Dialect/Async/CPU/microbench-scf-async-parallel-for.mlir
+++ b/mlir/test/Integration/Dialect/Async/CPU/microbench-scf-async-parallel-for.mlir
@@ -7,7 +7,7 @@
// RUN: -convert-linalg-to-loops \
// RUN: -convert-scf-to-std \
// RUN: -arith-expand \
-// RUN: -std-expand \
+// RUN: -memref-expand \
// RUN: -convert-vector-to-llvm \
// RUN: -convert-memref-to-llvm \
// RUN: -convert-std-to-llvm \
@@ -28,7 +28,7 @@
// RUN: -convert-linalg-to-loops \
// RUN: -convert-scf-to-std \
// RUN: -arith-expand \
-// RUN: -std-expand \
+// RUN: -memref-expand \
// RUN: -convert-vector-to-llvm \
// RUN: -convert-memref-to-llvm \
// RUN: -convert-std-to-llvm \
diff --git a/mlir/test/Integration/Dialect/Async/CPU/test-async-parallel-for-1d.mlir b/mlir/test/Integration/Dialect/Async/CPU/test-async-parallel-for-1d.mlir
index 49758266dafd7..4394aac514864 100644
--- a/mlir/test/Integration/Dialect/Async/CPU/test-async-parallel-for-1d.mlir
+++ b/mlir/test/Integration/Dialect/Async/CPU/test-async-parallel-for-1d.mlir
@@ -6,7 +6,7 @@
// RUN: -convert-scf-to-std \
// RUN: -convert-memref-to-llvm \
// RUN: -arith-expand \
-// RUN: -std-expand \
+// RUN: -memref-expand \
// RUN: -convert-std-to-llvm \
// RUN: -reconcile-unrealized-casts \
// RUN: | mlir-cpu-runner \
@@ -22,7 +22,7 @@
// RUN: -convert-scf-to-std \
// RUN: -convert-memref-to-llvm \
// RUN: -arith-expand \
-// RUN: -std-expand \
+// RUN: -memref-expand \
// RUN: -convert-std-to-llvm \
// RUN: -reconcile-unrealized-casts \
// RUN: | mlir-cpu-runner \
@@ -41,7 +41,7 @@
// RUN: -convert-scf-to-std \
// RUN: -convert-memref-to-llvm \
// RUN: -arith-expand \
-// RUN: -std-expand \
+// RUN: -memref-expand \
// RUN: -convert-std-to-llvm \
// RUN: -reconcile-unrealized-casts \
// RUN: | mlir-cpu-runner \
diff --git a/mlir/test/Integration/Dialect/Standard/CPU/test-ceil-floor-pos-neg.mlir b/mlir/test/Integration/Dialect/Standard/CPU/test-ceil-floor-pos-neg.mlir
index d9c36c807d032..6c32db1f6fcae 100644
--- a/mlir/test/Integration/Dialect/Standard/CPU/test-ceil-floor-pos-neg.mlir
+++ b/mlir/test/Integration/Dialect/Standard/CPU/test-ceil-floor-pos-neg.mlir
@@ -1,5 +1,5 @@
// RUN: mlir-opt %s -convert-vector-to-scf -lower-affine -convert-scf-to-std \
-// RUN: -std-expand -arith-expand -convert-vector-to-llvm \
+// RUN: -memref-expand -arith-expand -convert-vector-to-llvm \
// RUN: -convert-memref-to-llvm -convert-std-to-llvm \
// RUN: -reconcile-unrealized-casts | \
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
diff --git a/mlir/test/python/integration/dialects/linalg/opsrun.py b/mlir/test/python/integration/dialects/linalg/opsrun.py
index d8b9d978c3aeb..e0f00168f1766 100644
--- a/mlir/test/python/integration/dialects/linalg/opsrun.py
+++ b/mlir/test/python/integration/dialects/linalg/opsrun.py
@@ -128,7 +128,7 @@ def transform(module, boilerplate):
boilerplate)
pm = PassManager.parse(
"builtin.func(convert-linalg-to-loops, lower-affine, " +
- "convert-scf-to-std, arith-expand, std-expand), convert-vector-to-llvm," +
+ "convert-scf-to-std, arith-expand, memref-expand), convert-vector-to-llvm," +
"convert-memref-to-llvm, convert-std-to-llvm," +
"reconcile-unrealized-casts")
pm.run(mod)
More information about the Mlir-commits
mailing list