[Mlir-commits] [mlir] [MLIR][XeVM] gpu.printf test: use correct runtime. (PR #170754)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Thu Dec 4 13:56:30 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-mlir-gpu
Author: Sang Ik Lee (silee2)
<details>
<summary>Changes</summary>
gpu printf test was not using the runtime required by lit.local.cfg
All other tests in the directory are correctly using level zero runtime.
But gpu printf test is using sycl runtime.
---
Full diff: https://github.com/llvm/llvm-project/pull/170754.diff
1 Files Affected:
- (modified) mlir/test/Integration/Dialect/XeVM/GPU/gpu_printf.mlir (+1-1)
``````````diff
diff --git a/mlir/test/Integration/Dialect/XeVM/GPU/gpu_printf.mlir b/mlir/test/Integration/Dialect/XeVM/GPU/gpu_printf.mlir
index edf8775c72418..5ed2148a7258a 100644
--- a/mlir/test/Integration/Dialect/XeVM/GPU/gpu_printf.mlir
+++ b/mlir/test/Integration/Dialect/XeVM/GPU/gpu_printf.mlir
@@ -3,7 +3,7 @@
// RUN: | mlir-opt -convert-scf-to-cf -convert-cf-to-llvm -convert-vector-to-llvm -convert-arith-to-llvm \
// RUN: | mlir-opt -gpu-to-llvm -reconcile-unrealized-casts -cse -gpu-module-to-binary \
// RUN: | mlir-runner \
-// RUN: --shared-libs=%mlir_sycl_runtime \
+// RUN: --shared-libs=%mlir_levelzero_runtime \
// RUN: --shared-libs=%mlir_runner_utils \
// RUN: --shared-libs=%mlir_c_runner_utils \
// RUN: --entry-point-result=void \
``````````
</details>
https://github.com/llvm/llvm-project/pull/170754
More information about the Mlir-commits
mailing list