-
Notifications
You must be signed in to change notification settings - Fork 187
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
CUDA exception handling #4095
Merged
Merged
CUDA exception handling #4095
Conversation
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 header file can only be used in CUDA source files.
Utility CUDA functions now throw a runtime error wrapping the CUDA error message when a primitive CUDA function returns an error code. The LB GPU checking function gpu_init_particle_comm() was rewritten to check the currently selected GPU instead of the one with ID 0. The warning about insufficient compute capability was converted to an error message. The warning about default GPU ID was removed. The Python-specific message was removed. The function now calls std::abort() upon any error since we cannot recover from it in the Python interface (the list of actors cannot be cleared due to a mismatch between `Actor` and `Actors` regarding active actors). The dipolar Barnes-Hut code now exits early upon any CUDA error to avoid undefined behavior in memory allocation on the GPU.
Also fix the type of the memory field to avoid integer overflow.
Convert regular comments to doxygen comments where appropriate, document function arguments, remove duplicate doxygen blocks.
`import espressomd` shouldn't fail on a machine without GPU when CUDA is compiled in.
KaiSzuttor
reviewed
Jan 25, 2021
KaiSzuttor
approved these changes
Jan 29, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description of changes:
cuda_gather_gpus()
functionality and convert thedevice_list()
getter to a regular function (API change)libcuda
dependency (fixes -lcuda needs to be removed for cuda-11.2 #4085)