Skip to content
Snippets Groups Projects
Commit e6623cb9 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Blacklist Intel CPU CL as well

parent e8707f94
No related branches found
No related tags found
No related merge requests found
from __future__ import division from __future__ import division, absolute_import
from __future__ import absolute_import
from six.moves import range
from six.moves import zip
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __copyright__ = "Copyright (C) 2012 Andreas Kloeckner"
...@@ -25,6 +22,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN ...@@ -25,6 +22,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE. THE SOFTWARE.
""" """
from six.moves import range, zip
from pytools import Record from pytools import Record
from warnings import warn from warnings import warn
...@@ -326,6 +324,10 @@ def _enumerate_cl_devices_for_ref_test(): ...@@ -326,6 +324,10 @@ def _enumerate_cl_devices_for_ref_test():
# Sorry, AMD, your CPU CL has gotten too crashy of late. # Sorry, AMD, your CPU CL has gotten too crashy of late.
# (Feb 2016) # (Feb 2016)
continue continue
if "Intel" in dev.platform.vendor:
# Sorry, Intel, your CPU CL has gotten too crashy of late.
# (Feb 2016)
continue
cpu_devs.append(dev) cpu_devs.append(dev)
else: else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment