Skip to content

Commit eb206e9

Browse files
authored
[mlir] Rename mlir-cpu-runner to mlir-runner (#123776)
With the removal of mlir-vulkan-runner (as part of #73457) in e7e3c45, mlir-cpu-runner is now the only runner for all CPU and GPU targets, and the "cpu" name has been misleading for some time already. This commit renames it to mlir-runner.
1 parent b4e81fd commit eb206e9

File tree

311 files changed

+387
-383
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

311 files changed

+387
-383
lines changed

mlir/docs/Dialects/GPU.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ parallelization. To enable parallelism, necessary transformations must be
107107
applied before utilizing this pipeline.
108108

109109
It's designed to provide a generic solution for NVVM targets, generating NVVM
110-
and LLVM dialect code compatible with `mlir-cpu-runner` or execution engine.
110+
and LLVM dialect code compatible with `mlir-runner` or execution engine.
111111

112112
#### Example:
113113

@@ -131,7 +131,7 @@ func.func @main() {
131131
The `gpu-lower-to-nvvm` pipeline compiles this input code to NVVM format as
132132
below. It provides customization options like specifying SM capability, PTX
133133
version, and optimization level. Once compiled, the resulting IR is ready for
134-
execution using `mlir-cpu-runner`. Alternatively, it can be translated into
134+
execution using `mlir-runner`. Alternatively, it can be translated into
135135
LLVM, expanding its utility within the system.
136136

137137
```

mlir/docs/ReleaseNotes.md

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ specifically, it is a snapshot of the MLIR development at the time of the releas
88

99
[TOC]
1010

11+
## LLVM 20
12+
13+
All the MLIR runners other than `mlir-cpu-runner` have been removed, as their functionality has been merged into it, and it has been renamed to `mlir-runner`.
14+
1115
## LLVM 18
1216

1317
### Properties: beyond attributes

mlir/docs/SPIRVToLLVMDialectConversion.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,7 @@ to LLVM ops. At the moment, SPIR-V module attributes are ignored.
817817

818818
## SPIR-V CPU Runner Tests
819819

820-
The `mlir-cpu-runner` has support for executing a `gpu` dialect kernel on the
820+
The `mlir-runner` has support for executing a `gpu` dialect kernel on the
821821
CPU via SPIR-V to LLVM dialect conversion. This is referred to as the "SPIR-V
822822
CPU Runner". The `--link-nested-modules` flag needs to be passed for this.
823823
Currently, only single-threaded kernels are supported.

mlir/lib/ExecutionEngine/VulkanRuntimeWrappers.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ extern "C" {
117117

118118
//===----------------------------------------------------------------------===//
119119
//
120-
// Wrappers intended for mlir-cpu-runner. Uses of GPU dialect operations get
120+
// Wrappers intended for mlir-runner. Uses of GPU dialect operations get
121121
// lowered to calls to these functions by GPUToLLVMConversionPass.
122122
//
123123
//===----------------------------------------------------------------------===//

mlir/test/CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ if (MLIR_INCLUDE_INTEGRATION_TESTS)
2222
"If set, arch-specific Arm integration tests are run with an emulator.")
2323
set(ARM_EMULATOR_OPTIONS "" CACHE STRING
2424
"If arch-specific Arm integration tests run emulated, pass these as parameters to the emulator.")
25-
set(ARM_EMULATOR_MLIR_CPU_RUNNER_EXECUTABLE "" CACHE STRING
26-
"If arch-specific Arm integration tests run emulated, use this Arm native mlir-cpu-runner.")
25+
set(ARM_EMULATOR_MLIR_RUNNER_EXECUTABLE "" CACHE STRING
26+
"If arch-specific Arm integration tests run emulated, use this Arm native mlir-runner.")
2727
set(ARM_EMULATOR_LLI_EXECUTABLE "" CACHE STRING
2828
"If arch-specific Arm integration tests run emulated, use this Arm native lli.")
2929
set(ARM_EMULATOR_UTILS_LIB_DIR "" CACHE STRING
@@ -135,7 +135,7 @@ set(MLIR_TEST_DEPENDS ${MLIR_TEST_DEPENDS}
135135
# useless binaries.
136136
if(LLVM_ENABLE_PIC AND TARGET ${LLVM_NATIVE_ARCH})
137137
list(APPEND MLIR_TEST_DEPENDS
138-
mlir-cpu-runner
138+
mlir-runner
139139
llc
140140
mlir_async_runtime
141141
mlir-capi-execution-engine-test

mlir/test/Integration/Dialect/Arith/CPU/test-wide-int-emulation-addi-i16.mlir

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33

44
// RUN: mlir-opt %s --convert-scf-to-cf --convert-cf-to-llvm --convert-vector-to-llvm \
55
// RUN: --convert-func-to-llvm --convert-arith-to-llvm | \
6-
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
6+
// RUN: mlir-runner -e entry -entry-point-result=void \
77
// RUN: --shared-libs=%mlir_c_runner_utils | \
88
// RUN: FileCheck %s --match-full-lines
99

1010
// RUN: mlir-opt %s --test-arith-emulate-wide-int="widest-int-supported=8" \
1111
// RUN: --convert-scf-to-cf --convert-cf-to-llvm --convert-vector-to-llvm \
1212
// RUN: --convert-func-to-llvm --convert-arith-to-llvm | \
13-
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
13+
// RUN: mlir-runner -e entry -entry-point-result=void \
1414
// RUN: --shared-libs=%mlir_c_runner_utils | \
1515
// RUN: FileCheck %s --match-full-lines
1616

mlir/test/Integration/Dialect/Arith/CPU/test-wide-int-emulation-cmpi-i16.mlir

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
// RUN: mlir-opt %s --convert-scf-to-cf --convert-cf-to-llvm --convert-vector-to-llvm \
66
// RUN: --convert-func-to-llvm --convert-arith-to-llvm | \
7-
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
7+
// RUN: mlir-runner -e entry -entry-point-result=void \
88
// RUN: --shared-libs=%mlir_c_runner_utils | \
99
// RUN: FileCheck %s --match-full-lines
1010

1111
// RUN: mlir-opt %s --test-arith-emulate-wide-int="widest-int-supported=8" \
1212
// RUN: --convert-scf-to-cf --convert-cf-to-llvm --convert-vector-to-llvm \
1313
// RUN: --convert-func-to-llvm --convert-arith-to-llvm | \
14-
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
14+
// RUN: mlir-runner -e entry -entry-point-result=void \
1515
// RUN: --shared-libs=%mlir_c_runner_utils | \
1616
// RUN: FileCheck %s --match-full-lines
1717

mlir/test/Integration/Dialect/Arith/CPU/test-wide-int-emulation-compare-results-i16.mlir

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// RUN: --convert-vector-to-scf --convert-scf-to-cf --convert-cf-to-llvm \
66
// RUN: --convert-vector-to-llvm --convert-func-to-llvm --convert-arith-to-llvm \
77
// RUN: --reconcile-unrealized-casts | \
8-
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
8+
// RUN: mlir-runner -e entry -entry-point-result=void \
99
// RUN: --shared-libs="%mlir_c_runner_utils,%mlir_runner_utils" | \
1010
// RUN: FileCheck %s
1111

mlir/test/Integration/Dialect/Arith/CPU/test-wide-int-emulation-constants-i16.mlir

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// RUN: mlir-opt %s --test-arith-emulate-wide-int="widest-int-supported=8" \
55
// RUN: --convert-vector-to-scf --convert-scf-to-cf --convert-cf-to-llvm --convert-vector-to-llvm \
66
// RUN: --convert-func-to-llvm --convert-arith-to-llvm --reconcile-unrealized-casts | \
7-
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
7+
// RUN: mlir-runner -e entry -entry-point-result=void \
88
// RUN: --shared-libs=%mlir_c_runner_utils | \
99
// RUN: FileCheck %s --match-full-lines --check-prefix=EMULATED
1010

mlir/test/Integration/Dialect/Arith/CPU/test-wide-int-emulation-max-min-i16.mlir

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
// RUN: mlir-opt %s --convert-scf-to-cf --convert-cf-to-llvm --convert-vector-to-llvm \
66
// RUN: --convert-func-to-llvm --convert-arith-to-llvm | \
7-
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
7+
// RUN: mlir-runner -e entry -entry-point-result=void \
88
// RUN: --shared-libs=%mlir_c_runner_utils | \
99
// RUN: FileCheck %s --match-full-lines
1010

1111
// RUN: mlir-opt %s --test-arith-emulate-wide-int="widest-int-supported=8" \
1212
// RUN: --convert-scf-to-cf --convert-cf-to-llvm --convert-vector-to-llvm \
1313
// RUN: --convert-func-to-llvm --convert-arith-to-llvm | \
14-
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
14+
// RUN: mlir-runner -e entry -entry-point-result=void \
1515
// RUN: --shared-libs=%mlir_c_runner_utils | \
1616
// RUN: FileCheck %s --match-full-lines
1717

mlir/test/Integration/Dialect/Arith/CPU/test-wide-int-emulation-muli-i16.mlir

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33

44
// RUN: mlir-opt %s --convert-scf-to-cf --convert-cf-to-llvm --convert-vector-to-llvm \
55
// RUN: --convert-func-to-llvm --convert-arith-to-llvm | \
6-
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
6+
// RUN: mlir-runner -e entry -entry-point-result=void \
77
// RUN: --shared-libs=%mlir_c_runner_utils | \
88
// RUN: FileCheck %s --match-full-lines
99

1010
// RUN: mlir-opt %s --test-arith-emulate-wide-int="widest-int-supported=8" \
1111
// RUN: --convert-scf-to-cf --convert-cf-to-llvm --convert-vector-to-llvm \
1212
// RUN: --convert-func-to-llvm --convert-arith-to-llvm | \
13-
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
13+
// RUN: mlir-runner -e entry -entry-point-result=void \
1414
// RUN: --shared-libs=%mlir_c_runner_utils | \
1515
// RUN: FileCheck %s --match-full-lines
1616

mlir/test/Integration/Dialect/Arith/CPU/test-wide-int-emulation-shli-i16.mlir

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33

44
// RUN: mlir-opt %s --convert-scf-to-cf --convert-cf-to-llvm --convert-vector-to-llvm \
55
// RUN: --convert-func-to-llvm --convert-arith-to-llvm | \
6-
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
6+
// RUN: mlir-runner -e entry -entry-point-result=void \
77
// RUN: --shared-libs=%mlir_c_runner_utils | \
88
// RUN: FileCheck %s --match-full-lines
99

1010
// RUN: mlir-opt %s --test-arith-emulate-wide-int="widest-int-supported=8" \
1111
// RUN: --convert-scf-to-cf --convert-cf-to-llvm --convert-vector-to-llvm \
1212
// RUN: --convert-func-to-llvm --convert-arith-to-llvm | \
13-
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
13+
// RUN: mlir-runner -e entry -entry-point-result=void \
1414
// RUN: --shared-libs=%mlir_c_runner_utils | \
1515
// RUN: FileCheck %s --match-full-lines
1616

mlir/test/Integration/Dialect/Arith/CPU/test-wide-int-emulation-shrsi-i16.mlir

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33

44
// RUN: mlir-opt %s --convert-scf-to-cf --convert-cf-to-llvm --convert-vector-to-llvm \
55
// RUN: --convert-func-to-llvm --convert-arith-to-llvm | \
6-
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
6+
// RUN: mlir-runner -e entry -entry-point-result=void \
77
// RUN: --shared-libs=%mlir_c_runner_utils | \
88
// RUN: FileCheck %s --match-full-lines
99

1010
// RUN: mlir-opt %s --test-arith-emulate-wide-int="widest-int-supported=8" \
1111
// RUN: --convert-scf-to-cf --convert-cf-to-llvm --convert-vector-to-llvm \
1212
// RUN: --convert-func-to-llvm --convert-arith-to-llvm | \
13-
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
13+
// RUN: mlir-runner -e entry -entry-point-result=void \
1414
// RUN: --shared-libs=%mlir_c_runner_utils | \
1515
// RUN: FileCheck %s --match-full-lines
1616

mlir/test/Integration/Dialect/Arith/CPU/test-wide-int-emulation-shrui-i16.mlir

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33

44
// RUN: mlir-opt %s --convert-scf-to-cf --convert-cf-to-llvm --convert-vector-to-llvm \
55
// RUN: --convert-func-to-llvm --convert-arith-to-llvm | \
6-
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
6+
// RUN: mlir-runner -e entry -entry-point-result=void \
77
// RUN: --shared-libs=%mlir_c_runner_utils | \
88
// RUN: FileCheck %s --match-full-lines
99

1010
// RUN: mlir-opt %s --test-arith-emulate-wide-int="widest-int-supported=8" \
1111
// RUN: --convert-scf-to-cf --convert-cf-to-llvm --convert-vector-to-llvm \
1212
// RUN: --convert-func-to-llvm --convert-arith-to-llvm | \
13-
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
13+
// RUN: mlir-runner -e entry -entry-point-result=void \
1414
// RUN: --shared-libs=%mlir_c_runner_utils | \
1515
// RUN: FileCheck %s --match-full-lines
1616

mlir/test/Integration/Dialect/Arith/CPU/test-wide-int-emulation-sitofp-i32.mlir

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33

44
// RUN: mlir-opt %s --convert-scf-to-cf --convert-cf-to-llvm --convert-vector-to-llvm \
55
// RUN: --convert-func-to-llvm --convert-arith-to-llvm | \
6-
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
6+
// RUN: mlir-runner -e entry -entry-point-result=void \
77
// RUN: --shared-libs=%mlir_c_runner_utils | \
88
// RUN: FileCheck %s --match-full-lines
99

1010
// RUN: mlir-opt %s --test-arith-emulate-wide-int="widest-int-supported=16" \
1111
// RUN: --convert-scf-to-cf --convert-cf-to-llvm --convert-vector-to-llvm \
1212
// RUN: --convert-func-to-llvm --convert-arith-to-llvm | \
13-
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
13+
// RUN: mlir-runner -e entry -entry-point-result=void \
1414
// RUN: --shared-libs=%mlir_c_runner_utils | \
1515
// RUN: FileCheck %s --match-full-lines
1616

mlir/test/Integration/Dialect/Arith/CPU/test-wide-int-emulation-uitofp-i32.mlir

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33

44
// RUN: mlir-opt %s --convert-scf-to-cf --convert-cf-to-llvm --convert-vector-to-llvm \
55
// RUN: --convert-func-to-llvm --convert-arith-to-llvm | \
6-
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
6+
// RUN: mlir-runner -e entry -entry-point-result=void \
77
// RUN: --shared-libs=%mlir_c_runner_utils | \
88
// RUN: FileCheck %s --match-full-lines
99

1010
// RUN: mlir-opt %s --test-arith-emulate-wide-int="widest-int-supported=16" \
1111
// RUN: --convert-scf-to-cf --convert-cf-to-llvm --convert-vector-to-llvm \
1212
// RUN: --convert-func-to-llvm --convert-arith-to-llvm | \
13-
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
13+
// RUN: mlir-runner -e entry -entry-point-result=void \
1414
// RUN: --shared-libs=%mlir_c_runner_utils | \
1515
// RUN: FileCheck %s --match-full-lines
1616

mlir/test/Integration/Dialect/Async/CPU/microbench-linalg-async-parallel-for.mlir

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// RUN: -convert-arith-to-llvm \
1515
// RUN: -convert-cf-to-llvm \
1616
// RUN: -reconcile-unrealized-casts \
17-
// RUN: | mlir-cpu-runner \
17+
// RUN: | mlir-runner \
1818
// RUN: -e entry -entry-point-result=void -O3 \
1919
// RUN: -shared-libs=%mlir_runner_utils \
2020
// RUN: -shared-libs=%mlir_c_runner_utils\
@@ -30,7 +30,7 @@
3030
// RUN: -convert-arith-to-llvm \
3131
// RUN: -convert-cf-to-llvm \
3232
// RUN: -reconcile-unrealized-casts \
33-
// RUN: | mlir-cpu-runner \
33+
// RUN: | mlir-runner \
3434
// RUN: -e entry -entry-point-result=void -O3 \
3535
// RUN: -shared-libs=%mlir_runner_utils \
3636
// RUN: -shared-libs=%mlir_c_runner_utils\

mlir/test/Integration/Dialect/Async/CPU/microbench-scf-async-parallel-for.mlir

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// RUN: -convert-arith-to-llvm \
1515
// RUN: -convert-cf-to-llvm \
1616
// RUN: -reconcile-unrealized-casts \
17-
// RUN: | mlir-cpu-runner \
17+
// RUN: | mlir-runner \
1818
// RUN: -e entry -entry-point-result=void -O3 \
1919
// RUN: -shared-libs=%mlir_runner_utils \
2020
// RUN: -shared-libs=%mlir_c_runner_utils\
@@ -37,7 +37,7 @@
3737
// RUN: -convert-arith-to-llvm \
3838
// RUN: -convert-cf-to-llvm \
3939
// RUN: -reconcile-unrealized-casts \
40-
// RUN: | mlir-cpu-runner \
40+
// RUN: | mlir-runner \
4141
// RUN: -e entry -entry-point-result=void -O3 \
4242
// RUN: -shared-libs=%mlir_runner_utils \
4343
// RUN: -shared-libs=%mlir_c_runner_utils\
@@ -53,7 +53,7 @@
5353
// RUN: -convert-arith-to-llvm \
5454
// RUN: -convert-cf-to-llvm \
5555
// RUN: -reconcile-unrealized-casts \
56-
// RUN: | mlir-cpu-runner \
56+
// RUN: | mlir-runner \
5757
// RUN: -e entry -entry-point-result=void -O3 \
5858
// RUN: -shared-libs=%mlir_runner_utils \
5959
// RUN: -shared-libs=%mlir_c_runner_utils\

mlir/test/Integration/Dialect/Async/CPU/test-async-parallel-for-1d.mlir

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// RUN: -convert-arith-to-llvm \
1212
// RUN: -convert-cf-to-llvm \
1313
// RUN: -reconcile-unrealized-casts \
14-
// RUN: | mlir-cpu-runner \
14+
// RUN: | mlir-runner \
1515
// RUN: -e entry -entry-point-result=void -O0 \
1616
// RUN: -shared-libs=%mlir_runner_utils \
1717
// RUN: -shared-libs=%mlir_async_runtime\
@@ -29,7 +29,7 @@
2929
// RUN: -convert-arith-to-llvm \
3030
// RUN: -convert-cf-to-llvm \
3131
// RUN: -reconcile-unrealized-casts \
32-
// RUN: | mlir-cpu-runner \
32+
// RUN: | mlir-runner \
3333
// RUN: -e entry -entry-point-result=void -O0 \
3434
// RUN: -shared-libs=%mlir_runner_utils \
3535
// RUN: -shared-libs=%mlir_async_runtime\
@@ -50,7 +50,7 @@
5050
// RUN: -convert-arith-to-llvm \
5151
// RUN: -convert-cf-to-llvm \
5252
// RUN: -reconcile-unrealized-casts \
53-
// RUN: | mlir-cpu-runner \
53+
// RUN: | mlir-runner \
5454
// RUN: -e entry -entry-point-result=void -O0 \
5555
// RUN: -shared-libs=%mlir_runner_utils \
5656
// RUN: -shared-libs=%mlir_async_runtime\

mlir/test/Integration/Dialect/Async/CPU/test-async-parallel-for-2d.mlir

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// RUN: -convert-arith-to-llvm \
1111
// RUN: -convert-cf-to-llvm \
1212
// RUN: -reconcile-unrealized-casts \
13-
// RUN: | mlir-cpu-runner \
13+
// RUN: | mlir-runner \
1414
// RUN: -e entry -entry-point-result=void -O0 \
1515
// RUN: -shared-libs=%mlir_runner_utils \
1616
// RUN: -shared-libs=%mlir_async_runtime\
@@ -27,7 +27,7 @@
2727
// RUN: -convert-arith-to-llvm \
2828
// RUN: -convert-cf-to-llvm \
2929
// RUN: -reconcile-unrealized-casts \
30-
// RUN: | mlir-cpu-runner \
30+
// RUN: | mlir-runner \
3131
// RUN: -e entry -entry-point-result=void -O0 \
3232
// RUN: -shared-libs=%mlir_runner_utils \
3333
// RUN: -shared-libs=%mlir_async_runtime\
@@ -47,7 +47,7 @@
4747
// RUN: -convert-arith-to-llvm \
4848
// RUN: -convert-cf-to-llvm \
4949
// RUN: -reconcile-unrealized-casts \
50-
// RUN: | mlir-cpu-runner \
50+
// RUN: | mlir-runner \
5151
// RUN: -e entry -entry-point-result=void -O0 \
5252
// RUN: -shared-libs=%mlir_runner_utils \
5353
// RUN: -shared-libs=%mlir_async_runtime\

mlir/test/Integration/Dialect/Complex/CPU/correctness.mlir

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// RUN: -convert-vector-to-llvm -convert-complex-to-llvm \
66
// RUN: -convert-func-to-llvm -convert-arith-to-llvm -convert-cf-to-llvm \
77
// RUN: -reconcile-unrealized-casts |\
8-
// RUN: mlir-cpu-runner \
8+
// RUN: mlir-runner \
99
// RUN: -e entry -entry-point-result=void \
1010
// RUN: -shared-libs=%mlir_c_runner_utils |\
1111
// RUN: FileCheck %s

mlir/test/Integration/Dialect/ControlFlow/assert.mlir

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// RUN: mlir-opt %s -test-cf-assert \
22
// RUN: -convert-func-to-llvm -convert-arith-to-llvm | \
3-
// RUN: mlir-cpu-runner -e main -entry-point-result=void | \
3+
// RUN: mlir-runner -e main -entry-point-result=void | \
44
// RUN: FileCheck %s
55

66
func.func @main() {

mlir/test/Integration/Dialect/LLVMIR/CPU/X86/test-inline-asm-vector.mlir

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// RUN: mlir-opt %s -convert-vector-to-scf -convert-scf-to-cf -convert-vector-to-llvm -convert-func-to-llvm -convert-arith-to-llvm -convert-cf-to-llvm -reconcile-unrealized-casts | \
2-
// RUN: mlir-cpu-runner -e entry_point_with_all_constants -entry-point-result=void \
2+
// RUN: mlir-runner -e entry_point_with_all_constants -entry-point-result=void \
33
// RUN: -shared-libs=%mlir_c_runner_utils
44

55
module {

mlir/test/Integration/Dialect/LLVMIR/CPU/X86/test-inline-asm.mlir

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: mlir-cpu-runner %s -e entry -entry-point-result=void \
1+
// RUN: mlir-runner %s -e entry -entry-point-result=void \
22
// RUN: -shared-libs=%mlir_c_runner_utils | \
33
// RUN: FileCheck %s
44

mlir/test/Integration/Dialect/LLVMIR/CPU/test-complex-sparse-constant.mlir

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// RUN: mlir-opt %s --finalize-memref-to-llvm | \
2-
// RUN: mlir-cpu-runner -e entry -entry-point-result=void
2+
// RUN: mlir-runner -e entry -entry-point-result=void
33

44
//
55
// Code should not crash on the complex32 sparse constant.

mlir/test/Integration/Dialect/LLVMIR/CPU/test-vector-reductions-fp.mlir

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: mlir-cpu-runner %s -e entry -entry-point-result=void \
1+
// RUN: mlir-runner %s -e entry -entry-point-result=void \
22
// RUN: -shared-libs=%mlir_c_runner_utils | \
33
// RUN: FileCheck %s
44

0 commit comments

Comments
 (0)