Skip to content

Commit

Permalink
Fixed type-o in replay-Templates
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Hovy committed Oct 30, 2019
1 parent 52362bd commit b11311f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion templates/CesmStandalone/replay.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ SUBROUTINE ftg_test_${subroutine.name}(total_failure_count)
#end if

! ----------- COMPARE -----------
! When ordered is set, compare on process after another to get nice, ordered printing
! When ordered is set, compare one process after another to get nice, ordered printing
IF (ordered .AND. mpi_rank > 0) THEN
CALL mpi_recv(total_failure_count, 1, MPI_INT, mpi_rank - 1, 0, MPI_COMM_WORLD, mpi_stat, mpi_err)
ELSE
Expand Down
2 changes: 1 addition & 1 deletion templates/IconJsbachMock/replay.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ SUBROUTINE ftg_test_${subroutine.name}(total_failure_count)
#end if

! ----------- COMPARE -----------
! When ordered is set, compare on process after another to get nice, ordered printing
! When ordered is set, compare one process after another to get nice, ordered printing
IF (ordered .AND. mpi_rank > 0) THEN
CALL p_recv(total_failure_count, mpi_rank - 1, 0)
ELSE
Expand Down
2 changes: 1 addition & 1 deletion templates/IconStandalone/replay.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ SUBROUTINE ftg_test_${subroutine.name}(total_failure_count)
#end if

! ----------- COMPARE -----------
! When ordered is set, compare on process after another to get nice, ordered printing
! When ordered is set, compare one process after another to get nice, ordered printing
IF (ordered .AND. mpi_rank > 0) THEN
CALL p_recv(total_failure_count, mpi_rank - 1, 0)
ELSE
Expand Down
2 changes: 1 addition & 1 deletion templates/NicamStandalone/replay.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ SUBROUTINE ftg_test_${subroutine.name}(total_failure_count)
#end if

! ----------- COMPARE -----------
! When ordered is set, compare on process after another to get nice, ordered printing
! When ordered is set, compare one process after another to get nice, ordered printing
IF (ordered .AND. mpi_rank > 0) THEN
CALL mpi_recv(total_failure_count, 1, MPI_INT, mpi_rank - 1, 0, MPI_COMM_WORLD, mpi_stat, mpi_err)
ELSE
Expand Down

0 comments on commit b11311f

Please sign in to comment.