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
|
/*
* Copyright (c) 2014,2015 Advanced Micro Devices, Inc.
*
* Copyright (c) 2017 Michal Babej / Tampere University of Technology
*
* 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.
*/
_CL_OVERLOADABLE vtype cosh(vtype x) {
// After dealing with special cases the computation is split into
// regions as follows:
//
// abs(x) >= max_cosh_arg:
// cosh(x) = sign(x)*Inf
//
// abs(x) >= small_threshold:
// cosh(x) = sign(x)*exp(abs(x))/2 computed using the
// splitexp and scaleDouble functions as for exp_amd().
//
// abs(x) < small_threshold:
// compute p = exp(y) - 1 and then z = 0.5*(p+(p/(p+1.0)))
// cosh(x) is then sign(x)*z.
// This is ln(2^1025)
const vtype max_cosh_arg = (vtype)7.10475860073943977113e+02; // 0x408633ce8fb9f87e
// This is where exp(-x) is insignificant compared to exp(x) = ln(2^27)
const vtype small_threshold = (vtype)0x1.2b708872320e2p+4;
vtype y = fabs(x);
// In this range we find the integer part y0 of y
// and the increment dy = y - y0. We then compute
// z = cosh(y) = cosh(y0)cosh(dy) + sinh(y0)sinh(dy)
// where sinh(y0) and cosh(y0) are tabulated above.
vtype indv = trunc(y);
itype indi = convert_itype(indv);
indi = min((itype)indi, (itype)36U);
vtype dy = y - indv;
vtype dy2 = dy * dy;
vtype sdy = dy * dy2 *
pocl_fma(dy2,
pocl_fma(dy2,
pocl_fma(dy2,
pocl_fma(dy2,
pocl_fma(dy2,
pocl_fma(dy2,
(vtype)0.7746188980094184251527126e-12,
(vtype)0.160576793121939886190847e-9),
(vtype)0.250521176994133472333666e-7),
(vtype)0.275573191913636406057211e-5),
(vtype)0.198412698413242405162014e-3),
(vtype)0.833333333333329931873097e-2),
(vtype)0.166666666666666667013899e0);
vtype cdy = dy2 *
pocl_fma(dy2,
pocl_fma(dy2,
pocl_fma(dy2,
pocl_fma(dy2,
pocl_fma(dy2,
pocl_fma(dy2,
(vtype)0.1163921388172173692062032e-10,
(vtype)0.208744349831471353536305e-8),
(vtype)0.275573350756016588011357e-6),
(vtype)0.248015872460622433115785e-4),
(vtype)0.138888888889814854814536e-2),
(vtype)0.416666666666660876512776e-1),
(vtype)0.500000000000000005911074e0);
// At this point sinh(dy) is approximated by dy + sdy,
// and cosh(dy) is approximated by 1 + cdy.
v2type tv = USE_VTABLE(cosh_tbl, convert_uinttype(indi));
vtype cl = tv.lo;
vtype ct = tv.hi;
tv = USE_VTABLE(sinh_tbl, convert_uinttype(indi));
vtype sl = tv.lo;
vtype st = tv.hi;
vtype z = pocl_fma(sl, dy,
pocl_fma(sl, sdy,
pocl_fma(cl, cdy,
pocl_fma(st, dy,
pocl_fma(st, sdy, ct*cdy))
+ ct))) + cl;
// Other cases
z = (y < (vtype)0x1.0p-28) ? (vtype)1.0 : z;
vtype t = exp(y - (vtype)0x1.62e42fefa3800p-1);
t = pocl_fma(t, (vtype)-0x1.ef35793c76641p-45, t);
z = (y >= small_threshold) ? t : z;
z = (y >= max_cosh_arg) ? as_vtype((utype)PINFBITPATT_DP64) : z;
z = (isinf(x) | isnan(x)) ? y : z;
return z;
}
|