-
Notifications
You must be signed in to change notification settings - Fork 346
New issue
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
Add cmake nvhpc support #1286
base: develop
Are you sure you want to change the base?
Add cmake nvhpc support #1286
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since the FindNetCDF.cmake file is no longer used, you may want to delete it. Other than that, I was able to build this branch on my personal Linux desktop and on Aspire2a (both use GNU and OpenMPI) without any problems.
It's possible that PIO would require netCDF, however. So perhaps the |
I will test that and respond accordingly. Thanks for the heads up about that possibility. @mgduda I noticed that Perhaps |
Given that the PIO version of mpas_atmosphere (what atmosphere_model is named when building with cmake) builds successfully without using Other than that, are there other issues I need to address before we can consider merging this PR? (I have two downstream PR's in the mpas-bundle repository which depend on this PR.) |
@jim-p-w I think it might be getting away with building if you are linking against a dynamic library of PIO. If it is static, it does require netCDF : MPAS-Model/cmake/Modules/FindPIO.cmake Line 116 in b669db1
I would also think if it needs it, it should call |
@islas @amstokely @michalakes In that case I will add back the call to find the netcdf package if building PIO. Thanks for the info Anthony! The netcdf package is now required when building with PIO. |
@amstokely @islas @mgduda A gentle reminder, I think I have addressed all issues which have been raised so far. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Configures and compiles when nvhpc SDK is in path and the compiler is set to nvfortran
with only PnetCDF additionally in path 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have no objection to the changes themselves, but I would suggest doing one of two things concerning commit 55c6391:
- The commit message could be improved by mentioning in the one-line summary that the change affects CMake builds specifically, and explaining further in the commit message why we are adding back a line (now within a conditional check) that was removed by the previous commit.
- Or, just squashing 55c6391 into the previous commit.
55c6391
to
ae56965
Compare
I squashed the 2 commits into 1, and updated the commit message. |
I'm not able to build stand-alone MPAS-A with the changes in this PR using the NVHPC compilers. Here's where the build fails:
On Derecho, I have the following modules loaded:
|
Using the same modules as Michael,
I built successfully using the following commands: My build dir was parallel to the MPAS source dir. From the source directory:
@mgduda what cmake and make commands did you use? |
@jim-p-w I think I've figure out what was going on. In the MPAS-Model directory I was pointing to with cmake, the code had already been compiled with the Make-based build system. If I clean the MPAS-Model source directory, it looks like all is well. |
$<$<COMPILE_LANGUAGE:Fortran>:-DMPAS_OPENACC -DSINGLE_PRECISION -DMPAS_BUILD_TARGET=nvhpc> | ||
) | ||
list(APPEND MPAS_FORTRAN_TARGET_COMPILE_OPTIONS_PRIVATE | ||
$<$<COMPILE_LANGUAGE:Fortran>: -Mnofma -acc -gpu=math_uniform,cc70,cc80 -Minfo=accel -byteswapio> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it would be good to state clearly in the commit message (and to clarify in the PR description) that building with the NVHPC compilers using CMake will always enable OpenACC.
Note: When using cmake to build with the nvhpc toolchain, OpenACC will always be enabled. Note: These changes only impact building via cmake. This includes conditionally setting the MPI_Fortran_COMPILER prior to searching for the MPI package. This also includes adding a number of defines and compiler switches when the nvhpc toolchain is detected.
ae56965
to
5f99ec6
Compare
This PR adds support for using the nvhpc toolchain when building with cmake.
Note: When using cmake to build with the nvhpc toolchain, OpenACC will always be enabled.
The primary changes include the following when the nvhpc toolchain is detected:
MPI_Fortran_COMPILER
variable tompifort
prior to searching for the MPI package.For simplicity, the dependencies on netcdf are removed. MPAS-Model only depends on the parallel netcdf packages.To test the nvhpc toolchain, a regional test case was submitted to gpu nodes, and the output
was compared to the output from running it against an nvhpc build built with make.
The test output was the same.
To ensure changing the netcdf dependencies is backward compatible, the mpas-bundle software was built with the gnu toolchain. Everything built properly.
The result of the build was used to run the panda-c cylc test suite, all tests passed.