From 7d676ebf5caa1a7136fddc1a50ed1b4bba1aa22d Mon Sep 17 00:00:00 2001 From: Syam Gadde <gadde@biac.duke.edu> Date: Thu, 13 Jul 2017 16:38:10 -0400 Subject: [PATCH] Don't run double-precision tests when you can't. --- test/test_algorithm.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/test/test_algorithm.py b/test/test_algorithm.py index 676390bd..5076e2b1 100644 --- a/test/test_algorithm.py +++ b/test/test_algorithm.py @@ -906,6 +906,10 @@ def test_bitonic_sort(ctx_factory, size, dtype): and dtype == np.float64): pytest.xfail("Double precision bitonic sort doesn't work on POCL") + if dtype == np.float64 and not has_double_support(dev): + from pytest import skip + skip("double precision not supported on %s" % dev) + import pyopencl.clrandom as clrandom from pyopencl.bitonic_sort import BitonicSort @@ -950,6 +954,10 @@ def test_bitonic_argsort(ctx_factory, size, dtype): and dtype == np.float64): pytest.xfail("Double precision bitonic sort doesn't work on POCL") + if dtype == np.float64 and not has_double_support(dev): + from pytest import skip + skip("double precision not supported on %s" % dev) + import pyopencl.clrandom as clrandom from pyopencl.bitonic_sort import BitonicSort -- GitLab