We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4759bd8 commit f7cdb55Copy full SHA for f7cdb55
CMakeLists.txt
@@ -217,6 +217,8 @@ if (CMAKE_BUILD_TYPE STREQUAL "Release")
217
if (CMAKE_Fortran_COMPILER_ID STREQUAL "NVHPC")
218
if (MFC_Unified)
219
message(STATUS "IPO is not available with NVHPC using Unified Memory")
220
+ elseif(CMAKE_Fortran_COMPILER_VERSION VERSION_LESS "23.11")
221
+ message(STATUS "IPO is not supported in NVHPC Version < 23.11")
222
else()
223
message(STATUS "Performing IPO using -Mextract followed by -Minline")
224
set(NVHPC_USE_TWO_PASS_IPO TRUE)
0 commit comments