From 4921f21352836650808b2312eb4893bb0959c310 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Tue, 13 Dec 2016 02:50:41 -0600 Subject: [PATCH] Skip another test on pocl that will become troublesome with isl 0.18 --- test/test_linalg.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test_linalg.py b/test/test_linalg.py index 96b95cf4b..772d536d1 100644 --- a/test/test_linalg.py +++ b/test/test_linalg.py @@ -192,6 +192,10 @@ def test_plain_matrix_mul(ctx_factory): def test_variable_size_matrix_mul(ctx_factory): ctx = ctx_factory() + if (not ctx.devices[0].image_support + or ctx.devices[0].platform.name == "Portable Computing Language"): + pytest.skip("crashes on pocl") + n = get_suitable_size(ctx) knl = lp.make_kernel( -- GitLab