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.
- Loading branch information
Mariana Vertenstein
committed
Jul 4, 2020
1 parent
6bccf71
commit b4afd2e
Showing
6 changed files
with
249 additions
and
316 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
module cice_wrapper_mod | ||
|
||
#ifdef CESMCOUPLED | ||
use perf_mod, only : t_startf, t_stopf, t_barrierf | ||
#endif | ||
|
||
|
||
contains | ||
|
||
#ifndef CESMCOUPLED | ||
! 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.