forked from NOAA-EMC/CICE
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request NOAA-EMC#4 from mvertens/nuopc
cleanup changes to nuopc branch
- Loading branch information
Showing
10 changed files
with
360 additions
and
618 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
module cice_wrapper_mod | ||
|
||
#ifdef CESMCOUPLED | ||
use perf_mod , only : t_startf, t_stopf, t_barrierf | ||
use shr_file_mod , only : shr_file_getlogunit, shr_file_setlogunit | ||
|
||
#else | ||
contains | ||
|
||
! These are just stub routines put in place to remove | ||
|
||
subroutine shr_file_setLogUnit(nunit) | ||
integer, intent(in) :: nunit | ||
! do nothing for this stub - its just here to replace | ||
! having cppdefs in the main program | ||
end subroutine shr_file_setLogUnit | ||
subroutine shr_file_getLogUnit(nunit) | ||
integer, intent(in) :: nunit | ||
! do nothing for this stub - its just here to replace | ||
! having cppdefs in the main program | ||
end subroutine shr_file_getLogUnit | ||
|
||
subroutine t_startf(string) | ||
character(len=*) :: string | ||
end subroutine t_startf | ||
subroutine t_stopf(string) | ||
character(len=*) :: string | ||
end subroutine t_stopf | ||
subroutine t_barrierf(string, comm) | ||
character(len=*) :: string | ||
integer:: comm | ||
end subroutine t_barrierf | ||
#endif | ||
|
||
end module cice_wrapper_mod |
Oops, something went wrong.