From ba58e990b59d92a8f30b48af8c80c992f718f1aa Mon Sep 17 00:00:00 2001
From: Daniel Bauer <daniel.j.bauer@fau.de>
Date: Tue, 21 Jan 2025 09:16:22 +0100
Subject: [PATCH] disable int32, CUDA function tests

---
 tests/kernelcreation/test_functions.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/kernelcreation/test_functions.py b/tests/kernelcreation/test_functions.py
index 90c061307..2fdae2280 100644
--- a/tests/kernelcreation/test_functions.py
+++ b/tests/kernelcreation/test_functions.py
@@ -137,7 +137,7 @@ def test_binary_functions(gen_config, xp, function_name, dtype):
 
 dtype_and_target_for_integer_funcs = pytest.mark.parametrize(
     "dtype, target",
-    list(product([np.int32], AVAIL_TARGETS))
+    list(product([np.int32], [t for t in AVAIL_TARGETS if t is not Target.CUDA]))
     + list(
         product(
             [np.int64],
-- 
GitLab