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
Software depending on PaRSEC may want to check whether the correct accelerator component has been enabled.
PaRSEC could provide PaRSEC::cuda and PaRSEC::hip respectively so that dependents like TTG can check for it.
PaRSEC::cuda
PaRSEC::hip
The text was updated successfully, but these errors were encountered:
I think the 'proper' CMake way to do that is to expose CUDA, HIP, and other features as COMPONENTS for the PaRSEC package, and the user should use
find_package(PaRSEC COMPONENTS HIP CUDA REQUIRED)
I'm not sure what it means to have a PaRSEC::cuda target, because this target would just be an alias to PaRSEC::parsec?
PaRSEC::parsec
Sorry, something went wrong.
No branches or pull requests
Description
Software depending on PaRSEC may want to check whether the correct accelerator component has been enabled.
Describe the solution you'd like
PaRSEC could provide
PaRSEC::cuda
andPaRSEC::hip
respectively so that dependents like TTG can check for it.The text was updated successfully, but these errors were encountered: