Skip to content
Snippets Groups Projects
Commit 6fe0943d authored by Isuru Fernando's avatar Isuru Fernando Committed by Andreas Klöckner
Browse files

Skip ranlux test for intel opencl

parent c3ed84ac
No related branches found
No related tags found
No related merge requests found
...@@ -739,6 +739,11 @@ def test_random_float_in_range(ctx_factory, rng_class, ary_size, plot_hist=False ...@@ -739,6 +739,11 @@ def test_random_float_in_range(ctx_factory, rng_class, ary_size, plot_hist=False
pytest.xfail("ranlux test fails on POCL + Nvidia," pytest.xfail("ranlux test fails on POCL + Nvidia,"
"at least the Titan V, as of pocl 1.6, 2021-01-20") "at least the Titan V, as of pocl 1.6, 2021-01-20")
if device.platform.vendor == "Intel(R) Corporation" \
and rng_class is RanluxGenerator:
pytest.xfail("compiling ranlux kernel causes a segfault on "
"Intel CPU runtime as of 2022-02-13")
if has_double_support(context.devices[0]): if has_double_support(context.devices[0]):
dtypes = [np.float32, np.float64] dtypes = [np.float32, np.float64]
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