[Mlir-commits] [mlir] 3233c94 - [mlir][test] Fix SVE e2e test (#160269)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Tue Sep 23 04:25:59 PDT 2025
Author: Andrzej WarzyĆski
Date: 2025-09-23T12:25:55+01:00
New Revision: 3233c947895aa9bb5a27e8326eeee12c4fdaefe3
URL: https://github.com/llvm/llvm-project/commit/3233c947895aa9bb5a27e8326eeee12c4fdaefe3
DIFF: https://github.com/llvm/llvm-project/commit/3233c947895aa9bb5a27e8326eeee12c4fdaefe3.diff
LOG: [mlir][test] Fix SVE e2e test (#160269)
The original RUN line assumed that we are running on a host with SVE.
That's not necessarily the case. Failing bot:
* https://lab.llvm.org/buildbot/#/builders/121/builds/1661
Added:
Modified:
mlir/test/Integration/Dialect/Linalg/CPU/ArmSVE/pack-unpack-mmt4d.mlir
Removed:
################################################################################
diff --git a/mlir/test/Integration/Dialect/Linalg/CPU/ArmSVE/pack-unpack-mmt4d.mlir b/mlir/test/Integration/Dialect/Linalg/CPU/ArmSVE/pack-unpack-mmt4d.mlir
index f7d79a304acb0..6192ed345debf 100644
--- a/mlir/test/Integration/Dialect/Linalg/CPU/ArmSVE/pack-unpack-mmt4d.mlir
+++ b/mlir/test/Integration/Dialect/Linalg/CPU/ArmSVE/pack-unpack-mmt4d.mlir
@@ -2,7 +2,7 @@
// DEFINE: -transform-interpreter -test-transform-dialect-erase-schedule \
// DEFINE: -cse -canonicalize -test-lower-to-llvm
// DEFINE: %{entry_point} = main
-// DEFINE: %{run} = mlir-runner -e %{entry_point} -entry-point-result=void \
+// DEFINE: %{run} = %mcr_aarch64_cmd -e %{entry_point} -entry-point-result=void --march=aarch64 --mattr="+sve"\
// DEFINE: -shared-libs=%mlir_runner_utils,%mlir_c_runner_utils
// RUN: %{compile} | %{run} | FileCheck %s
More information about the Mlir-commits
mailing list