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 CMake 3.24, the native flag was introduced for CUDA_ARCHITECTURES, which is what we currently do in our old logic. https://cmake.org/cmake/help/latest/prop_tgt/CUDA_ARCHITECTURES.html
native
CUDA_ARCHITECTURES
Transitioning is now possible (CMake is at 3.29) and we can then drop cmake_policy(SET CMP0104 OLD) that we used for the transition period. https://github.com/AMReX-Codes/amrex/blob/24.05/CMakeLists.txt#L19-L27
cmake_policy(SET CMP0104 OLD)
The text was updated successfully, but these errors were encountered:
ax3l
No branches or pull requests
In CMake 3.24, the
native
flag was introduced forCUDA_ARCHITECTURES
, which is what we currently do in our old logic.https://cmake.org/cmake/help/latest/prop_tgt/CUDA_ARCHITECTURES.html
Transitioning is now possible (CMake is at 3.29) and we can then drop
cmake_policy(SET CMP0104 OLD)
that we used for the transition period.https://github.com/AMReX-Codes/amrex/blob/24.05/CMakeLists.txt#L19-L27
The text was updated successfully, but these errors were encountered: