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

Exclude complex Hankel test on non-double platforms

parent 870fa050
No related branches found
No related tags found
No related merge requests found
......@@ -418,6 +418,10 @@ def test_hankel_01_complex(ctx_factory, ref_src):
ctx = ctx_factory()
queue = cl.CommandQueue(ctx)
if not has_double_support(ctx.devices[0]):
from pytest import skip
skip("no double precision support--cannot test complex bessel function")
n = 10**6
np.random.seed(11)
z = (
......
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