2015-08-29 10:24:29 -04:00
|
|
|
# test ffi float support
|
|
|
|
try:
|
|
|
|
import ffi
|
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
2017-06-10 13:14:16 -04:00
|
|
|
raise SystemExit
|
2015-08-29 10:24:29 -04:00
|
|
|
|
|
|
|
|
|
|
|
def ffi_open(names):
|
|
|
|
err = None
|
|
|
|
for n in names:
|
|
|
|
try:
|
|
|
|
mod = ffi.open(n)
|
|
|
|
return mod
|
|
|
|
except OSError as e:
|
|
|
|
err = e
|
|
|
|
raise err
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
|
|
|
|
libm = ffi_open(("libm.so", "libm.so.6", "libc.so.0", "libc.so.6", "libc.dylib"))
|
2015-08-29 10:24:29 -04:00
|
|
|
|
|
|
|
# Some libc's implement tgammaf as header macro with tgamma(), so don't assume
|
|
|
|
# it'll be in library.
|
|
|
|
try:
|
2021-03-15 09:57:36 -04:00
|
|
|
tgammaf = libm.func("f", "tgammaf", "f")
|
2015-08-29 10:24:29 -04:00
|
|
|
except OSError:
|
|
|
|
print("SKIP")
|
2017-06-10 13:14:16 -04:00
|
|
|
raise SystemExit
|
2015-08-29 10:24:29 -04:00
|
|
|
|
|
|
|
for fun in (tgammaf,):
|
|
|
|
for val in (0.5, 1, 1.0, 1.5, 4, 4.0):
|
2021-03-15 09:57:36 -04:00
|
|
|
print("%.6f" % fun(val))
|