Newer
Older
from __future__ import division
import pytools.test
def have_cl():
try:
import pyopencl
return True
except:
return False
if have_cl():
import pyopencl.array as cl_array
import pyopencl as cl
import pyopencl.clmath as clmath
from pyopencl.tools import pytest_generate_tests_for_pyopencl \
as pytest_generate_tests
from pyopencl.characterize import has_double_support
sizes = [10, 128, 1<<10, 1<<11, 1<<13]
numpy_func_names = {
"asin": "arcsin",
"acos": "arccos",
"atan": "arctan",
}
def make_unary_function_test(name, limits=(0, 1), threshold=0, use_complex=False):
a = float(a)
b = float(b)
def test(ctx_factory):
context = ctx_factory()
queue = cl.CommandQueue(context)
gpu_func = getattr(clmath, name)
if use_complex:
dtypes = [np.float32, np.float64, np.complex64, np.complex128]
else:
dtypes = [np.float32, np.float64]
if use_complex:
dtypes = [np.float32, np.complex64]
else:
dtypes = [np.float32]
dtype = np.dtype(dtype)
args = cl_array.arange(queue, a, b, (b-a)/s, dtype=dtype)
if dtype.kind == "c":
args = args+dtype.type(1j)*args
gpu_results = gpu_func(args).get()
cpu_results = cpu_func(args.get())
my_threshold = threshold
if dtype.kind == "c" and isinstance(use_complex, float):
my_threshold = use_complex
assert (max_err <= my_threshold).all(), \
(max_err, name, dtype)
return pytools.test.mark_test.opencl(test)
if have_cl():
test_ceil = make_unary_function_test("ceil", (-10, 10))
test_floor = make_unary_function_test("ceil", (-10, 10))
test_fabs = make_unary_function_test("fabs", (-10, 10))
test_exp = make_unary_function_test("exp", (-3, 3), 1e-5, use_complex=True)
test_log = make_unary_function_test("log", (1e-5, 1), 1e-6, use_complex=True)
test_log10 = make_unary_function_test("log10", (1e-5, 1), 5e-7)
test_sqrt = make_unary_function_test("sqrt", (1e-5, 1), 3e-7, use_complex=True)
test_sin = make_unary_function_test("sin", (-10, 10), 2e-7, use_complex=2e-2)
test_cos = make_unary_function_test("cos", (-10, 10), 2e-7, use_complex=2e-2)
test_asin = make_unary_function_test("asin", (-0.9, 0.9), 5e-7)
test_acos = make_unary_function_test("acos", (-0.9, 0.9), 5e-7)
test_tan = make_unary_function_test("tan",
(-math.pi/2 + 0.1, math.pi/2 - 0.1), 1e-5, use_complex=True)
test_atan = make_unary_function_test("atan", (-10, 10), 2e-7)
test_sinh = make_unary_function_test("sinh", (-3, 3), 1e-6, use_complex=2e-3)
test_cosh = make_unary_function_test("cosh", (-3, 3), 1e-6, use_complex=2e-3)
test_tanh = make_unary_function_test("tanh", (-3, 3), 2e-6, use_complex=True)
def test_fmod(ctx_factory):
context = ctx_factory()
queue = cl.CommandQueue(context)
for s in sizes:
a = cl_array.arange(queue, s, dtype=np.float32)/10
a2 = cl_array.arange(queue, s, dtype=np.float32)/45.2 + 0.1
b = clmath.fmod(a, a2)
a = a.get()
a2 = a2.get()
b = b.get()
for i in range(s):
assert math.fmod(a[i], a2[i]) == b[i]
@pytools.test.mark_test.opencl
def test_ldexp(ctx_factory):
context = ctx_factory()
queue = cl.CommandQueue(context)
for s in sizes:
a = cl_array.arange(queue, s, dtype=np.float32)
a2 = cl_array.arange(queue, s, dtype=np.float32)*1e-3
b = clmath.ldexp(a,a2)
a = a.get()
a2 = a2.get()
b = b.get()
for i in range(s):
assert math.ldexp(a[i], int(a2[i])) == b[i]
@pytools.test.mark_test.opencl
def test_modf(ctx_factory):
context = ctx_factory()
queue = cl.CommandQueue(context)
for s in sizes:
fracpart, intpart = clmath.modf(a)
a = a.get()
intpart = intpart.get()
fracpart = fracpart.get()
for i in range(s):
fracpart_true, intpart_true = math.modf(a[i])
assert intpart_true == intpart[i]
assert abs(fracpart_true - fracpart[i]) < 1e-4
@pytools.test.mark_test.opencl
def test_frexp(ctx_factory):
context = ctx_factory()
queue = cl.CommandQueue(context)
for s in sizes:
significands, exponents = clmath.frexp(a)
a = a.get()
significands = significands.get()
exponents = exponents.get()
for i in range(s):
sig_true, ex_true = math.frexp(a[i])
assert sig_true == significands[i]
assert ex_true == exponents[i]
@pytools.test.mark_test.opencl
try:
import scipy.special as spec
except ImportError:
from py.test import skip
skip("scipy not present--cannot test Bessel function")
ctx = ctx_factory()
queue = cl.CommandQueue(ctx)
if not has_double_support(ctx.devices[0]):
from py.test import skip
skip("no double precision support--cannot test bessel function")
nterms = 30
try:
except ImportError:
use_hellskitchen = False
else:
use_hellskitchen = True
if use_hellskitchen:
a = np.logspace(-3, 3, 10**6)
else:
a = np.logspace(-5, 5, 10**6)
for which_func, cl_func, scipy_func, is_rel in [
#("j", clmath.bessel_jn, spec.jn, False),
("y", clmath.bessel_yn, spec.yn, True)
]:
if is_rel:
def get_err(check, ref):
return np.max(np.abs(check-ref)) / np.max(np.abs(ref))
def get_err(check, ref):
return np.max(np.abs(check-ref))
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
if use_hellskitchen:
hellskitchen_result = np.empty((len(a), nterms), dtype=np.complex128)
if which_func == "j":
for i, a_i in enumerate(a):
if i % 10000 == 0:
print("%.1f %%" % (100 * i/len(a)))
ier, fjs, _, _ = jfuns2d(nterms, a_i, 1, 0, 10000)
hellskitchen_result[i] = fjs[:nterms]
assert ier == 0
elif which_func == "y":
h0, h1 = hank103_vec(a, ifexpon=1)
hellskitchen_result[:, 0] = h0.imag
hellskitchen_result[:, 1] = h1.imag
a_dev = cl_array.to_device(queue, a)
for n in range(0, nterms):
cl_bessel = cl_func(n, a_dev).get()
scipy_bessel = scipy_func(n, a)
error_scipy = get_err(cl_bessel, scipy_bessel)
assert error_scipy < 1e-10, error_scipy
if use_hellskitchen and (
which_func == "j"
or
(which_func == "y" and n in [0, 1])):
hk_bessel = hellskitchen_result[:, n]
error_hk = get_err(cl_bessel, hk_bessel)
assert error_hk < 1e-10, error_hk
error_hk_scipy = get_err(scipy_bessel, hk_bessel)
print(n, error_scipy, error_hk, error_hk_scipy)
else:
print(n, error_scipy)
if 0 and n == 15:
import matplotlib.pyplot as pt
#pt.plot(scipy_bessel)
#pt.plot(cl_bessel)
pt.loglog(a, np.abs(cl_bessel-scipy_bessel), label="vs scipy")
if use_hellskitchen:
pt.loglog(a, np.abs(cl_bessel-hk_bessel), label="vs hellskitchen")
pt.legend()
pt.show()
if __name__ == "__main__":
# make sure that import failures get reported, instead of skipping the tests.
import sys
if len(sys.argv) > 1:
else:
from py.test.cmdline import main
main([__file__])