From fe9485a07ae3bef75b97deddf083ffb402f81a0a Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Fri, 20 Mar 2026 15:06:49 -0300 Subject: [PATCH] Remove deprecation warning in native test --- test/native.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/native.jl b/test/native.jl index 320bbacf..eeab2805 100644 --- a/test/native.jl +++ b/test/native.jl @@ -44,9 +44,9 @@ end end end - job, _ = Native.create_job(mod.outer, (Int, Symbol)) + job, _ = Native.create_job(mod.outer, (Int, Symbol); validate=false) JuliaContext() do ctx - ir, meta = GPUCompiler.compile(:llvm, job; validate=false) + ir, meta = GPUCompiler.compile(:llvm, job) meth = only(methods(mod.outer, (Int, Symbol)))