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

Avoid exercising image functionality on Intel OpenCL (crashy!).

parent a11c309f
No related branches found
No related tags found
No related merge requests found
......@@ -135,7 +135,8 @@ class TestCL:
lambda info: evt.get_profiling_info(info),
try_attr_form=False)
if device.image_support:
# crashes on intel...
if device.image_support and platform.vendor != "Intel(R) Corporation":
smp = cl.Sampler(ctx, True,
cl.addressing_mode.CLAMP,
cl.filter_mode.NEAREST)
......@@ -232,6 +233,10 @@ class TestCL:
from py.test import skip
skip("images not supported on %s" % device)
if device.platform.vendor == "Intel(R) Corporation":
from py.test import skip
skip("images crashy on %s" % device)
prg = cl.Program(context, """
__kernel void copy_image(
__global float *dest,
......
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