-
Notifications
You must be signed in to change notification settings - Fork 6.1k
8370150: Add StrictMath microbenchmarks to cover FDLIBM algorithms #27881
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
👋 Welcome back skuksenko! A progress list of the required criteria for merging this PR into |
❗ This change is not yet ready to be integrated. |
Webrevs
|
Fix copyright format
public RangeState(boolean signed, double min, double max) { | ||
this.min = min; | ||
this.max = max; | ||
this.signed = signed; |
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.
This field is never read.
I guess you want to change the setup()
method to use this field rather than rely on nextBoolean()
?
|
||
public static class RangeHalfLn2To56Ln2 extends RangeState { | ||
public RangeHalfLn2To56Ln2() { | ||
super(0.34657359, 38.8162421); |
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.
Please consider declaring "magic" values related to ln(2) as private static final double
s
Add StrictMath microbenchmarks to cover FDLIBM algorithms
The methods that require fdlibm semantics are sin, cos, tan, asin, acos, atan, exp, log, log10, cbrt, atan2, pow, sinh, cosh, tanh, hypot, expm1, and log1p.
Progress
Issue
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/27881/head:pull/27881
$ git checkout pull/27881
Update a local copy of the PR:
$ git checkout pull/27881
$ git pull https://git.openjdk.org/jdk.git pull/27881/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 27881
View PR using the GUI difftool:
$ git pr show -t 27881
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/27881.diff
Using Webrev
Link to Webrev Comment