-
Notifications
You must be signed in to change notification settings - Fork 99
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
OpenMP in Pyclaw #527
Open
weslowrie
wants to merge
23
commits into
clawpack:master
Choose a base branch
from
weslowrie:pyclaw_openmp
base: master
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
OpenMP in Pyclaw #527
Changes from 3 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
dd60e39
Implemented OpenMP in the PyClaw step3ds.f90 for the dimensioanlly sp…
weslowrie 2cffe8b
Fixed bug when OMP_NUM_THREADS env variable is not set, and uses nthr…
weslowrie 2bfff21
Added a comment related to a hack of adding and subtracting a variabl…
weslowrie 3bc6ba8
Update solver.py
weslowrie 7e21323
Updated solver.py to set the default number of threads to the number …
weslowrie 015ba3d
Merge branch 'pyclaw_openmp' of https://github.com/weslowrie/pyclaw i…
weslowrie 9a871d6
Updated implementation to use 1 OpenMP thread by default and give a w…
weslowrie 44230e8
small simplification to OMP_NUM_THREADS env variable check.
weslowrie 2d325b4
Updated OpenMP warning to use the PyClaw logging. This prints to the…
weslowrie 66a28ee
Implemented OpenMP in the PyClaw step3ds.f90 for the dimensioanlly sp…
weslowrie 87f5f16
Added F90 and f2py options for OpenMP (-fopenmp, and gomp => -lgomp) …
weslowrie 00880f6
Fixed bug when OMP_NUM_THREADS env variable is not set, and uses nthr…
weslowrie 3dad707
removed debugging print statement
weslowrie 51f7161
Updated solver.py to set the default number of threads to the number …
weslowrie ba15781
Updated implementation to use 1 OpenMP thread by default and give a w…
weslowrie 55c4a3d
small simplification to OMP_NUM_THREADS env variable check.
weslowrie 92158db
Updated OpenMP warning to use the PyClaw logging. This prints to the…
weslowrie b20bf4f
Merge branch 'master' of https://github.com/weslowrie/pyclaw into pyc…
weslowrie 0b595de
Various changes to pyclaw. Updates to properly handle restarts using…
weslowrie cb6a50d
Revert "Various changes to pyclaw. Updates to properly handle restar…
weslowrie 7a87fef
after_step readded to commit, and comments to be able to quickly swit…
weslowrie 851b522
Merge branch 'master' of https://github.com/weslowrie/pyclaw into pyc…
weslowrie f4c60a9
removed the dimensional/non-dimensional split comments.
weslowrie 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
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.
Probably want to remove the print line.
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.
Yes, I agree. It was left from debugging.