Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cmake/GPU.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ elseif ((CMAKE_Fortran_COMPILER_ID STREQUAL "NVHPC") OR (CMAKE_Fortran_COMPILER_
$<$<COMPILE_LANGUAGE:Fortran>:-cpp>
$<$<COMPILE_LANGUAGE:Fortran>:-Minfo=inline>
$<$<COMPILE_LANGUAGE:Fortran>:-Minfo=accel>
$<$<COMPILE_LANGUAGE:Fortran>:-Mfprelaxed>
Comment thread
sbryngelson marked this conversation as resolved.
Comment thread
sbryngelson marked this conversation as resolved.
)

if (CMAKE_BUILD_TYPE STREQUAL "Debug")
Expand Down
2 changes: 1 addition & 1 deletion src/simulation/p_main.fpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ program p_main
call s_initialize_gpu_vars()
call nvtxEndRange

! Setting the time-step iterator to the first time-step
! Setting the time-stepper to the first time-step
if (cfl_dt) then
t_step = 0
mytime = t_save*n_start
Expand Down
Loading