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 2e16041 commit ae06f43Copy full SHA for ae06f43
src/simulation/p_main.fpp
@@ -21,6 +21,8 @@ program p_main
21
use m_start_up
22
23
use m_time_steppers
24
+
25
+ use m_nvtx
26
! ==========================================================================
27
28
implicit none
@@ -61,6 +63,7 @@ program p_main
61
63
finaltime = t_step_stop*dt
62
64
end if
65
66
+ call nvtxStartRange("Simulation")
67
! Time-stepping Loop =======================================================
68
do
69
@@ -95,6 +98,8 @@ program p_main
95
98
end do
96
99
97
100
101
+ call nvtxEndRange ! Simulation
102
103
deallocate (proc_time, io_proc_time)
104
105
call s_finalize_modules()
0 commit comments