This repository was archived by the owner on Apr 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 103
sinf tanf acosf asinf atanf expm1f #97
Closed
Closed
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
4305c26
sinf tanf acosf asinf atanf expm1f
burrbull 76d9b52
add tests for trigonometrical
burrbull f696db2
Merge branch 'master' into master
burrbull b7902a7
Merge branch 'master' into master
burrbull 75e9c65
sinhf
burrbull 2f6360e
Merge branch 'master' of https://github.com/burrbull/libm
burrbull be7dec8
Merge branch 'master' into master
burrbull 25beefa
Merge branch 'master' into master
burrbull 34917ba
rm sinhf
burrbull aa03754
merge updates
burrbull 273440a
Merge branch 'master' of https://github.com/burrbull/libm
burrbull File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,59 @@ | ||
| use super::sqrtf::sqrtf; | ||
|
|
||
| const PIO2_HI: f32 = 1.5707962513e+00; /* 0x3fc90fda */ | ||
| const PIO2_LO: f32 = 7.5497894159e-08; /* 0x33a22168 */ | ||
| const P_S0: f32 = 1.6666586697e-01; | ||
| const P_S1: f32 = -4.2743422091e-02; | ||
| const P_S2: f32 = -8.6563630030e-03; | ||
| const Q_S1: f32 = -7.0662963390e-01; | ||
|
|
||
| fn r(z: f32) -> f32 { | ||
| let p = z * (P_S0 + z * (P_S1 + z * P_S2)); | ||
| let q = 1. + z * Q_S1; | ||
| p / q | ||
| } | ||
|
|
||
| #[inline] | ||
| pub fn acosf(x: f32) -> f32 { | ||
| let x1p_120 = f32::from_bits(0x03800000); // 0x1p-120 === 2 ^ (-120) | ||
|
|
||
| let z: f32; | ||
| let w: f32; | ||
| let s: f32; | ||
|
|
||
| let mut hx = x.to_bits(); | ||
| let ix = hx & 0x7fffffff; | ||
| /* |x| >= 1 or nan */ | ||
| if ix >= 0x3f800000 { | ||
| if ix == 0x3f800000 { | ||
| if (hx >> 31) != 0 { | ||
| return 2. * PIO2_HI + x1p_120; | ||
| } | ||
| return 0.; | ||
| } | ||
| return 0. / (x - x); | ||
| } | ||
| /* |x| < 0.5 */ | ||
| if ix < 0x3f000000 { | ||
| if ix <= 0x32800000 { | ||
| /* |x| < 2**-26 */ | ||
| return PIO2_HI + x1p_120; | ||
| } | ||
| return PIO2_HI - (x - (PIO2_LO - x * r(x * x))); | ||
| } | ||
| /* x < -0.5 */ | ||
| if (hx >> 31) != 0 { | ||
| z = (1. + x) * 0.5; | ||
| s = sqrtf(z); | ||
| w = r(z) * s - PIO2_LO; | ||
| return 2. * (PIO2_HI - (s + w)); | ||
| } | ||
| /* x > 0.5 */ | ||
| z = (1. - x) * 0.5; | ||
| s = sqrtf(z); | ||
| hx = s.to_bits(); | ||
| let df = f32::from_bits(hx & 0xfffff000); | ||
| let c = (z - df * df) / (s + df); | ||
| w = r(z) * s + c; | ||
| 2. * (df + w) | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| use super::fabsf::fabsf; | ||
| use super::sqrt::sqrt; | ||
|
|
||
| const PIO2: f64 = 1.570796326794896558e+00; | ||
|
|
||
| /* coefficients for R(x^2) */ | ||
| const P_S0: f32 = 1.6666586697e-01; | ||
| const P_S1: f32 = -4.2743422091e-02; | ||
| const P_S2: f32 = -8.6563630030e-03; | ||
| const Q_S1: f32 = -7.0662963390e-01; | ||
|
|
||
| fn r(z: f32) -> f32 { | ||
| let p = z * (P_S0 + z * (P_S1 + z * P_S2)); | ||
| let q = 1. + z * Q_S1; | ||
| p / q | ||
| } | ||
|
|
||
| #[inline] | ||
| pub fn asinf(mut x: f32) -> f32 { | ||
| let x1p_120 = f64::from_bits(0x3870000000000000); // 0x1p-120 === 2 ^ (-120) | ||
|
|
||
| let hx = x.to_bits(); | ||
| let ix = hx & 0x7fffffff; | ||
|
|
||
| if ix >= 0x3f800000 { | ||
| /* |x| >= 1 */ | ||
| if ix == 0x3f800000 { | ||
| /* |x| == 1 */ | ||
| return ((x as f64) * PIO2 + x1p_120) as f32; /* asin(+-1) = +-pi/2 with inexact */ | ||
| } | ||
| return 0. / (x - x); /* asin(|x|>1) is NaN */ | ||
| } | ||
|
|
||
| if ix < 0x3f000000 { | ||
| /* |x| < 0.5 */ | ||
| /* if 0x1p-126 <= |x| < 0x1p-12, avoid raising underflow */ | ||
| if (ix < 0x39800000) && (ix >= 0x00800000) { | ||
| return x; | ||
| } | ||
| return x + x * r(x * x); | ||
| } | ||
|
|
||
| /* 1 > |x| >= 0.5 */ | ||
| let z = (1. - fabsf(x)) * 0.5; | ||
| let s = sqrt(z as f64); | ||
| x = (PIO2 - 2. * (s + s * (r(z) as f64))) as f32; | ||
| if (hx >> 31) != 0 { | ||
| -x | ||
| } else { | ||
| x | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,95 @@ | ||
| use super::fabsf; | ||
|
|
||
| const ATAN_HI: [f32; 4] = [ | ||
| 4.6364760399e-01, /* atan(0.5)hi 0x3eed6338 */ | ||
| 7.8539812565e-01, /* atan(1.0)hi 0x3f490fda */ | ||
| 9.8279368877e-01, /* atan(1.5)hi 0x3f7b985e */ | ||
| 1.5707962513e+00, /* atan(inf)hi 0x3fc90fda */ | ||
| ]; | ||
|
|
||
| const ATAN_LO: [f32; 4] = [ | ||
| 5.0121582440e-09, /* atan(0.5)lo 0x31ac3769 */ | ||
| 3.7748947079e-08, /* atan(1.0)lo 0x33222168 */ | ||
| 3.4473217170e-08, /* atan(1.5)lo 0x33140fb4 */ | ||
| 7.5497894159e-08, /* atan(inf)lo 0x33a22168 */ | ||
| ]; | ||
|
|
||
| const A_T: [f32; 5] = [ | ||
| 3.3333328366e-01, | ||
| -1.9999158382e-01, | ||
| 1.4253635705e-01, | ||
| -1.0648017377e-01, | ||
| 6.1687607318e-02, | ||
| ]; | ||
|
|
||
| #[inline] | ||
| pub fn atanf(mut x: f32) -> f32 { | ||
| let x1p_120 = f32::from_bits(0x03800000); // 0x1p-120 === 2 ^ (-120) | ||
|
|
||
| let z: f32; | ||
|
|
||
| let mut ix = x.to_bits(); | ||
| let sign = (ix >> 31) != 0; | ||
| ix &= 0x7fffffff; | ||
|
|
||
| if ix >= 0x4c800000 { | ||
| /* if |x| >= 2**26 */ | ||
| if x.is_nan() { | ||
| return x; | ||
| } | ||
| z = ATAN_HI[3] + x1p_120; | ||
| return if sign { -z } else { z }; | ||
| } | ||
| let id = if ix < 0x3ee00000 { | ||
| /* |x| < 0.4375 */ | ||
| if ix < 0x39800000 { | ||
| /* |x| < 2**-12 */ | ||
| if ix < 0x00800000 { | ||
| /* raise underflow for subnormal x */ | ||
| force_eval!(x * x); | ||
| } | ||
| return x; | ||
| } | ||
| -1 | ||
| } else { | ||
| x = fabsf(x); | ||
| if ix < 0x3f980000 { | ||
| /* |x| < 1.1875 */ | ||
| if ix < 0x3f300000 { | ||
| /* 7/16 <= |x| < 11/16 */ | ||
| x = (2. * x - 1.) / (2. + x); | ||
| 0 | ||
| } else { | ||
| /* 11/16 <= |x| < 19/16 */ | ||
| x = (x - 1.) / (x + 1.); | ||
| 1 | ||
| } | ||
| } else { | ||
| if ix < 0x401c0000 { | ||
| /* |x| < 2.4375 */ | ||
| x = (x - 1.5) / (1. + 1.5 * x); | ||
| 2 | ||
| } else { | ||
| /* 2.4375 <= |x| < 2**26 */ | ||
| x = -1. / x; | ||
| 3 | ||
| } | ||
| } | ||
| }; | ||
| /* end of argument reduction */ | ||
| z = x * x; | ||
| let w = z * z; | ||
| /* break sum from i=0 to 10 aT[i]z**(i+1) into odd and even poly */ | ||
| let s1 = z * (A_T[0] + w * (A_T[2] + w * A_T[4])); | ||
| let s2 = w * (A_T[1] + w * A_T[3]); | ||
| if id < 0 { | ||
| return x - x * (s1 + s2); | ||
| } | ||
| let id = id as usize; | ||
| let z = ATAN_HI[id] - ((x * (s1 + s2) - ATAN_LO[id]) - x); | ||
| if sign { | ||
| -z | ||
| } else { | ||
| z | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
needs to be undone because sinhf has been removed