[Mlir-commits] [mlir] [MLIR][XeVM] gpu.printf test: use correct runtime. (PR #170754)

Sang Ik Lee llvmlistbot at llvm.org
Thu Dec 4 13:55:56 PST 2025


https://github.com/silee2 created https://github.com/llvm/llvm-project/pull/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.

>From bc9007291df1367a8c2e6655553822e5eb58f261 Mon Sep 17 00:00:00 2001
From: "Lee, Sang Ik" <sang.ik.lee at intel.com>
Date: Thu, 4 Dec 2025 21:51:54 +0000
Subject: [PATCH] [MLIR][XeVM] gpu.printf test: use correct runtime.

---
 mlir/test/Integration/Dialect/XeVM/GPU/gpu_printf.mlir | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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