-
Notifications
You must be signed in to change notification settings - Fork 8
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
nqt o2 #433
Merged
Merged
nqt o2 #433
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
9076611
Thread through quadratic logs. Thanks Peter and Jacob.
jonahm-LANL 820b9dc
bounds typo
jonahm-LANL ea15582
output on failure
jonahm-LANL b384d2c
useless error messages... and it works on my machine...
jonahm-LANL 82c5c24
formatting
jonahm-LANL c17e01e
fix error bounds on CI machine
jonahm-LANL 5de1fdb
clean up shared constants
jonahm-LANL 91b104d
move to constexpr if with settings namespace
jonahm-LANL 5cdfc2d
it passes on my machine???
jonahm-LANL 8889f77
the anchor appears shifted by 1 point, weirdly.
jonahm-LANL 75afc4d
or not supported...
jonahm-LANL 5ee3465
add eos_grid example
jonahm-LANL ee8e090
remove eps which is unused
jonahm-LANL 62188b2
move compute bulk modulus to BEFORE reinterpolating to fast logs
jonahm-LANL a188f2a
formatting
jonahm-LANL fcbef9d
mantiss -> mantissa
jonahm-LANL 66f6fd7
add versioning to sp5 files
jonahm-LANL d9f29c0
add ability to densify rho/T in fast log table for stellar collapse
jonahm-LANL c8ea509
BMOD IS LOGGED
jonahm-LANL 32abaad
zero-initialize sieOffset
jonahm-LANL 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 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 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 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 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 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
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.
Apologies if there's code I'm not seeing that addresses this, but do we check if the precision of the
typedef Real
isdouble
before including this? Is there equivalent 'float' procedures?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.
There are not equivalent
float
procedures at this time. Nor are there little endians. However all functions in this code are explicitlydouble
s.You're worried about building for single-precision I assume. Yes, we should be worried about that. Let's extend that in a later PR, though. Getting this working was enough of a lift.