Skip to content
Merged
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
4 changes: 2 additions & 2 deletions model/src/wav_wrapper_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ module wav_wrapper_mod

use wav_kind_mod , only : r8 => shr_kind_r8, r4 => shr_kind_r4, i4 => shr_kind_i4
use wav_kind_mod , only : CL => shr_kind_cl, CS => shr_kind_cs
use mpi_f08 , only : MPI_Wtime

implicit none

Expand Down Expand Up @@ -49,7 +50,6 @@ subroutine ufs_settimer(timevalue)
!> @date 01-08-2024

real(r8), intent(inout) :: timevalue
real(r8) :: MPI_Wtime
timevalue = MPI_Wtime()
end subroutine ufs_settimer

Expand All @@ -70,7 +70,7 @@ subroutine ufs_logtimer(nunit,times,tod,string,runtimelog,wtime0)
character(len=*), intent(in) :: string
logical, intent(in) :: runtimelog
real(r8), intent(in) :: wtime0
real(r8) :: MPI_Wtime, timevalue
real(r8) :: timevalue
if (.not. runtimelog) return
if (wtime0 > 0.) then
timevalue = MPI_Wtime()-wtime0
Expand Down