forked from OSchip/llvm-project
[MLIR] Fix integration tests broken by D118285
[MLIR] Fix integration tests broken by D118285.
This commit is contained in:
parent
586759cee5
commit
970f94d051
|
@ -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 \
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue