From 748ef0569491f66b5ea7c2ca2c69d9645ea5b7ff Mon Sep 17 00:00:00 2001 From: maxime Date: Fri, 22 Nov 2024 16:54:11 -0500 Subject: [PATCH] add missing arguments to compiler --- crates/cubecl-cuda/tests/common.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/cubecl-cuda/tests/common.rs b/crates/cubecl-cuda/tests/common.rs index 813f91b8..537866bf 100644 --- a/crates/cubecl-cuda/tests/common.rs +++ b/crates/cubecl-cuda/tests/common.rs @@ -37,6 +37,7 @@ pub fn array() -> ArrayCompilationArg { pub fn compile(kernel: impl Kernel) -> String { let kernel = <::Compiler as Compiler>::compile( kernel.define(), + &Default::default(), ExecutionMode::Checked, ) .to_string();