[Mlir-commits] [mlir] b8ddbc4 - [MLIR][XeVM] gpu.printf test: use correct runtime. (#170754)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Mon Dec 8 08:15:01 PST 2025
Author: Sang Ik Lee
Date: 2025-12-08T08:14:56-08:00
New Revision: b8ddbc4f0398e363ba74276b8c9e299110d1b6e8
URL: https://github.com/llvm/llvm-project/commit/b8ddbc4f0398e363ba74276b8c9e299110d1b6e8
DIFF: https://github.com/llvm/llvm-project/commit/b8ddbc4f0398e363ba74276b8c9e299110d1b6e8.diff
LOG: [MLIR][XeVM] gpu.printf test: use correct runtime. (#170754)
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.
Added:
Modified:
mlir/test/Integration/Dialect/XeVM/GPU/gpu_printf.mlir
Removed:
################################################################################
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 \
More information about the Mlir-commits
mailing list