From 412892b4a05f8beb51393038dd685e1233e2f359 Mon Sep 17 00:00:00 2001 From: Martin Weigert <mweigert@mpi-cbg.de> Date: Tue, 12 Feb 2019 23:20:37 +0100 Subject: [PATCH] Remove device esclusion (used for testing) --- pyopencl/tools.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pyopencl/tools.py b/pyopencl/tools.py index ad0ff94a..9dce9216 100644 --- a/pyopencl/tools.py +++ b/pyopencl/tools.py @@ -275,8 +275,6 @@ def pytest_generate_tests_for_pyopencl(metafunc): arg_dict = {"platform": platform} for device in plat_devs: - if "Iris" in device.name: continue - if "Intel" in device.name: continue arg_dict["device"] = device arg_dict["ctx_factory"] = ContextFactory(device) arg_dict["ctx_getter"] = ContextFactory(device) -- GitLab