-
Notifications
You must be signed in to change notification settings - Fork 0
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 build fails #4
Comments
Looking at the code, I see it's all guarded by: #ifndef __CUDACC__ So I'm not sure how we're hitting this. Maybe host code doesn't define |
If I remember correctly, pennant does not need the complex redop from Legion, so for a quick fix, you can turn off the |
I am trying to build Regent and C++ apps in the same build, so that's why I have |
So the issue is that we're not even building this file with What CUDA header do I need to define this type? If we switch to checking |
Looks like
double2
is a native type in CUDA, so when Pennant defines it inVec2.hh
we run into trouble.On Piz Daint with CUDA 11 and GCC 10, in case that makes any difference.
The text was updated successfully, but these errors were encountered: