253444c6d0
1. New mpifort wrapper compiler: you can utilize mpif.h, use mpi, and use mpi_f08 through this one wrapper compiler 1. mpif77 and mpif90 still exist, but are sym links to mpifort and may be removed in a future release 1. The mpi module has been re-implemented and is significantly "mo' bettah" 1. The mpi_f08 module offers many, many improvements over mpif.h and the mpi module This stuff is coming from a VERY long-lived mercurial branch (3 years!); it'll almost certainly take a few SVN commits and a bunch of testing before I get it correctly committed to the SVN trunk. == More details == Craig Rasmussen and I have been working with the MPI-3 Fortran WG and Fortran J3 committees for a long, long time to make a prototype MPI-3 Fortran bindings implementation. We think we're at a stable enough state to bring this stuff back to the trunk, with the goal of including it in OMPI v1.7. Special thanks go out to everyone who has been incredibly patient and helpful to us in this journey: * Rolf Rabenseifner/HLRS (mastermind/genius behind the entire MPI-3 Fortran effort) * The Fortran J3 committee * Tobias Burnus/gfortran * Tony !Goetz/Absoft * Terry !Donte/Oracle * ...and probably others whom I'm forgetting :-( There's still opportunities for optimization in the mpi_f08 implementation, but by and large, it is as far along as it can be until Fortran compilers start implementing the new F08 dimension(..) syntax. Note that gfortran is currently unsupported for the mpi_f08 module and the new mpi module. gfortran users will a) fall back to the same mpi module implementation that is in OMPI v1.5.x, and b) not get the new mpi_f08 module. The gfortran maintainers are actively working hard to add the necessary features to support both the new mpi_f08 module and the new mpi module implementations. This will take some time. As mentioned above, ompi/mpi/f77 and ompi/mpi/f90 no longer exist. All the fortran bindings implementations have been collated under ompi/mpi/fortran; each implementation has its own subdirectory: {{{ ompi/mpi/fortran/ base/ - glue code mpif-h/ - what used to be ompi/mpi/f77 use-mpi-tkr/ - what used to be ompi/mpi/f90 use-mpi-ignore-tkr/ - new mpi module implementation use-mpi-f08/ - new mpi_f08 module implementation }}} There's also a prototype 6-function-MPI implementation under use-mpi-f08-desc that emulates the new F08 dimension(..) syntax that isn't fully available in Fortran compilers yet. We did that to prove it to ourselves that it could be done once the compilers fully support it. This directory/implementation will likely eventually replace the use-mpi-f08 version. Other things that were done: * ompi_info grew a few new output fields to describe what level of Fortran support is included * Existing Fortran examples in examples/ were renamed; new mpi_f08 examples were added * The old Fortran MPI libraries were renamed: * libmpi_f77 -> libmpi_mpifh * libmpi_f90 -> libmpi_usempi * The configury for Fortran was consolidated and significantly slimmed down. Note that the F77 env variable is now IGNORED for configure; you should only use FC. Example: {{{ shell$ ./configure CC=icc CXX=icpc FC=ifort ... }}} All of this work was done in a Mercurial branch off the SVN trunk, and hosted at Bitbucket. This branch has got to be one of OMPI's longest-running branches. Its first commit was Tue Apr 07 23:01:46 2009 -0400 -- it's over 3 years old! :-) We think we've pulled in all relevant changes from the OMPI trunk (e.g., Fortran implementations of the new MPI-3 MPROBE stuff for mpif.h, use mpi, and use mpi_f08, and the recent Fujitsu Fortran patches). I anticipate some instability when we bring this stuff into the trunk, simply because it touches a LOT of code in the MPI layer in the OMPI code base. We'll try our best to make it as pain-free as possible, but please bear with us when it is committed. This commit was SVN r26283.
404 строки
15 KiB
Fortran
404 строки
15 KiB
Fortran
! -*- fortran -*-
|
|
!
|
|
! Copyright (c) 2004-2006 The Trustees of Indiana University and Indiana
|
|
! University Research and Technology
|
|
! Corporation. All rights reserved.
|
|
! Copyright (c) 2004-2010 The University of Tennessee and The University
|
|
! of Tennessee Research Foundation. All rights
|
|
! reserved.
|
|
! Copyright (c) 2004-2007 High Performance Computing Center Stuttgart,
|
|
! University of Stuttgart. All rights reserved.
|
|
! Copyright (c) 2004-2005 The Regents of the University of California.
|
|
! All rights reserved.
|
|
! Copyright (c) 2006-2012 Cisco Systems, Inc. All rights reserved.
|
|
! Copyright (c) 2009 Oak Ridge National Labs. All rights reserved.
|
|
! $COPYRIGHT$
|
|
!
|
|
! Additional copyrights may follow
|
|
!
|
|
! $HEADER$
|
|
!
|
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
! WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
|
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
!
|
|
! Do ***not*** copy this file to the directory where your Fortran
|
|
! fortran application is compiled unless it is absolutely necessary! Most
|
|
! modern Fortran compilers now support the -I command line flag, which
|
|
! tells the compiler where to find .h files (specifically, this one). For
|
|
! example:
|
|
!
|
|
! shell$ mpif77 foo.f -o foo -I$OMPI_HOME/include
|
|
!
|
|
! will probably do the trick (assuming that you have set OMPI_HOME
|
|
! properly).
|
|
!
|
|
! That being said, OMPI's "mpif77" wrapper compiler should
|
|
! automatically include the -I option for you. The following command
|
|
! should be equivalent to the command listed above:
|
|
!
|
|
! shell$ mpif77 foo.f -o foo
|
|
!
|
|
! You should not copy this file to your local directory because it is
|
|
! possible that this file will be changed between versions of Open MPI.
|
|
! Indeed, this mpif.h is incompatible with the mpif.f of other
|
|
! implementations of MPI. Using this mpif.h with other implementations
|
|
! of MPI, or with other versions of Open MPI will result in undefined
|
|
! behavior (to include incorrect results, segmentation faults,
|
|
! unexplainable "hanging" in your application, etc.). Always use the
|
|
! -I command line option instead (or let mpif77 do it for you).
|
|
!
|
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
! WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
|
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
|
|
!
|
|
! This file contains the bulk of the Open MPI Fortran interface. It
|
|
! is included as a back-end file to both mpif.h (i.e., the
|
|
! standardized MPI Fortran header file) and mpi.f90 (the MPI-2
|
|
! Fortran module source file, found in ompi/mpi/f90).
|
|
!
|
|
! This file is marginally different than mpif.h. mpif.h includes
|
|
! some "external" statements that are not suitable for use with the
|
|
! MPI-2 F90 module, and therefore cannot be included in the mpi.f90
|
|
! source file. Hence, this file is essentially everything that
|
|
! needs to be in the standardized mpif.h *except* the "external"
|
|
! statements, and is therefore suitable to be included in mpi.f90.
|
|
!
|
|
|
|
!
|
|
! First, however, include some output from configure.
|
|
!
|
|
include 'mpif-config.h'
|
|
|
|
!
|
|
! MPI version
|
|
!
|
|
integer MPI_VERSION, MPI_SUBVERSION
|
|
|
|
parameter (MPI_VERSION=2)
|
|
parameter (MPI_SUBVERSION=1)
|
|
!
|
|
! Miscellaneous constants
|
|
!
|
|
integer MPI_ANY_SOURCE, MPI_ANY_TAG
|
|
integer MPI_PROC_NULL
|
|
integer MPI_ROOT
|
|
integer MPI_UNDEFINED
|
|
integer MPI_CART, MPI_GRAPH, MPI_KEYVAL_INVALID
|
|
integer MPI_SOURCE, MPI_TAG, MPI_ERROR
|
|
integer MPI_TAG_UB, MPI_HOST, MPI_IO, MPI_WTIME_IS_GLOBAL
|
|
integer MPI_APPNUM, MPI_LASTUSEDCODE, MPI_UNIVERSE_SIZE
|
|
integer IMPI_CLIENT_SIZE, IMPI_CLIENT_COLOR
|
|
integer IMPI_HOST_SIZE, IMPI_HOST_COLOR
|
|
integer MPI_BSEND_OVERHEAD
|
|
integer MPI_ORDER_C, MPI_ORDER_FORTRAN
|
|
integer MPI_DISTRIBUTE_BLOCK, MPI_DISTRIBUTE_CYCLIC
|
|
integer MPI_DISTRIBUTE_NONE, MPI_DISTRIBUTE_DFLT_DARG
|
|
integer MPI_TYPECLASS_INTEGER, MPI_TYPECLASS_REAL
|
|
integer MPI_TYPECLASS_COMPLEX
|
|
integer MPI_MODE_NOCHECK, MPI_MODE_NOPRECEDE, MPI_MODE_NOPUT
|
|
integer MPI_MODE_NOSTORE, MPI_MODE_NOSUCCEED
|
|
integer MPI_LOCK_EXCLUSIVE, MPI_LOCK_SHARED
|
|
integer MPI_WIN_BASE, MPI_WIN_SIZE, MPI_WIN_DISP_UNIT
|
|
|
|
parameter (MPI_ANY_SOURCE=-1)
|
|
parameter (MPI_ANY_TAG=-1)
|
|
parameter (MPI_PROC_NULL=-2)
|
|
parameter (MPI_ROOT=-4)
|
|
parameter (MPI_UNDEFINED=-32766)
|
|
parameter (MPI_CART=1)
|
|
parameter (MPI_GRAPH=2)
|
|
parameter (MPI_KEYVAL_INVALID=-1)
|
|
parameter (MPI_SOURCE=1)
|
|
parameter (MPI_TAG=2)
|
|
parameter (MPI_ERROR=3)
|
|
parameter (MPI_TAG_UB=0)
|
|
parameter (MPI_HOST=1)
|
|
parameter (MPI_IO=2)
|
|
parameter (MPI_WTIME_IS_GLOBAL=3)
|
|
parameter (MPI_APPNUM=4)
|
|
parameter (MPI_LASTUSEDCODE=5)
|
|
parameter (MPI_UNIVERSE_SIZE=6)
|
|
parameter (MPI_WIN_BASE=7)
|
|
parameter (MPI_WIN_SIZE=8)
|
|
parameter (MPI_WIN_DISP_UNIT=9)
|
|
parameter (IMPI_CLIENT_SIZE=10)
|
|
parameter (IMPI_CLIENT_COLOR=11)
|
|
parameter (IMPI_HOST_SIZE=12)
|
|
parameter (IMPI_HOST_COLOR=13)
|
|
|
|
parameter (MPI_BSEND_OVERHEAD=128)
|
|
parameter (MPI_ORDER_C=0)
|
|
parameter (MPI_ORDER_FORTRAN=1)
|
|
parameter (MPI_DISTRIBUTE_BLOCK=0)
|
|
parameter (MPI_DISTRIBUTE_CYCLIC=1)
|
|
parameter (MPI_DISTRIBUTE_NONE=2)
|
|
parameter (MPI_DISTRIBUTE_DFLT_DARG=-1)
|
|
parameter (MPI_TYPECLASS_INTEGER=1)
|
|
parameter (MPI_TYPECLASS_REAL=2)
|
|
parameter (MPI_TYPECLASS_COMPLEX=3)
|
|
parameter (MPI_MODE_NOCHECK=1)
|
|
parameter (MPI_MODE_NOPRECEDE=2)
|
|
parameter (MPI_MODE_NOPUT=4)
|
|
parameter (MPI_MODE_NOSTORE=8)
|
|
parameter (MPI_MODE_NOSUCCEED=16)
|
|
parameter (MPI_LOCK_EXCLUSIVE=1)
|
|
parameter (MPI_LOCK_SHARED=2)
|
|
|
|
!
|
|
! MPI sentinel values
|
|
!
|
|
! Several of these types were chosen with care to match specific
|
|
! overloaded functions in the F90 bindings. They should also match
|
|
! the types of their corresponding C variables. Do not arbitrarily
|
|
! change their types without also updating the F90 bindings and
|
|
! their corresponding types in ompi/mpi/f77/constants.h and
|
|
! ompi/mpi/runtime/ompi_init.c!
|
|
!
|
|
! MPI_BOTTOM is only used where choice buffers can be used (meaning
|
|
! that we already have overloaded F90 bindings for all available
|
|
! types), so any type is fine.
|
|
integer MPI_BOTTOM
|
|
! MPI_IN_PLACE has the same rationale as MPI_BOTTOM.
|
|
integer MPI_IN_PLACE
|
|
! Making MPI_ARGV_NULL be the same type as the parameter that is
|
|
! exepected in the F90 binding for MPI_COMM_SPAWN means that we
|
|
! don't need another binding for MPI_COMM_SPAWN.
|
|
character MPI_ARGV_NULL(1)
|
|
! The array_of_argv parameter in the F90 bindings for
|
|
! MPI_COMM_SPAWN_MULTIPLE takes a variable number of dimensions
|
|
! (specified by the "count" parameter), so it's not possible to have
|
|
! a single variable match all possible values. Hence, make it an
|
|
! entirely different type (one that would never likely be used by a
|
|
! correct program, e.g., double) and have a separate F90 binding for
|
|
! matching just this type.
|
|
double precision MPI_ARGVS_NULL
|
|
! MPI_ERRCODES_IGNORE has similar rationale to MPI_ARGV_NULL. The
|
|
! F77 functions are all smart enough to check that the errcodes
|
|
! parameter is not ERRCODES_IGNORE before assigning values into it
|
|
! (hence, the fact that this is an array of only 1 element does not
|
|
! matter -- we'll never overrun it because we never assign values
|
|
! into it).
|
|
integer MPI_ERRCODES_IGNORE(1)
|
|
! MPI_STATUS_IGNORE has similar rationale to MPI_ERRCODES_IGNORE.
|
|
integer MPI_STATUS_IGNORE(MPI_STATUS_SIZE)
|
|
! MPI_STATUSES_IGNORE has similar rationale to MPI_ARGVS_NULL.
|
|
double precision MPI_STATUSES_IGNORE
|
|
|
|
common/mpi_fortran_bottom/MPI_BOTTOM
|
|
common/mpi_fortran_in_place/MPI_IN_PLACE
|
|
common/mpi_fortran_argv_null/MPI_ARGV_NULL
|
|
common/mpi_fortran_argvs_null/MPI_ARGVS_NULL
|
|
common/mpi_fortran_errcodes_ignore/MPI_ERRCODES_IGNORE
|
|
common/mpi_fortran_status_ignore/MPI_STATUS_IGNORE
|
|
common/mpi_fortran_statuses_ignore/MPI_STATUSES_IGNORE
|
|
!
|
|
! MPI_Init_thread constants
|
|
!
|
|
integer MPI_THREAD_SINGLE, MPI_THREAD_FUNNELED
|
|
integer MPI_THREAD_SERIALIZED, MPI_THREAD_MULTIPLE
|
|
|
|
parameter (MPI_THREAD_SINGLE=0)
|
|
parameter (MPI_THREAD_FUNNELED=1)
|
|
parameter (MPI_THREAD_SERIALIZED=2)
|
|
parameter (MPI_THREAD_MULTIPLE=3)
|
|
!
|
|
! error classes
|
|
!
|
|
integer MPI_SUCCESS
|
|
integer MPI_ERR_BUFFER
|
|
integer MPI_ERR_COUNT
|
|
integer MPI_ERR_TYPE
|
|
integer MPI_ERR_TAG
|
|
integer MPI_ERR_COMM
|
|
integer MPI_ERR_RANK
|
|
integer MPI_ERR_REQUEST
|
|
integer MPI_ERR_ROOT
|
|
integer MPI_ERR_GROUP
|
|
integer MPI_ERR_OP
|
|
integer MPI_ERR_TOPOLOGY
|
|
integer MPI_ERR_DIMS
|
|
integer MPI_ERR_ARG
|
|
integer MPI_ERR_UNKNOWN
|
|
integer MPI_ERR_TRUNCATE
|
|
integer MPI_ERR_OTHER
|
|
integer MPI_ERR_INTERN
|
|
integer MPI_ERR_IN_STATUS
|
|
integer MPI_ERR_PENDING
|
|
integer MPI_ERR_ACCESS
|
|
integer MPI_ERR_AMODE
|
|
integer MPI_ERR_ASSERT
|
|
integer MPI_ERR_BAD_FILE
|
|
integer MPI_ERR_BASE
|
|
integer MPI_ERR_CONVERSION
|
|
integer MPI_ERR_DISP
|
|
integer MPI_ERR_DUP_DATAREP
|
|
integer MPI_ERR_FILE_EXISTS
|
|
integer MPI_ERR_FILE_IN_USE
|
|
integer MPI_ERR_FILE
|
|
integer MPI_ERR_INFO_KEY
|
|
integer MPI_ERR_INFO_NOKEY
|
|
integer MPI_ERR_INFO_VALUE
|
|
integer MPI_ERR_INFO
|
|
integer MPI_ERR_IO
|
|
integer MPI_ERR_KEYVAL
|
|
integer MPI_ERR_LOCKTYPE
|
|
integer MPI_ERR_NAME
|
|
integer MPI_ERR_NO_MEM
|
|
integer MPI_ERR_NOT_SAME
|
|
integer MPI_ERR_NO_SPACE
|
|
integer MPI_ERR_NO_SUCH_FILE
|
|
integer MPI_ERR_PORT
|
|
integer MPI_ERR_QUOTA
|
|
integer MPI_ERR_READ_ONLY
|
|
integer MPI_ERR_RMA_CONFLICT
|
|
integer MPI_ERR_RMA_SYNC
|
|
integer MPI_ERR_SERVICE
|
|
integer MPI_ERR_SIZE
|
|
integer MPI_ERR_SPAWN
|
|
integer MPI_ERR_UNSUPPORTED_DATAREP
|
|
integer MPI_ERR_UNSUPPORTED_OPERATION
|
|
integer MPI_ERR_WIN
|
|
|
|
integer MPI_ERR_SYSRESOURCE
|
|
integer MPI_ERR_LASTCODE
|
|
|
|
parameter( MPI_SUCCESS = 0)
|
|
parameter( MPI_ERR_BUFFER = 1)
|
|
parameter( MPI_ERR_COUNT = 2)
|
|
parameter( MPI_ERR_TYPE = 3)
|
|
parameter( MPI_ERR_TAG = 4)
|
|
parameter( MPI_ERR_COMM = 5)
|
|
parameter( MPI_ERR_RANK = 6)
|
|
parameter( MPI_ERR_REQUEST = 7)
|
|
parameter( MPI_ERR_ROOT = 8)
|
|
parameter( MPI_ERR_GROUP = 9)
|
|
parameter( MPI_ERR_OP = 10)
|
|
parameter( MPI_ERR_TOPOLOGY = 11)
|
|
parameter( MPI_ERR_DIMS = 12)
|
|
parameter( MPI_ERR_ARG = 13)
|
|
parameter( MPI_ERR_UNKNOWN = 14)
|
|
parameter( MPI_ERR_TRUNCATE = 15)
|
|
parameter( MPI_ERR_OTHER = 16)
|
|
parameter( MPI_ERR_INTERN = 17)
|
|
parameter( MPI_ERR_IN_STATUS = 18)
|
|
parameter( MPI_ERR_PENDING = 19)
|
|
parameter( MPI_ERR_ACCESS = 20)
|
|
parameter( MPI_ERR_AMODE = 21)
|
|
parameter( MPI_ERR_ASSERT = 22)
|
|
parameter( MPI_ERR_BAD_FILE = 23)
|
|
parameter( MPI_ERR_BASE = 24)
|
|
parameter( MPI_ERR_CONVERSION = 25)
|
|
parameter( MPI_ERR_DISP = 26)
|
|
parameter( MPI_ERR_DUP_DATAREP = 27)
|
|
parameter( MPI_ERR_FILE_EXISTS = 28)
|
|
parameter( MPI_ERR_FILE_IN_USE = 29)
|
|
parameter( MPI_ERR_FILE = 30)
|
|
parameter( MPI_ERR_INFO_KEY = 31)
|
|
parameter( MPI_ERR_INFO_NOKEY = 32)
|
|
parameter( MPI_ERR_INFO_VALUE = 33)
|
|
parameter( MPI_ERR_INFO = 34)
|
|
parameter( MPI_ERR_IO = 35)
|
|
parameter( MPI_ERR_KEYVAL = 36)
|
|
parameter( MPI_ERR_LOCKTYPE = 37)
|
|
parameter( MPI_ERR_NAME = 38)
|
|
parameter( MPI_ERR_NO_MEM = 39)
|
|
parameter( MPI_ERR_NOT_SAME = 40)
|
|
parameter( MPI_ERR_NO_SPACE = 41)
|
|
parameter( MPI_ERR_NO_SUCH_FILE = 42)
|
|
parameter( MPI_ERR_PORT = 43)
|
|
parameter( MPI_ERR_QUOTA = 44)
|
|
parameter( MPI_ERR_READ_ONLY = 45)
|
|
parameter( MPI_ERR_RMA_CONFLICT = 46)
|
|
parameter( MPI_ERR_RMA_SYNC = 47)
|
|
parameter( MPI_ERR_SERVICE = 48)
|
|
parameter( MPI_ERR_SIZE = 49)
|
|
parameter( MPI_ERR_SPAWN = 50)
|
|
parameter( MPI_ERR_UNSUPPORTED_DATAREP = 51)
|
|
parameter( MPI_ERR_UNSUPPORTED_OPERATION= 52)
|
|
parameter( MPI_ERR_WIN = 53)
|
|
|
|
parameter( MPI_ERR_SYSRESOURCE = -2)
|
|
parameter( MPI_ERR_LASTCODE = 54)
|
|
|
|
!
|
|
! comparison results
|
|
!
|
|
integer MPI_IDENT, MPI_CONGRUENT, MPI_SIMILAR, MPI_UNEQUAL
|
|
|
|
parameter (MPI_IDENT=0)
|
|
parameter (MPI_CONGRUENT=1)
|
|
parameter (MPI_SIMILAR=2)
|
|
parameter (MPI_UNEQUAL=3)
|
|
!
|
|
! datatype combiners
|
|
!
|
|
integer MPI_COMBINER_NAMED
|
|
integer MPI_COMBINER_DUP
|
|
integer MPI_COMBINER_CONTIGUOUS
|
|
integer MPI_COMBINER_VECTOR
|
|
integer MPI_COMBINER_HVECTOR_INTEGER
|
|
integer MPI_COMBINER_HVECTOR
|
|
integer MPI_COMBINER_INDEXED
|
|
integer MPI_COMBINER_HINDEXED_INTEGER
|
|
integer MPI_COMBINER_HINDEXED
|
|
integer MPI_COMBINER_INDEXED_BLOCK
|
|
integer MPI_COMBINER_STRUCT_INTEGER
|
|
integer MPI_COMBINER_STRUCT
|
|
integer MPI_COMBINER_SUBARRAY
|
|
integer MPI_COMBINER_DARRAY
|
|
integer MPI_COMBINER_F90_REAL
|
|
integer MPI_COMBINER_F90_COMPLEX
|
|
integer MPI_COMBINER_F90_INTEGER
|
|
integer MPI_COMBINER_RESIZED
|
|
|
|
parameter (MPI_COMBINER_NAMED=0)
|
|
parameter (MPI_COMBINER_DUP=1)
|
|
parameter (MPI_COMBINER_CONTIGUOUS=2)
|
|
parameter (MPI_COMBINER_VECTOR=3)
|
|
parameter (MPI_COMBINER_HVECTOR_INTEGER=4)
|
|
parameter (MPI_COMBINER_HVECTOR=5)
|
|
parameter (MPI_COMBINER_INDEXED=6)
|
|
parameter (MPI_COMBINER_HINDEXED_INTEGER=7)
|
|
parameter (MPI_COMBINER_HINDEXED=8)
|
|
parameter (MPI_COMBINER_INDEXED_BLOCK=9)
|
|
parameter (MPI_COMBINER_STRUCT_INTEGER=10)
|
|
parameter (MPI_COMBINER_STRUCT=11)
|
|
parameter (MPI_COMBINER_SUBARRAY=12)
|
|
parameter (MPI_COMBINER_DARRAY=13)
|
|
parameter (MPI_COMBINER_F90_REAL=14)
|
|
parameter (MPI_COMBINER_F90_COMPLEX=15)
|
|
parameter (MPI_COMBINER_F90_INTEGER=16)
|
|
parameter (MPI_COMBINER_RESIZED=17)
|
|
|
|
!
|
|
! Communicator split type constants.
|
|
!
|
|
integer MPI_COMM_TYPE_SHARED
|
|
parameter (MPI_COMM_TYPE_SHARED=0)
|
|
|
|
!
|
|
! lookup table indices
|
|
!
|
|
! Now generated; located at bottom of mpif-common.h file
|
|
!
|
|
|
|
integer MPI_MAX, MPI_MIN, MPI_SUM, MPI_PROD, MPI_LAND
|
|
integer MPI_BAND, MPI_LOR, MPI_BOR, MPI_LXOR, MPI_BXOR
|
|
integer MPI_MAXLOC, MPI_MINLOC, MPI_REPLACE
|
|
|
|
parameter (MPI_MAX=1)
|
|
parameter (MPI_MIN=2)
|
|
parameter (MPI_SUM=3)
|
|
parameter (MPI_PROD=4)
|
|
parameter (MPI_LAND=5)
|
|
parameter (MPI_BAND=6)
|
|
parameter (MPI_LOR=7)
|
|
parameter (MPI_BOR=8)
|
|
parameter (MPI_LXOR=9)
|
|
parameter (MPI_BXOR=10)
|
|
parameter (MPI_MAXLOC=11)
|
|
parameter (MPI_MINLOC=12)
|
|
parameter (MPI_REPLACE=13)
|