-
-
Notifications
You must be signed in to change notification settings - Fork 448
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
Working around CUDA issue #6409
Conversation
@G-071 Please check whether this solves the issue you reported. |
Unfortunately, it seems NVCC has trouble with this one as well:
The other suggestion
seems to work once I adapted the HPX_CUDA_VERSION >= 1300 (I am on 1200 right now, so the ifdef would have not removed the noexcept code otherwise). Since we do not know which CUDA version will work in the future: Should we just drop the second if condition and only use
? |
Yep, let's do that instead, then. |
@G-071 I have updated this PR to do exactly that. |
Coverage summary from CodacySee diff coverage on Codacy
Coverage variation details
Coverage variation is the difference between the coverage for the head and common ancestor commits of the pull request branch: Diff coverage details
Diff coverage is the percentage of lines that are covered by tests out of the coverable lines that the pull request added or modified: See your quality gate settings Change summary preferencesYou may notice some variations in coverage metrics with the latest Coverage engine update. For more details, visit the documentation |
This did the trick, thanks! I can build [email protected] with it again. Should be good to merge! That being said, I was unable to run Octo-Tiger with this: Octo-Tiger is segfaulting either on the first time step or when loading the options (same Octo-Tiger version still works with HPX 1.9.1). This seems to be an unrelated to this PR though as this also happens with master. I will investigate some more and open a separate issue for this. |
Fixes #6407