From 63551371fa7580f3167eece48d00e83847c97fb8 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Fri, 3 Jun 2016 09:38:10 -0500 Subject: [PATCH] Add pocl bug links --- test/test_enqueue_copy.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test_enqueue_copy.py b/test/test_enqueue_copy.py index 6e760ea7..2b821e72 100644 --- a/test/test_enqueue_copy.py +++ b/test/test_enqueue_copy.py @@ -43,6 +43,7 @@ def test_enqueue_copy_rect_2d(ctx_factory, honor_skip=True): queue = cl.CommandQueue(ctx) if honor_skip and ctx.devices[0].platform.name == "Portable Computing Language": + # https://github.com/pocl/pocl/issues/353 pytest.skip("POCL's rectangular copies crash") ary_in_shp = 256, 128 # Entire array shape from which sub-array copied to device @@ -127,6 +128,7 @@ def test_enqueue_copy_rect_3d(ctx_factory, honor_skip=False): queue = cl.CommandQueue(ctx) if honor_skip and ctx.devices[0].platform.name == "Portable Computing Language": + # https://github.com/pocl/pocl/issues/353 pytest.skip("POCL's rectangular copies crash") ary_in_shp = 256, 128, 31 # array shape from which sub-array copied to device -- GitLab