From 738f0b07e876f6deb802a65b179f36abbff0e6f3 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Tue, 9 Jul 2024 15:43:19 -0500 Subject: [PATCH] Skip test_atomic_load on pocl https://github.com/pocl/pocl/issues/1509 --- test/test_loopy.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/test_loopy.py b/test/test_loopy.py index a7497492b..e9aa47ef4 100644 --- a/test/test_loopy.py +++ b/test/test_loopy.py @@ -902,7 +902,9 @@ def test_atomic_load(ctx_factory, dtype): ctx = ctx_factory() queue = cl.CommandQueue(ctx) - dtype = np.float64 + if ctx.devices[0].platform.vendor == "The pocl project": + pytest.skip("https://github.com/pocl/pocl/issues/1509") + n = 10 knl = lp.make_kernel(