[MLIR] Fix integration tests broken by D118285

[MLIR] Fix integration tests broken by D118285.
This commit is contained in:
Uday Bondhugula 2022-01-27 13:00:19 +05:30
parent 586759cee5
commit 970f94d051
5 changed files with 8 additions and 8 deletions

View File

@ -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 \

View File

@ -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 \

View File

@ -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 \

View File

@ -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 \

View File

@ -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)