-
-
Notifications
You must be signed in to change notification settings - Fork 439
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
Add CUDA/HIP MultiGPU Event Polling #6284
Merged
Merged
Changes from 9 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
9f6dfca
Initial hardcoded version
G-071 e91c81a
Detect number of GPUs
G-071 25494a2
Cleanup
G-071 64ecdfc
Add missing default value
G-071 12b3e3c
Fix format
G-071 bf85ef6
Add missing format fix
G-071 6a24f16
Add default device arguments
G-071 e665a9e
Fix asserts
G-071 791cecd
Delete copy/move event pool constructors
G-071 d93ada2
Fix unused parameter warning
G-071 7a5f551
Switch to east const
G-071 b37f72a
Add -1 default parameter for device auto-detection
G-071 cf60025
Merge branch 'STEllAR-GROUP:master' into add-multigpu-polling
G-071 df94966
Merge branch 'STEllAR-GROUP:master' into add-multigpu-polling
G-071 d1a81f0
Fix assert
G-071 d1f5953
Restore original device after init
G-071 9b3388e
Remove superfluous cudaSetDevice
G-071 ee33c48
Put event pool singleton access definition in src
G-071 707c025
Add basic multi gpu polling test
G-071 8d7f636
Fix assert (again)
G-071 a7e76e5
Add test for default device ID
G-071 525ad21
Fix some format issues / update file author lists
G-071 3999ecc
Fix test format
G-071 46b477a
Cal setdevice when creating events on-demand
G-071 4eb0b39
Fix format (again)
G-071 e547c24
Remove superfluous api call
G-071 9f0d330
Fix inspect
G-071 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
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.
May I suggest that you move the (
HPX_CORE_EXPORT
ed) implementation of this function into a source file? The rationale is that otherwise on some platforms (Mac, Windows) each executable module (shared library, executable) that will contain code calling this function will have its own instance of theevent_pool_
variable.