Skip to content
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
wants to merge 18 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/core/cuda_wrapper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#if defined(__CUDACC__)

#include <cuda.h>
#include "clang_thrust_workaround.cuh"
Copy link
Member

@jngrad jngrad Apr 9, 2020

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)

Suggested change
#include "clang_thrust_workaround.cuh"
#if THRUST_VERSION < 100905
#include "clang_thrust_workaround.cuh"
#endif

Copy link
Member

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.

Copy link
Member

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.


#endif

Expand Down