Skip to content

Commit

Permalink
Update pocl xfails around modf/frexp
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Jul 2, 2015
1 parent 46832a4 commit 130115b
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions test/test_clmath.py
Expand Up @@ -209,10 +209,6 @@ def test_modf(ctx_factory):
context = ctx_factory()
queue = cl.CommandQueue(context)

if context.devices[0].platform.name == "Portable Computing Language":
# https://github.com/pocl/pocl/issues/198
pytest.skip("POCL doesn't seem to have modf")

for s in sizes:
a = cl_array.arange(queue, s, dtype=np.float32)/10
fracpart, intpart = clmath.modf(a)
Expand All @@ -233,8 +229,8 @@ def test_frexp(ctx_factory):
queue = cl.CommandQueue(context)

if context.devices[0].platform.name == "Portable Computing Language":
# https://github.com/pocl/pocl/issues/198
pytest.skip("POCL doesn't seem to have frexp")
# https://github.com/pocl/pocl/issues/202
pytest.xfail("POCL's frexp seems to have issues")

for s in sizes:
a = cl_array.arange(queue, s, dtype=np.float32)/10
Expand Down Expand Up @@ -265,10 +261,6 @@ def test_bessel(ctx_factory):
from pytest import skip
skip("no double precision support--cannot test bessel function")

if ctx.devices[0].platform.name == "Portable Computing Language":
# https://github.com/pocl/pocl/issues/198
pytest.skip("POCL doesn't seem to have frexp")

nterms = 30

try:
Expand Down

0 comments on commit 130115b

Please sign in to comment.