123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719 |
- !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ! NASA/GSFC, Data Assimilation Office, Code 910.3, GEOS/DAS !
- !-----------------------------------------------------------------------
- ! CVS m_mpif90.F90,v 1.3 2002-08-22 23:14:52 jacob Exp
- ! CVS MCT_2_8_0
- !-----------------------------------------------------------------------
- !BOP
- !
- ! !MODULE: m_mpif90 - a Fortran 90 style MPI module interface.
- !
- ! !DESCRIPTION:
- !
- ! By wrapping \verb'include "mpif.h"' into a module, \verb"m_mpif()"
- ! provides an easy way to
- !\begin{itemize}
- ! \item avoid the problem with {\sl fixed} or {\sl free} formatted
- ! Fortran 90 files;
- ! \item provide protections with only a limited set of \verb"PUBLIC"
- ! variables; and
- ! \item be extended to a MPI Fortran 90 binding.
- !\end{itemize}
- !
- ! !INTERFACE:
- module m_mpif90
- use m_mpif, only : MP_INTEGER => MPI_INTEGER
- use m_mpif, only : MP_REAL => MPI_REAL
- use m_mpif, only : MP_DOUBLE_PRECISION &
- => MPI_DOUBLE_PRECISION
- use m_mpif, only : MP_LOGICAL => MPI_LOGICAL
- use m_mpif, only : MP_CHARACTER => MPI_CHARACTER
- use m_mpif, only : MP_REAL4 => MPI_REAL4
- use m_mpif, only : MP_REAL8 => MPI_REAL8
- use m_mpif, only : MP_COMM_WORLD => MPI_COMM_WORLD
- use m_mpif, only : MP_COMM_NULL => MPI_COMM_NULL
- use m_mpif, only : MP_SUM => MPI_SUM
- use m_mpif, only : MP_PROD => MPI_PROD
- use m_mpif, only : MP_MIN => MPI_MIN
- use m_mpif, only : MP_MAX => MPI_MAX
- use m_mpif, only : MP_MAX_ERROR_STRING &
- => MPI_MAX_ERROR_STRING
- use m_mpif, only : MP_STATUS_SIZE => MPI_STATUS_SIZE
- use m_mpif, only : MP_ANY_SOURCE => MPI_ANY_SOURCE
- implicit none
- private
- public :: MP_type
- public :: MP_INTEGER
- public :: MP_REAL
- public :: MP_DOUBLE_PRECISION
- public :: MP_LOGICAL
- public :: MP_CHARACTER
- public :: MP_REAL4
- public :: MP_REAL8
- public :: MP_COMM_WORLD
- public :: MP_COMM_NULL
- public :: MP_SUM
- public :: MP_PROD
- public :: MP_MIN
- public :: MP_MAX
- public :: MP_ANY_SOURCE
- public :: MP_MAX_ERROR_STRING
- public :: MP_init
- public :: MP_initialized
- public :: MP_finalize
- public :: MP_abort
- public :: MP_wtime
- public :: MP_wtick
- public :: MP_comm_size
- public :: MP_comm_rank
- public :: MP_comm_dup
- public :: MP_comm_free
- public :: MP_cart_create
- public :: MP_dims_create
- public :: MP_cart_coords
- public :: MP_cart_rank
- public :: MP_error_string
- public :: MP_perr
- public :: MP_STATUS_SIZE
- public :: MP_status
- public :: MP_log2
- ! !REVISION HISTORY:
- ! 09Dec97 - Jing Guo <guo@thunder> - initial prototyping/coding.
- ! . started with everything public, without any interface
- ! declaration.
- ! . Then limited to only variables current expected to
- ! be used.
- !
- !EOP
- !_______________________________________________________________________
- integer,dimension(MP_STATUS_SIZE) :: MP_status
- !----------------------------------------
- interface MP_init
- subroutine MPI_init(ier)
- integer,intent(out) :: ier
- end subroutine MPI_init
- end interface
- interface MP_initialized
- subroutine MPI_initialized(flag,ier)
- logical,intent(out) :: flag
- integer,intent(out) :: ier
- end subroutine MPI_initialized
- end interface
- interface MP_finalize
- subroutine MPI_finalize(ier)
- integer,intent(out) :: ier
- end subroutine MPI_finalize
- end interface
- interface MP_error_string
- subroutine MPI_error_string(ierror,cerror,ln,ier)
- integer,intent(in) :: ierror
- character(len=*),intent(out) :: cerror
- integer,intent(out) :: ln
- integer,intent(out) :: ier
- end subroutine MPI_error_string
- end interface
- interface MP_type; module procedure &
- typeI_, & ! MPI_INTEGER
- typeL_, & ! MPI_LOGICAL
- typeC_, & ! MPI_CHARACTER
- typeSP_, & ! MPI_REAL
- typeDP_, & ! MPI_DOUBLE_PRECISION
- typeI1_, & ! MPI_INTEGER
- typeL1_, & ! MPI_LOGICAL
- typeC1_, & ! MPI_CHARACTER
- typeSP1_, & ! MPI_REAL
- typeDP1_, & ! MPI_DOUBLE_PRECISION
- typeI2_, & ! MPI_INTEGER
- typeL2_, & ! MPI_LOGICAL
- typeC2_, & ! MPI_CHARACTER
- typeSP2_, & ! MPI_REAL
- typeDP2_ ! MPI_DOUBLE_PRECISION
- end interface
- interface MP_perr; module procedure perr_; end interface
- interface MP_abort
- subroutine MPI_abort(comm,errorcode,ier)
- integer,intent(in) :: comm
- integer,intent(in) :: errorcode
- integer,intent(out) :: ier
- end subroutine MPI_abort
- end interface
- !----------------------------------------
- interface MP_wtime
- function MPI_wtime()
- double precision :: MPI_wtime
- end function MPI_wtime
- end interface
- interface MP_wtick
- function MPI_wtick()
- double precision :: MPI_wtick
- end function MPI_wtick
- end interface
- !----------------------------------------
- interface MP_comm_size
- subroutine MPI_comm_size(comm,size,ier)
- integer,intent(in) :: comm
- integer,intent(out) :: size
- integer,intent(out) :: ier
- end subroutine MPI_comm_size
- end interface
- interface MP_comm_rank
- subroutine MPI_comm_rank(comm,rank,ier)
- integer,intent(in) :: comm
- integer,intent(out) :: rank
- integer,intent(out) :: ier
- end subroutine MPI_comm_rank
- end interface
- interface MP_comm_dup
- subroutine MPI_comm_dup(comm,newcomm,ier)
- integer,intent(in) :: comm
- integer,intent(out) :: newcomm
- integer,intent(out) :: ier
- end subroutine MPI_comm_dup
- end interface
- interface MP_comm_free
- subroutine MPI_comm_free(comm,ier)
- integer,intent(inout) :: comm
- integer,intent(out) :: ier
- end subroutine MPI_comm_free
- end interface
- !----------------------------------------
- interface MP_cart_create
- subroutine MPI_cart_create(comm_old,ndims,dims,periods, &
- reorder,comm_cart,ier)
- integer,intent(in) :: comm_old
- integer,intent(in) :: ndims
- integer,dimension(*),intent(in) :: dims
- logical,dimension(*),intent(in) :: periods
- logical, intent(in) :: reorder
- integer,intent(out) :: comm_cart
- integer,intent(out) :: ier
- end subroutine MPI_cart_create
- end interface
- interface MP_dims_create
- subroutine MPI_dims_create(nnodes,ndims,dims,ier)
- integer,intent(in) :: nnodes
- integer,intent(in) :: ndims
- integer,dimension(*),intent(inout) :: dims
- integer,intent(out) :: ier
- end subroutine MPI_dims_create
- end interface
- interface MP_cart_coords
- subroutine MPI_cart_coords(comm,rank,maxdims,coords,ier)
- integer,intent(in) :: comm
- integer,intent(in) :: rank
- integer,intent(in) :: maxdims
- integer,dimension(*),intent(out) :: coords
- integer,intent(out) :: ier
- end subroutine MPI_cart_coords
- end interface
- interface MP_cart_rank
- subroutine MPI_cart_rank(comm,coords,rank,ier)
- integer,intent(in) :: comm
- integer,dimension(*),intent(in) :: coords
- integer,intent(out) :: rank
- integer,intent(out) :: ier
- end subroutine MPI_cart_rank
- end interface
- !----------------------------------------
- character(len=*),parameter :: myname='m_mpif90'
- contains
- !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ! NASA/GSFC, Data Assimilation Office, Code 910.3, GEOS/DAS !
- !BOP -------------------------------------------------------------------
- !
- ! !IROUTINE: typeI_ - return MPI datatype of INTEGER
- !
- ! !DESCRIPTION:
- !
- ! !INTERFACE:
- function typeI_(ival)
- implicit none
- integer,intent(in) :: ival
- integer :: typeI_
- ! !REVISION HISTORY:
- ! 28Sep99 - Jing Guo <guo@dao.gsfc.nasa.gov>
- ! - initial prototype/prolog/code
- !EOP ___________________________________________________________________
- character(len=*),parameter :: myname_=myname//'::typeI_'
- typeI_=MP_INTEGER
- end function typeI_
- !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ! NASA/GSFC, Data Assimilation Office, Code 910.3, GEOS/DAS !
- !BOP -------------------------------------------------------------------
- !
- ! !IROUTINE: typeL_ - return MPI datatype of LOGICAL
- !
- ! !DESCRIPTION:
- !
- ! !INTERFACE:
- function typeL_(lval)
- implicit none
- logical,intent(in) :: lval
- integer :: typeL_
- ! !REVISION HISTORY:
- ! 28Sep99 - Jing Guo <guo@dao.gsfc.nasa.gov>
- ! - initial prototype/prolog/code
- !EOP ___________________________________________________________________
- character(len=*),parameter :: myname_=myname//'::typeL_'
- typeL_=MP_LOGICAL
- end function typeL_
- !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ! NASA/GSFC, Data Assimilation Office, Code 910.3, GEOS/DAS !
- !BOP -------------------------------------------------------------------
- !
- ! !IROUTINE: typeC_ - return MPI datatype of CHARACTER
- !
- ! !DESCRIPTION:
- !
- ! !INTERFACE:
- function typeC_(cval)
- implicit none
- character(len=*),intent(in) :: cval
- integer :: typeC_
- ! !REVISION HISTORY:
- ! 28Sep99 - Jing Guo <guo@dao.gsfc.nasa.gov>
- ! - initial prototype/prolog/code
- !EOP ___________________________________________________________________
- character(len=*),parameter :: myname_=myname//'::typeC_'
- typeC_=MP_CHARACTER
- end function typeC_
- !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ! NASA/GSFC, Data Assimilation Office, Code 910.3, GEOS/DAS !
- !BOP -------------------------------------------------------------------
- !
- ! !IROUTINE: typeSP_ - return MPI datatype of single precision REAL
- !
- ! !DESCRIPTION:
- !
- ! !INTERFACE:
- function typeSP_(rval)
- use m_realkinds,only : SP
- implicit none
- real(SP),intent(in) :: rval
- integer :: typeSP_
- ! !REVISION HISTORY:
- ! 28Sep99 - Jing Guo <guo@dao.gsfc.nasa.gov>
- ! - initial prototype/prolog/code
- !EOP ___________________________________________________________________
- character(len=*),parameter :: myname_=myname//'::typeSP_'
- typeSP_=MP_REAL
- end function typeSP_
- !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ! NASA/GSFC, Data Assimilation Office, Code 910.3, GEOS/DAS !
- !BOP -------------------------------------------------------------------
- !
- ! !IROUTINE: typeDP_ - return MPI datatype of double precision REAL
- !
- ! !DESCRIPTION:
- !
- ! !INTERFACE:
- function typeDP_(rval)
- use m_realkinds,only : DP
- implicit none
- real(DP),intent(in) :: rval
- integer :: typeDP_
- ! !REVISION HISTORY:
- ! 28Sep99 - Jing Guo <guo@dao.gsfc.nasa.gov>
- ! - initial prototype/prolog/code
- !EOP ___________________________________________________________________
- character(len=*),parameter :: myname_=myname//'::typeDP_'
- typeDP_=MP_DOUBLE_PRECISION
- end function typeDP_
- !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ! NASA/GSFC, Data Assimilation Office, Code 910.3, GEOS/DAS !
- !BOP -------------------------------------------------------------------
- !
- ! !IROUTINE: typeI1_ - return MPI datatype of INTEGER
- !
- ! !DESCRIPTION:
- !
- ! !INTERFACE:
- function typeI1_(ival)
- implicit none
- integer,dimension(:),intent(in) :: ival
- integer :: typeI1_
- ! !REVISION HISTORY:
- ! 28Sep99 - Jing Guo <guo@dao.gsfc.nasa.gov>
- ! - initial prototype/prolog/code
- !EOP ___________________________________________________________________
- character(len=*),parameter :: myname_=myname//'::typeI1_'
- typeI1_=MP_INTEGER
- end function typeI1_
- !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ! NASA/GSFC, Data Assimilation Office, Code 910.3, GEOS/DAS !
- !BOP -------------------------------------------------------------------
- !
- ! !IROUTINE: typeL1_ - return MPI datatype of LOGICAL
- !
- ! !DESCRIPTION:
- !
- ! !INTERFACE:
- function typeL1_(lval)
- implicit none
- logical,dimension(:),intent(in) :: lval
- integer :: typeL1_
- ! !REVISION HISTORY:
- ! 28Sep99 - Jing Guo <guo@dao.gsfc.nasa.gov>
- ! - initial prototype/prolog/code
- !EOP ___________________________________________________________________
- character(len=*),parameter :: myname_=myname//'::typeL1_'
- typeL1_=MP_LOGICAL
- end function typeL1_
- !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ! NASA/GSFC, Data Assimilation Office, Code 910.3, GEOS/DAS !
- !BOP -------------------------------------------------------------------
- !
- ! !IROUTINE: typeC1_ - return MPI datatype of CHARACTER
- !
- ! !DESCRIPTION:
- !
- ! !INTERFACE:
- function typeC1_(cval)
- implicit none
- character(len=*),dimension(:),intent(in) :: cval
- integer :: typeC1_
- ! !REVISION HISTORY:
- ! 28Sep99 - Jing Guo <guo@dao.gsfc.nasa.gov>
- ! - initial prototype/prolog/code
- !EOP ___________________________________________________________________
- character(len=*),parameter :: myname_=myname//'::typeC1_'
- typeC1_=MP_CHARACTER
- end function typeC1_
- !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ! NASA/GSFC, Data Assimilation Office, Code 910.3, GEOS/DAS !
- !BOP -------------------------------------------------------------------
- !
- ! !IROUTINE: typeSP1_ - return MPI datatype of single precision REAL
- !
- ! !DESCRIPTION:
- !
- ! !INTERFACE:
- function typeSP1_(rval)
- use m_realkinds,only : SP
- implicit none
- real(SP),dimension(:),intent(in) :: rval
- integer :: typeSP1_
- ! !REVISION HISTORY:
- ! 28Sep99 - Jing Guo <guo@dao.gsfc.nasa.gov>
- ! - initial prototype/prolog/code
- !EOP ___________________________________________________________________
- character(len=*),parameter :: myname_=myname//'::typeSP1_'
- typeSP1_=MP_REAL
- end function typeSP1_
- !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ! NASA/GSFC, Data Assimilation Office, Code 910.3, GEOS/DAS !
- !BOP -------------------------------------------------------------------
- !
- ! !IROUTINE: typeDP1_ - return MPI datatype of double precision REAL
- !
- ! !DESCRIPTION:
- !
- ! !INTERFACE:
- function typeDP1_(rval)
- use m_realkinds,only : DP
- implicit none
- real(DP),dimension(:),intent(in) :: rval
- integer :: typeDP1_
- ! !REVISION HISTORY:
- ! 28Sep99 - Jing Guo <guo@dao.gsfc.nasa.gov>
- ! - initial prototype/prolog/code
- !EOP ___________________________________________________________________
- character(len=*),parameter :: myname_=myname//'::typeDP1_'
- typeDP1_=MP_DOUBLE_PRECISION
- end function typeDP1_
- !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ! NASA/GSFC, Data Assimilation Office, Code 910.3, GEOS/DAS !
- !BOP -------------------------------------------------------------------
- !
- ! !IROUTINE: typeI2_ - return MPI datatype of INTEGER
- !
- ! !DESCRIPTION:
- !
- ! !INTERFACE:
- function typeI2_(ival)
- implicit none
- integer,dimension(:,:),intent(in) :: ival
- integer :: typeI2_
- ! !REVISION HISTORY:
- ! 28Sep99 - Jing Guo <guo@dao.gsfc.nasa.gov>
- ! - initial prototype/prolog/code
- !EOP ___________________________________________________________________
- character(len=*),parameter :: myname_=myname//'::typeI2_'
- typeI2_=MP_INTEGER
- end function typeI2_
- !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ! NASA/GSFC, Data Assimilation Office, Code 910.3, GEOS/DAS !
- !BOP -------------------------------------------------------------------
- !
- ! !IROUTINE: typeL2_ - return MPI datatype of LOGICAL
- !
- ! !DESCRIPTION:
- !
- ! !INTERFACE:
- function typeL2_(lval)
- implicit none
- logical,dimension(:,:),intent(in) :: lval
- integer :: typeL2_
- ! !REVISION HISTORY:
- ! 28Sep99 - Jing Guo <guo@dao.gsfc.nasa.gov>
- ! - initial prototype/prolog/code
- !EOP ___________________________________________________________________
- character(len=*),parameter :: myname_=myname//'::typeL2_'
- typeL2_=MP_LOGICAL
- end function typeL2_
- !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ! NASA/GSFC, Data Assimilation Office, Code 910.3, GEOS/DAS !
- !BOP -------------------------------------------------------------------
- !
- ! !IROUTINE: typeC2_ - return MPI datatype of CHARACTER
- !
- ! !DESCRIPTION:
- !
- ! !INTERFACE:
- function typeC2_(cval)
- implicit none
- character(len=*),dimension(:,:),intent(in) :: cval
- integer :: typeC2_
- ! !REVISION HISTORY:
- ! 28Sep99 - Jing Guo <guo@dao.gsfc.nasa.gov>
- ! - initial prototype/prolog/code
- !EOP ___________________________________________________________________
- character(len=*),parameter :: myname_=myname//'::typeC2_'
- typeC2_=MP_CHARACTER
- end function typeC2_
- !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ! NASA/GSFC, Data Assimilation Office, Code 910.3, GEOS/DAS !
- !BOP -------------------------------------------------------------------
- !
- ! !IROUTINE: typeSP2_ - return MPI datatype of single precision REAL
- !
- ! !DESCRIPTION:
- !
- ! !INTERFACE:
- function typeSP2_(rval)
- use m_realkinds,only : SP
- implicit none
- real(SP),dimension(:,:),intent(in) :: rval
- integer :: typeSP2_
- ! !REVISION HISTORY:
- ! 28Sep99 - Jing Guo <guo@dao.gsfc.nasa.gov>
- ! - initial prototype/prolog/code
- !EOP ___________________________________________________________________
- character(len=*),parameter :: myname_=myname//'::typeSP2_'
- typeSP2_=MP_REAL
- end function typeSP2_
- !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ! NASA/GSFC, Data Assimilation Office, Code 910.3, GEOS/DAS !
- !BOP -------------------------------------------------------------------
- !
- ! !IROUTINE: typeDP2_ - return MPI datatype of double precision REAL
- !
- ! !DESCRIPTION:
- !
- ! !INTERFACE:
- function typeDP2_(rval)
- use m_realkinds,only : DP
- implicit none
- real(DP),dimension(:,:),intent(in) :: rval
- integer :: typeDP2_
- ! !REVISION HISTORY:
- ! 28Sep99 - Jing Guo <guo@dao.gsfc.nasa.gov>
- ! - initial prototype/prolog/code
- !EOP ___________________________________________________________________
- character(len=*),parameter :: myname_=myname//'::typeDP2_'
- typeDP2_=MP_DOUBLE_PRECISION
- end function typeDP2_
- !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ! NASA/GSFC, Data Assimilation Office, Code 910.3, GEOS/DAS !
- !BOP -------------------------------------------------------------------
- !
- ! !IROUTINE: perr_ - MPI error information hanlder
- !
- ! !DESCRIPTION:
- !
- ! !INTERFACE:
- subroutine perr_(proc,MP_proc,ierror)
- use m_stdio, only : stderr
- implicit none
- character(len=*),intent(in) :: proc
- character(len=*),intent(in) :: MP_proc
- integer,intent(in) :: ierror
- ! !REVISION HISTORY:
- ! 21Apr98 - Jing Guo <guo@thunder> - initial prototype/prolog/code
- !EOP ___________________________________________________________________
- character(len=*),parameter :: myname_=myname//'::perr_'
- character(len=MP_MAX_ERROR_STRING) :: estr
- integer :: ln,ier
- call MP_error_string(ierror,estr,ln,ier)
- if(ier /= 0 .or. ln<=0) then
- write(stderr,'(4a,i4)') proc,': ', &
- MP_proc,' error, ierror =',ierror
- else
- write(stderr,'(6a)') proc,': ', &
- MP_proc,' error, "',estr(1:ln),'"'
- endif
- end subroutine perr_
- !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ! NASA/GSFC, Data Assimilation Office, Code 910.3, GEOS/DAS !
- !BOP -------------------------------------------------------------------
- !
- ! !IROUTINE: MP_log2 - The smallest integer its power of 2 is >= nPE
- !
- ! !DESCRIPTION:
- !
- ! !INTERFACE:
- function MP_log2(nPE)
- implicit none
- integer,intent(in) :: nPE
- integer :: MP_log2
- ! !REVISION HISTORY:
- ! 01Feb00 - Jing Guo <guo@dao.gsfc.nasa.gov>
- ! - initial prototype/prolog/code
- !EOP ___________________________________________________________________
- character(len=*),parameter :: myname_=myname//'::MP_log2'
- integer :: n2
- MP_log2=0
- n2=1
- do while(n2<nPE)
- MP_log2 = MP_log2+1
- n2 = n2+n2
- end do
- end function MP_log2
- end module m_mpif90
- !.
|