s_erff.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. /* s_erff.c -- float version of s_erf.c.
  2. * Conversion to float by Ian Lance Taylor, Cygnus Support, [email protected].
  3. */
  4. /*
  5. * ====================================================
  6. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  7. *
  8. * Developed at SunPro, a Sun Microsystems, Inc. business.
  9. * Permission to use, copy, modify, and distribute this
  10. * software is freely granted, provided that this notice
  11. * is preserved.
  12. * ====================================================
  13. */
  14. #include "cdefs-compat.h"
  15. //__FBSDID("$FreeBSD: src/lib/msun/src/s_erff.c,v 1.8 2008/02/22 02:30:35 das Exp $");
  16. #include <openlibm.h>
  17. #include "math_private.h"
  18. static const float
  19. tiny = 1e-30,
  20. half= 5.0000000000e-01, /* 0x3F000000 */
  21. one = 1.0000000000e+00, /* 0x3F800000 */
  22. two = 2.0000000000e+00, /* 0x40000000 */
  23. /*
  24. * Coefficients for approximation to erf on [0,0.84375]
  25. */
  26. efx = 1.2837916613e-01, /* 0x3e0375d4 */
  27. efx8= 1.0270333290e+00, /* 0x3f8375d4 */
  28. /*
  29. * Domain [0, 0.84375], range ~[-5.4446e-10,5.5197e-10]:
  30. * |(erf(x) - x)/x - p(x)/q(x)| < 2**-31.
  31. */
  32. pp0 = 1.28379166e-01F, /* 0x1.06eba8p-3 */
  33. pp1 = -3.36030394e-01F, /* -0x1.58185ap-2 */
  34. pp2 = -1.86260219e-03F, /* -0x1.e8451ep-10 */
  35. qq1 = 3.12324286e-01F, /* 0x1.3fd1f0p-2 */
  36. qq2 = 2.16070302e-02F, /* 0x1.620274p-6 */
  37. qq3 = -1.98859419e-03F, /* -0x1.04a626p-9 */
  38. /*
  39. * Domain [0.84375, 1.25], range ~[-1.953e-11,1.940e-11]:
  40. * |(erf(x) - erx) - p(x)/q(x)| < 2**-36.
  41. */
  42. erx = 8.42697144e-01F, /* 0x1.af7600p-1. erf(1) rounded to 16 bits. */
  43. pa0 = 3.64939137e-06F, /* 0x1.e9d022p-19 */
  44. pa1 = 4.15109694e-01F, /* 0x1.a91284p-2 */
  45. pa2 = -1.65179938e-01F, /* -0x1.5249dcp-3 */
  46. pa3 = 1.10914491e-01F, /* 0x1.c64e46p-4 */
  47. qa1 = 6.02074385e-01F, /* 0x1.344318p-1 */
  48. qa2 = 5.35934687e-01F, /* 0x1.126608p-1 */
  49. qa3 = 1.68576106e-01F, /* 0x1.593e6ep-3 */
  50. qa4 = 5.62181212e-02F, /* 0x1.cc89f2p-5 */
  51. /*
  52. * Domain [1.25,1/0.35], range ~[-7.043e-10,7.457e-10]:
  53. * |log(x*erfc(x)) + x**2 + 0.5625 - r(x)/s(x)| < 2**-30
  54. */
  55. ra0 = -9.87132732e-03F, /* -0x1.4376b2p-7 */
  56. ra1 = -5.53605914e-01F, /* -0x1.1b723cp-1 */
  57. ra2 = -2.17589188e+00F, /* -0x1.1683a0p+1 */
  58. ra3 = -1.43268085e+00F, /* -0x1.6ec42cp+0 */
  59. sa1 = 5.45995426e+00F, /* 0x1.5d6fe4p+2 */
  60. sa2 = 6.69798088e+00F, /* 0x1.acabb8p+2 */
  61. sa3 = 1.43113089e+00F, /* 0x1.6e5e98p+0 */
  62. sa4 = -5.77397496e-02F, /* -0x1.d90108p-5 */
  63. /*
  64. * Domain [1/0.35, 11], range ~[-2.264e-13,2.336e-13]:
  65. * |log(x*erfc(x)) + x**2 + 0.5625 - r(x)/s(x)| < 2**-42
  66. */
  67. rb0 = -9.86494310e-03F, /* -0x1.434124p-7 */
  68. rb1 = -6.25171244e-01F, /* -0x1.401672p-1 */
  69. rb2 = -6.16498327e+00F, /* -0x1.8a8f16p+2 */
  70. rb3 = -1.66696873e+01F, /* -0x1.0ab70ap+4 */
  71. rb4 = -9.53764343e+00F, /* -0x1.313460p+3 */
  72. sb1 = 1.26884899e+01F, /* 0x1.96081cp+3 */
  73. sb2 = 4.51839523e+01F, /* 0x1.6978bcp+5 */
  74. sb3 = 4.72810211e+01F, /* 0x1.7a3f88p+5 */
  75. sb4 = 8.93033314e+00F; /* 0x1.1dc54ap+3 */
  76. DLLEXPORT float
  77. erff(float x)
  78. {
  79. int32_t hx,ix,i;
  80. float R,S,P,Q,s,y,z,r;
  81. GET_FLOAT_WORD(hx,x);
  82. ix = hx&0x7fffffff;
  83. if(ix>=0x7f800000) { /* erf(nan)=nan */
  84. i = ((u_int32_t)hx>>31)<<1;
  85. return (float)(1-i)+one/x; /* erf(+-inf)=+-1 */
  86. }
  87. if(ix < 0x3f580000) { /* |x|<0.84375 */
  88. if(ix < 0x38800000) { /* |x|<2**-14 */
  89. if (ix < 0x04000000) /* |x|<0x1p-119 */
  90. return (8*x+efx8*x)/8; /* avoid spurious underflow */
  91. return x + efx*x;
  92. }
  93. z = x*x;
  94. r = pp0+z*(pp1+z*pp2);
  95. s = one+z*(qq1+z*(qq2+z*qq3));
  96. y = r/s;
  97. return x + x*y;
  98. }
  99. if(ix < 0x3fa00000) { /* 0.84375 <= |x| < 1.25 */
  100. s = fabsf(x)-one;
  101. P = pa0+s*(pa1+s*(pa2+s*pa3));
  102. Q = one+s*(qa1+s*(qa2+s*(qa3+s*qa4)));
  103. if(hx>=0) return erx + P/Q; else return -erx - P/Q;
  104. }
  105. if (ix >= 0x40800000) { /* inf>|x|>=4 */
  106. if(hx>=0) return one-tiny; else return tiny-one;
  107. }
  108. x = fabsf(x);
  109. s = one/(x*x);
  110. if(ix< 0x4036DB6E) { /* |x| < 1/0.35 */
  111. R=ra0+s*(ra1+s*(ra2+s*ra3));
  112. S=one+s*(sa1+s*(sa2+s*(sa3+s*sa4)));
  113. } else { /* |x| >= 1/0.35 */
  114. R=rb0+s*(rb1+s*(rb2+s*(rb3+s*rb4)));
  115. S=one+s*(sb1+s*(sb2+s*(sb3+s*sb4)));
  116. }
  117. SET_FLOAT_WORD(z,hx&0xffffe000);
  118. r = expf(-z*z-0.5625F)*expf((z-x)*(z+x)+R/S);
  119. if(hx>=0) return one-r/x; else return r/x-one;
  120. }
  121. DLLEXPORT float
  122. erfcf(float x)
  123. {
  124. int32_t hx,ix;
  125. float R,S,P,Q,s,y,z,r;
  126. GET_FLOAT_WORD(hx,x);
  127. ix = hx&0x7fffffff;
  128. if(ix>=0x7f800000) { /* erfc(nan)=nan */
  129. /* erfc(+-inf)=0,2 */
  130. return (float)(((u_int32_t)hx>>31)<<1)+one/x;
  131. }
  132. if(ix < 0x3f580000) { /* |x|<0.84375 */
  133. if(ix < 0x33800000) /* |x|<2**-56 */
  134. return one-x;
  135. z = x*x;
  136. r = pp0+z*(pp1+z*pp2);
  137. s = one+z*(qq1+z*(qq2+z*qq3));
  138. y = r/s;
  139. if(hx < 0x3e800000) { /* x<1/4 */
  140. return one-(x+x*y);
  141. } else {
  142. r = x*y;
  143. r += (x-half);
  144. return half - r ;
  145. }
  146. }
  147. if(ix < 0x3fa00000) { /* 0.84375 <= |x| < 1.25 */
  148. s = fabsf(x)-one;
  149. P = pa0+s*(pa1+s*(pa2+s*pa3));
  150. Q = one+s*(qa1+s*(qa2+s*(qa3+s*qa4)));
  151. if(hx>=0) {
  152. z = one-erx; return z - P/Q;
  153. } else {
  154. z = erx+P/Q; return one+z;
  155. }
  156. }
  157. if (ix < 0x41300000) { /* |x|<28 */
  158. x = fabsf(x);
  159. s = one/(x*x);
  160. if(ix< 0x4036DB6D) { /* |x| < 1/.35 ~ 2.857143*/
  161. R=ra0+s*(ra1+s*(ra2+s*ra3));
  162. S=one+s*(sa1+s*(sa2+s*(sa3+s*sa4)));
  163. } else { /* |x| >= 1/.35 ~ 2.857143 */
  164. if(hx<0&&ix>=0x40a00000) return two-tiny;/* x < -5 */
  165. R=rb0+s*(rb1+s*(rb2+s*(rb3+s*rb4)));
  166. S=one+s*(sb1+s*(sb2+s*(sb3+s*sb4)));
  167. }
  168. SET_FLOAT_WORD(z,hx&0xffffe000);
  169. r = expf(-z*z-0.5625F)*expf((z-x)*(z+x)+R/S);
  170. if(hx>0) return r/x; else return two-r/x;
  171. } else {
  172. if(hx>0) return tiny*tiny; else return two-tiny;
  173. }
  174. }