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
PORTABILITY_STRATEGY_NONE
It should be. Until this is resolved, downstream codes must set the strategy themselves.
The text was updated successfully, but these errors were encountered:
The PORTABILITY_STRATEGY_NONE falls into the #else at the end of the preprocessor if-then-else.
#else
Now, this may be somewhat imprecise, as PORTABILITY_STRATEGY_HAMSTER or PORTABILITY_TACTICS_360NOSCOPE or whatever gibberish.
PORTABILITY_STRATEGY_HAMSTER
PORTABILITY_TACTICS_360NOSCOPE
Probably the best solution here is
#if !(defined PS_KOKKOS || defined PS_CUDA) #define PS_NONE #endif #elif defined PS_NONE // #else #error "Cannot retrieve PS, check build" #endif
Sorry, something went wrong.
That would work.
No branches or pull requests
It should be. Until this is resolved, downstream codes must set the strategy themselves.
The text was updated successfully, but these errors were encountered: