-
Notifications
You must be signed in to change notification settings - Fork 189
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
WIP: Sanitizer build with Ubuntu 20.04 #3636
Closed
Closed
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
bc403cb
CMake: Exclude some boost MPI from clang-tidy
RudolfWeeber eb2164e
CI: Add Ubuntu 20.04 build
RudolfWeeber 79638aa
Formatting
RudolfWeeber c979dff
CI: Disable Cuda on Ubuntu 20.04 job
RudolfWeeber fc393d0
CI: Ubuntu 20.04 select clang
RudolfWeeber c1beb3d
Cython: build with -Wno-deprecated-declarations
RudolfWeeber c8b988c
UBSAN: Suppressions file
RudolfWeeber 3b4eb1e
CI: Use UB Sanitizer suppressions in Ubuntu 20.04 job
RudolfWeeber 2657aff
CI: Path to UBSAN supressions
RudolfWeeber 9eab049
Merge branch 'python' into u2004
RudolfWeeber a88e7bd
Merge branch 'python' of git://github.com/espressomd/espresso into py…
RudolfWeeber a6f5040
Workaround Thrust compilation with Clang bug
RudolfWeeber 1954401
CI: Enable CUDA on Ubuntu 20.04 sanitizer build
RudolfWeeber 8af479d
Merge branch 'u2004' of ssh://github.com/RudolfWeeber/espresso into p…
RudolfWeeber 12dcf03
Missing file
RudolfWeeber 246afd4
Include file sorting
RudolfWeeber 1c8c37d
CI: 2h time out for Ubuntu 20 sanitizer job
RudolfWeeber 0ac6628
Clang+Thrust: Guard against double presence of workaround
RudolfWeeber 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ | |
#if defined(__CUDACC__) | ||
|
||
#include <cuda.h> | ||
#include "clang_thrust_workaround.cuh" | ||
|
||
#endif | ||
|
||
|
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.
The file
clang_thrust_workaround.cuh
seems to be missing. Also, I just found out the issue was fixed in thrust 1.9.5 (I'm writing a report for them)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.
Here is my investigation: NVIDIA/thrust#1032 (comment); if CUDA 10.1 is shipped with thrust 1.9.5, we should install it on ICP machines and drop support for the combination Clang+CUDA10.0 is ESPResSo.
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.
@RudolfWeeber sorry, I forgot that editing a message doesn't send an email. In my previous message, I meant to say that you probably forgot to commit file
clang_thrust_workaround.cuh
.