-
Notifications
You must be signed in to change notification settings - Fork 5
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
Remove solver_.parameters_ #668
Open
montythind
wants to merge
34
commits into
main
Choose a base branch
from
allowSolversToModify_621
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
263af07
draft of 621
montythind da7cd22
second draft
montythind 32a16e2
third draft
montythind f125b16
darft fourth
montythind c580d79
Merge branch 'main' into allowSolversToModify_621
montythind 03a8105
test fixed
montythind 0904e97
fix cuda test
montythind f4cf73a
fix cuda tests
montythind d67add6
fix again
montythind ecb857a
cuda test fix
montythind fefab05
removed params
montythind c481a0b
added tolerance back
montythind fdb1fb6
fix cuda tests
montythind 1bc0df6
Merge branch 'main' into allowSolversToModify_621
montythind 9f4b7b3
trying to copy tolerances from state
K20shores 4c84691
updating usage of absolute tolerance
K20shores 1b67f79
removed compile errors
K20shores 3e0d09f
moving relative tolerance
K20shores a5796b1
fixed some backward euler stuff
K20shores 752519e
removing debug print statements
K20shores 601b79e
correctly setting oregonator tolerances
K20shores aee4f4f
correctly using tolerances
K20shores f42bfca
updating jit constructor
K20shores 96ddc42
passing the number of species to the constructor
K20shores 96fbfd0
correcting jit tests
K20shores 09c4df2
uncommenting tests
K20shores f3c71f7
removing comment
K20shores 59460c6
using same calling convention for analytical tests
K20shores 4b81426
simplifying cuda analytical test interface
K20shores 6112c2c
added tests
montythind bd1829e
move the copy of absolute tolerance into the cuda state constructor
sjsprecious 130b83c
Merge branch 'allowSolversToModify_621' of github.com:NCAR/micm into …
sjsprecious 5a612d6
fix broken CI test
sjsprecious bacb558
uncomment a GPU test
sjsprecious 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
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
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.
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.
@montythind @K20shores since we move relative and absolute tolerances into the
State
class now, why we still need therelative_tolerance_
here for the solver parameters?