diff --git a/loopy/auto_test.py b/loopy/auto_test.py index 04de9139cc15f29b52495edaee17b72d15668fb5..435eb80a6d83c5b7ef23c69da68a10062b9a8433 100644 --- a/loopy/auto_test.py +++ b/loopy/auto_test.py @@ -303,6 +303,10 @@ def _enumerate_cl_devices_for_ref_test(): from warnings import warn for pf in cl.get_platforms(): + if pf.name == "Portable Computing Language": + # pocl not mature enough yet, sadly + continue + for dev in pf.get_devices(): if dev.type & cl.device_type.CPU: cpu_devs.append(dev)