/usr/lib/python3/dist-packages/pyopencl/clmath.py is in python3-pyopencl 2014.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 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 | __copyright__ = "Copyright (C) 2009 Andreas Kloeckner"
__license__ = """
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
"""
import pyopencl.array as cl_array
import pyopencl.elementwise as elementwise
from pyopencl.array import _get_common_dtype
import numpy as np
def _make_unary_array_func(name):
@cl_array.elwise_kernel_runner
def knl_runner(result, arg):
if arg.dtype.kind == "c":
from pyopencl.elementwise import complex_dtype_to_name
fname = "%s_%s" % (complex_dtype_to_name(arg.dtype), name)
else:
fname = name
return elementwise.get_unary_func_kernel(
result.context, fname, arg.dtype)
def f(array, queue=None):
result = array._new_like_me(queue=queue)
knl_runner(result, array, queue=queue)
return result
return f
# See table 6.8 in the CL 1.1 spec
acos = _make_unary_array_func("acos")
acosh = _make_unary_array_func("acosh")
acospi = _make_unary_array_func("acospi")
asin = _make_unary_array_func("asin")
asinh = _make_unary_array_func("asinh")
asinpi = _make_unary_array_func("asinpi")
@cl_array.elwise_kernel_runner
def _atan2(result, arg1, arg2):
return elementwise.get_float_binary_func_kernel(
result.context, "atan2", arg1.dtype, arg2.dtype, result.dtype)
@cl_array.elwise_kernel_runner
def _atan2pi(result, arg1, arg2):
return elementwise.get_float_binary_func_kernel(
result.context, "atan2pi", arg1.dtype, arg2.dtype, result.dtype)
atan = _make_unary_array_func("atan")
def atan2(y, x, queue=None):
"""
.. versionadded:: 2013.1
"""
queue = queue or y.queue
result = y._new_like_me(_get_common_dtype(y, x, queue))
_atan2(result, y, x, queue=queue)
return result
atanh = _make_unary_array_func("atanh")
atanpi = _make_unary_array_func("atanpi")
def atan2pi(y, x, queue=None):
"""
.. versionadded:: 2013.1
"""
queue = queue or y.queue
result = y._new_like_me(_get_common_dtype(y, x, queue))
_atan2pi(result, y, x, queue=queue)
return result
cbrt = _make_unary_array_func("cbrt")
ceil = _make_unary_array_func("ceil")
# TODO: copysign
cos = _make_unary_array_func("cos")
cosh = _make_unary_array_func("cosh")
cospi = _make_unary_array_func("cospi")
erfc = _make_unary_array_func("erfc")
erf = _make_unary_array_func("erf")
exp = _make_unary_array_func("exp")
exp2 = _make_unary_array_func("exp2")
exp10 = _make_unary_array_func("exp10")
expm1 = _make_unary_array_func("expm1")
fabs = _make_unary_array_func("fabs")
# TODO: fdim
floor = _make_unary_array_func("floor")
# TODO: fma
# TODO: fmax
# TODO: fmin
@cl_array.elwise_kernel_runner
def _fmod(result, arg, mod):
return elementwise.get_fmod_kernel(result.context, result.dtype,
arg.dtype, mod.dtype)
def fmod(arg, mod, queue=None):
"""Return the floating point remainder of the division `arg/mod`,
for each element in `arg` and `mod`."""
queue = (queue or arg.queue) or mod.queue
result = arg._new_like_me(_get_common_dtype(arg, mod, queue))
_fmod(result, arg, mod, queue=queue)
return result
# TODO: fract
@cl_array.elwise_kernel_runner
def _frexp(sig, expt, arg):
return elementwise.get_frexp_kernel(sig.context, sig.dtype,
expt.dtype, arg.dtype)
def frexp(arg, queue=None):
"""Return a tuple `(significands, exponents)` such that
`arg == significand * 2**exponent`.
"""
sig = arg._new_like_me(queue=queue)
expt = arg._new_like_me(queue=queue)
_frexp(sig, expt, arg, queue=queue)
return sig, expt
# TODO: hypot
ilogb = _make_unary_array_func("ilogb")
@cl_array.elwise_kernel_runner
def _ldexp(result, sig, exp):
return elementwise.get_ldexp_kernel(result.context, result.dtype,
sig.dtype, exp.dtype)
def ldexp(significand, exponent, queue=None):
"""Return a new array of floating point values composed from the
entries of `significand` and `exponent`, paired together as
`result = significand * 2**exponent`.
"""
result = significand._new_like_me(queue=queue)
_ldexp(result, significand, exponent)
return result
lgamma = _make_unary_array_func("lgamma")
# TODO: lgamma_r
log = _make_unary_array_func("log")
log2 = _make_unary_array_func("log2")
log10 = _make_unary_array_func("log10")
log1p = _make_unary_array_func("log1p")
logb = _make_unary_array_func("logb")
# TODO: mad
# TODO: maxmag
# TODO: minmag
@cl_array.elwise_kernel_runner
def _modf(intpart, fracpart, arg):
return elementwise.get_modf_kernel(intpart.context, intpart.dtype,
fracpart.dtype, arg.dtype)
def modf(arg, queue=None):
"""Return a tuple `(fracpart, intpart)` of arrays containing the
integer and fractional parts of `arg`.
"""
intpart = arg._new_like_me(queue=queue)
fracpart = arg._new_like_me(queue=queue)
_modf(intpart, fracpart, arg, queue=queue)
return fracpart, intpart
nan = _make_unary_array_func("nan")
# TODO: nextafter
# TODO: remainder
# TODO: remquo
rint = _make_unary_array_func("rint")
# TODO: rootn
round = _make_unary_array_func("round")
sin = _make_unary_array_func("sin")
# TODO: sincos
sinh = _make_unary_array_func("sinh")
sinpi = _make_unary_array_func("sinpi")
sqrt = _make_unary_array_func("sqrt")
tan = _make_unary_array_func("tan")
tanh = _make_unary_array_func("tanh")
tanpi = _make_unary_array_func("tanpi")
tgamma = _make_unary_array_func("tgamma")
trunc = _make_unary_array_func("trunc")
# no point wrapping half_ or native_
# TODO: table 6.10, integer functions
# TODO: table 6.12, clamp et al
@cl_array.elwise_kernel_runner
def _bessel_jn(result, n, x):
return elementwise.get_bessel_kernel(result.context, "j", result.dtype,
np.dtype(type(n)), x.dtype)
@cl_array.elwise_kernel_runner
def _bessel_yn(result, n, x):
return elementwise.get_bessel_kernel(result.context, "y", result.dtype,
np.dtype(type(n)), x.dtype)
def bessel_jn(n, x, queue=None):
result = x._new_like_me(queue=queue)
_bessel_jn(result, n, x)
return result
def bessel_yn(n, x, queue=None):
result = x._new_like_me(queue=queue)
_bessel_yn(result, n, x)
return result
|