We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In umpire, after importing camp using find_package, this bit of cmake is required to get a CUDA build of umpire working:
find_package
blt_add_target_definitions( TO camp SCOPE INTERFACE TARGET_DEFINITIONS CAMP_HAVE_CUDA)
Could we add a configurable header that handles this issue and precludes inconsistency across projects using camp?
The text was updated successfully, but these errors were encountered:
Just for a bit more context, the CAMP_HAVE_CUDA macro is automatically defined when using nvcc:
CAMP_HAVE_CUDA
camp/include/camp/defines.hpp
Line 67 in eb555ee
However, in Umpire we are only linking to the CUDA runtime since we don't actually have device code.
Sorry, something went wrong.
ENABLE_TARGET_OPENMP
No branches or pull requests
In umpire, after importing camp using
find_package
, this bit of cmake is required to get a CUDA build of umpire working:Could we add a configurable header that handles this issue and precludes inconsistency across projects using camp?
The text was updated successfully, but these errors were encountered: