Skip to content

Commit

Permalink
Add new cmake files for NVHPC compiler options
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherwharrop-noaa committed Aug 9, 2024
1 parent 8b295bb commit b359aa5
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
16 changes: 16 additions & 0 deletions ref/cmake/compiler_flags_NVHPC_C.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
####################################################################
# COMMON FLAGS
####################################################################
set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g")

####################################################################
# RELEASE FLAGS
####################################################################

set( CMAKE_C_FLAGS_RELEASE "-O3 -mp" )

####################################################################
# DEBUG FLAGS
####################################################################

set( CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0" )
23 changes: 23 additions & 0 deletions ref/cmake/compiler_flags_NVHPC_Fortran.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
####################################################################
# COMMON FLAGS
####################################################################
set( CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback -Mnofma")

####################################################################
# RELEASE FLAGS
####################################################################

# Must turn off SIMD vectorization to get same results as for debug
set( CMAKE_Fortran_FLAGS_RELEASE "-fast -mp -Mnovect" )

####################################################################
# DEBUG FLAGS
####################################################################

set( CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -Mbounds -Mchkptr -Mchkstk -Ktrap=fp" )

####################################################################
# FLAGS FOR GPU
####################################################################

set( Fortran_GPU_FLAGS "" )

0 comments on commit b359aa5

Please sign in to comment.