From 6cc251c6487df4a83aca2bfa5a91856d71354cbd Mon Sep 17 00:00:00 2001 From: Matt Wala Date: Thu, 13 Sep 2018 17:42:19 -0500 Subject: [PATCH] Remove POCL-related xfails These are no longer needed, as any recent version counts arguments correctly. --- test/test_tree.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/test/test_tree.py b/test/test_tree.py index 1b2f7f4..d6fe9f8 100644 --- a/test/test_tree.py +++ b/test/test_tree.py @@ -93,12 +93,6 @@ def run_build_test(builder, queue, dims, dtype, nparticles, do_plot, else: raise RuntimeError("unsupported dtype: %s" % dtype) - if (dtype == np.float32 - and dims == 2 - and queue.device.platform.name == "Portable Computing Language"): - # arg list lenghts disagree - pytest.xfail("2D float doesn't work on POCL") - logger.info(75*"-") if max_particles_in_box is not None: logger.info("%dD %s - %d particles - max %d per box - %s" % ( @@ -997,12 +991,6 @@ def test_space_invader_query(ctx_getter, dims, dtype, do_plot=False): ctx = ctx_getter() queue = cl.CommandQueue(ctx) - if (dtype == np.float32 - and dims == 2 - and queue.device.platform.name == "Portable Computing Language"): - # arg list lenghts disagree - pytest.xfail("2D float doesn't work on POCL") - dtype = np.dtype(dtype) nparticles = 10**5 -- GitLab