2004-01-07 21:39:46 +00:00
|
|
|
#
|
2007-09-19 23:24:23 +00:00
|
|
|
# Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
|
2005-11-05 19:57:48 +00:00
|
|
|
# University Research and Technology
|
|
|
|
# Corporation. All rights reserved.
|
2012-08-08 13:17:57 +00:00
|
|
|
# Copyright (c) 2004-2012 The University of Tennessee and The University
|
2005-11-05 19:57:48 +00:00
|
|
|
# of Tennessee Research Foundation. All rights
|
|
|
|
# reserved.
|
2009-04-24 16:39:33 +00:00
|
|
|
# Copyright (c) 2004-2009 High Performance Computing Center Stuttgart,
|
2004-11-28 20:09:25 +00:00
|
|
|
# University of Stuttgart. All rights reserved.
|
2005-03-24 12:43:37 +00:00
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2014-03-27 21:41:59 +00:00
|
|
|
# Copyright (c) 2006-2014 Cisco Systems, Inc. All rights reserved.
|
2013-07-01 12:40:08 +00:00
|
|
|
# Copyright (c) 2011-2012 Inria. All rights reserved.
|
|
|
|
# Copyright (c) 2011-2012 Universite Bordeaux 1
|
2014-03-11 23:02:27 +00:00
|
|
|
# Copyright (c) 2013-2014 Los Alamos National Security, LLC. All rights
|
2013-10-02 14:26:58 +00:00
|
|
|
# reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-01-07 21:39:46 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2004-08-13 20:42:38 +00:00
|
|
|
SUBDIRS = profile
|
|
|
|
|
2004-01-16 22:40:27 +00:00
|
|
|
#
|
2004-06-07 15:33:53 +00:00
|
|
|
# OMPI_PRPOFILING_DEFINES flag is enabled when we want our MPI_* symbols
|
2004-01-16 22:40:27 +00:00
|
|
|
# to be replaced by PMPI_*. In other words, this flag decides
|
|
|
|
# whether "profile/defines.h" is included or not. "profile/defines.h"
|
|
|
|
# replaces all MPI_* symbols with PMPI_* symbols. In this directory,
|
|
|
|
# we need it to be 0
|
|
|
|
#
|
2004-08-13 20:42:38 +00:00
|
|
|
|
2012-04-27 01:09:37 +00:00
|
|
|
AM_CPPFLAGS = -DOMPI_PROFILE_LAYER=0 -DOMPI_COMPILING_FORTRAN_WRAPPERS=1
|
2004-08-13 20:42:38 +00:00
|
|
|
|
2006-09-11 23:18:24 +00:00
|
|
|
# The top directory only builds MPI_* bindings and some support
|
|
|
|
# glue. The bottom directory only builds PMPI_* bindings. Each
|
== Highlights ==
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.
2012-04-18 15:57:29 +00:00
|
|
|
# directory is built when certain conditions are met. If the mpif.h
|
2006-09-11 23:18:24 +00:00
|
|
|
# bindings are disabled, nothing in the top or bottom directory is
|
|
|
|
# built.
|
2004-01-16 22:40:27 +00:00
|
|
|
#
|
== Highlights ==
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.
2012-04-18 15:57:29 +00:00
|
|
|
# If the mpif.h MPI API bindings are enabled, the glue functions in
|
|
|
|
# the top directory are always built.
|
2006-09-11 23:18:24 +00:00
|
|
|
#
|
|
|
|
# The cases where the MPI API functions are build top directory needs
|
|
|
|
# to be built are:
|
|
|
|
#
|
|
|
|
# 1. When profiling is disabled
|
|
|
|
# 2. When profiling is enabled but weak symbol support is absent
|
2004-01-16 22:40:27 +00:00
|
|
|
#
|
2004-08-13 20:42:38 +00:00
|
|
|
|
2006-09-08 01:35:49 +00:00
|
|
|
lib_LTLIBRARIES =
|
2014-01-10 21:30:58 +00:00
|
|
|
libmpi_mpifh_la_LIBADD = $(top_builddir)/ompi/libmpi.la $(OMPI_MPIEXT_MPIFH_LIBS)
|
== Highlights ==
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.
2012-04-18 15:57:29 +00:00
|
|
|
libmpi_mpifh_la_LDFLAGS = -version-info $(libmpi_mpifh_so_version)
|
2006-09-08 01:35:49 +00:00
|
|
|
|
== Highlights ==
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.
2012-04-18 15:57:29 +00:00
|
|
|
# Are we building the mpif.h bindings at all?
|
|
|
|
if OMPI_BUILD_FORTRAN_MPIFH_BINDINGS
|
2006-09-11 23:18:24 +00:00
|
|
|
# If yes, then we need to build the installable library and the glue
|
|
|
|
# convenience library that will be sucked up into the main libmpi.
|
== Highlights ==
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.
2012-04-18 15:57:29 +00:00
|
|
|
lib_LTLIBRARIES += libmpi_mpifh.la
|
2006-09-11 23:18:24 +00:00
|
|
|
# Do we need to suck in the convenience library from the lower
|
|
|
|
# directory?
|
== Highlights ==
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.
2012-04-18 15:57:29 +00:00
|
|
|
if BUILD_PMPI_FORTRAN_MPIFH_BINDINGS_LAYER
|
|
|
|
libmpi_mpifh_la_LIBADD += profile/libmpi_mpifh_pmpi.la
|
2004-01-08 13:39:38 +00:00
|
|
|
endif
|
2004-04-13 23:05:31 +00:00
|
|
|
endif
|
|
|
|
|
2004-01-09 17:44:07 +00:00
|
|
|
headers = \
|
2004-01-17 02:44:33 +00:00
|
|
|
bindings.h \
|
2012-10-05 01:47:05 +00:00
|
|
|
prototypes_mpi.h \
|
2012-10-05 03:56:31 +00:00
|
|
|
status-conversion.h
|
2004-08-13 20:42:38 +00:00
|
|
|
|
|
|
|
#
|
== Highlights ==
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.
2012-04-18 15:57:29 +00:00
|
|
|
# These files are only built and added to libmpi_mpifh.la in certain cases.
|
2004-08-13 20:42:38 +00:00
|
|
|
#
|
== Highlights ==
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.
2012-04-18 15:57:29 +00:00
|
|
|
libmpi_mpifh_la_SOURCES =
|
2004-08-13 20:42:38 +00:00
|
|
|
|
== Highlights ==
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.
2012-04-18 15:57:29 +00:00
|
|
|
if BUILD_MPI_FORTRAN_MPIFH_BINDINGS_LAYER
|
|
|
|
libmpi_mpifh_la_SOURCES += \
|
2004-04-16 02:33:49 +00:00
|
|
|
abort_f.c \
|
|
|
|
add_error_class_f.c \
|
|
|
|
add_error_code_f.c \
|
|
|
|
add_error_string_f.c \
|
|
|
|
address_f.c \
|
|
|
|
allgather_f.c \
|
|
|
|
allgatherv_f.c \
|
2004-01-17 02:44:33 +00:00
|
|
|
alloc_mem_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
allreduce_f.c \
|
|
|
|
alltoall_f.c \
|
|
|
|
alltoallv_f.c \
|
|
|
|
alltoallw_f.c \
|
|
|
|
attr_delete_f.c \
|
|
|
|
attr_get_f.c \
|
|
|
|
attr_put_f.c \
|
|
|
|
barrier_f.c \
|
|
|
|
bcast_f.c \
|
|
|
|
bsend_f.c \
|
|
|
|
bsend_init_f.c \
|
|
|
|
buffer_attach_f.c \
|
|
|
|
buffer_detach_f.c \
|
|
|
|
cancel_f.c \
|
|
|
|
cart_coords_f.c \
|
|
|
|
cart_create_f.c \
|
|
|
|
cartdim_get_f.c \
|
|
|
|
cart_get_f.c \
|
|
|
|
cart_map_f.c \
|
|
|
|
cart_rank_f.c \
|
|
|
|
cart_shift_f.c \
|
|
|
|
cart_sub_f.c \
|
|
|
|
close_port_f.c \
|
|
|
|
comm_accept_f.c \
|
|
|
|
comm_call_errhandler_f.c \
|
|
|
|
comm_compare_f.c \
|
|
|
|
comm_connect_f.c \
|
|
|
|
comm_create_errhandler_f.c \
|
|
|
|
comm_create_f.c \
|
2013-10-02 14:26:58 +00:00
|
|
|
comm_create_group_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
comm_create_keyval_f.c \
|
|
|
|
comm_delete_attr_f.c \
|
|
|
|
comm_disconnect_f.c \
|
|
|
|
comm_dup_f.c \
|
2013-10-02 14:26:58 +00:00
|
|
|
comm_dup_with_info_f.c \
|
|
|
|
comm_idup_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
comm_free_f.c \
|
|
|
|
comm_free_keyval_f.c \
|
|
|
|
comm_get_attr_f.c \
|
|
|
|
comm_get_errhandler_f.c \
|
2014-03-27 21:41:59 +00:00
|
|
|
comm_get_info_f.c \
|
2004-01-17 02:44:33 +00:00
|
|
|
comm_get_name_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
comm_get_parent_f.c \
|
|
|
|
comm_group_f.c \
|
|
|
|
comm_join_f.c \
|
|
|
|
comm_rank_f.c \
|
|
|
|
comm_remote_group_f.c \
|
|
|
|
comm_remote_size_f.c \
|
|
|
|
comm_set_attr_f.c \
|
|
|
|
comm_set_errhandler_f.c \
|
2014-03-27 21:41:59 +00:00
|
|
|
comm_set_info_f.c \
|
2004-01-17 02:44:33 +00:00
|
|
|
comm_set_name_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
comm_size_f.c \
|
|
|
|
comm_spawn_f.c \
|
|
|
|
comm_spawn_multiple_f.c \
|
|
|
|
comm_split_f.c \
|
2012-01-18 23:35:21 +00:00
|
|
|
comm_split_type_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
comm_test_inter_f.c \
|
2013-07-01 12:40:08 +00:00
|
|
|
dist_graph_create_adjacent_f.c \
|
|
|
|
dist_graph_create_f.c \
|
|
|
|
dist_graph_neighbors_f.c \
|
|
|
|
dist_graph_neighbors_count_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
dims_create_f.c \
|
|
|
|
errhandler_create_f.c \
|
|
|
|
errhandler_free_f.c \
|
|
|
|
errhandler_get_f.c \
|
|
|
|
errhandler_set_f.c \
|
|
|
|
error_class_f.c \
|
|
|
|
error_string_f.c \
|
|
|
|
exscan_f.c \
|
Many updates and bug fixes for the Fortran bindings. Sorry these
aren't separated out into individual commits; they represent a few
months of work in the Mercurial branch, and it seemed error-prone to
try to break them up into multiple SVN commits.
* Remove 2nd overloaded interfaces for MPI_TESTALL, MPI_TESTSOME,
MPI_WAITALL, and MPI_WAITSOME in the "mpi" module implementations
(because we're not allowed to have them, anyway -- it causes
complications in the profiling interface). This forced an MPI-2.2
errata in the MPI Forum; we applied the errata here (the array of
statuses parameter could not have a specific dimension specified in
the dummy argument). Fixes trac:3166.
* Similarly, fix type for MPI_ARGVS_NULL in Fortran
* Add MPI_3.0 function MPI_F_SYNC_REG (Fortran interfaces only).
* Add MPI-3.0 MPI_MESSAGE_NO_PROC in the mpi_f08 module.
* Added mpi_f08 handle comparison operators, per MPI-3.0 addendum to
the F08 proposal at the last Forum meeting.
* Added missing type(MPI_File) and type(Message) in mpi_f08 module.
* Fix --disable-mpi-io configure switch with all Fortran interfaces
* Re-factor the Fortran header files to be fundamentally simpler and
easier to maintain. Fortran constant values in the header files
are now generated by a script named mpif-values.pl during
autogen.pl (they were previously generated by mpif-common.pl, but
it was quite a bit more subtle/complex). A second commit will
follow this one to update svn:ignore values (just to ensure we
don't muck up the first commit with the SVN client getting confused
by the changed ignore values and new/changed files).
* Fix some dependencies for compile ordering in
ompi/mpi/fortran/use-mpi-ignore-tkr/Makefile.am.
* Fix bad wording in several places (.m4 file name, ompi_info output,
etc.): we previoulsy said "F08 assumed shape" when we really meant
"F08 assumed rank" (for Fortran gurus, those are very different
things).
* Removed the GREEK/SVN version string from mpif.h. It really had no
purpose being there.
Still to be done:
* Handling of 2D array of strings in MPI_COMM_SPAWN_MULTIPLE still
isn't right yet. Not sure how many people really care about this
:-), but it is still broken.
This commit was SVN r26997.
The following Trac tickets were found above:
Ticket 3166 --> https://svn.open-mpi.org/trac/ompi/ticket/3166
2012-08-10 21:19:47 +00:00
|
|
|
f_sync_reg_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
finalized_f.c \
|
2004-01-17 02:44:33 +00:00
|
|
|
finalize_f.c \
|
2004-03-16 23:19:39 +00:00
|
|
|
free_mem_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
gather_f.c \
|
|
|
|
gatherv_f.c \
|
|
|
|
get_address_f.c \
|
|
|
|
get_count_f.c \
|
|
|
|
get_elements_f.c \
|
2013-07-23 15:36:03 +00:00
|
|
|
get_elements_x_f.c \
|
2012-02-02 23:57:09 +00:00
|
|
|
get_library_version_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
get_processor_name_f.c \
|
|
|
|
get_version_f.c \
|
|
|
|
graph_create_f.c \
|
|
|
|
graphdims_get_f.c \
|
|
|
|
graph_get_f.c \
|
|
|
|
graph_map_f.c \
|
|
|
|
graph_neighbors_count_f.c \
|
|
|
|
graph_neighbors_f.c \
|
|
|
|
grequest_complete_f.c \
|
|
|
|
grequest_start_f.c \
|
|
|
|
group_compare_f.c \
|
|
|
|
group_difference_f.c \
|
|
|
|
group_excl_f.c \
|
|
|
|
group_free_f.c \
|
|
|
|
group_incl_f.c \
|
|
|
|
group_intersection_f.c \
|
|
|
|
group_range_excl_f.c \
|
|
|
|
group_range_incl_f.c \
|
|
|
|
group_rank_f.c \
|
|
|
|
group_size_f.c \
|
|
|
|
group_translate_ranks_f.c \
|
|
|
|
group_union_f.c \
|
2012-06-22 20:54:12 +00:00
|
|
|
iallgather_f.c \
|
|
|
|
iallgatherv_f.c \
|
|
|
|
iallreduce_f.c \
|
|
|
|
ialltoall_f.c \
|
|
|
|
ialltoallv_f.c \
|
|
|
|
ialltoallw_f.c \
|
|
|
|
ibarrier_f.c \
|
|
|
|
ibcast_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
ibsend_f.c \
|
2012-06-22 20:54:12 +00:00
|
|
|
iexscan_f.c \
|
|
|
|
igather_f.c \
|
|
|
|
igatherv_f.c \
|
== Highlights ==
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.
2012-04-18 15:57:29 +00:00
|
|
|
improbe_f.c \
|
|
|
|
imrecv_f.c \
|
2013-09-26 21:55:08 +00:00
|
|
|
ineighbor_allgather_f.c \
|
|
|
|
ineighbor_allgatherv_f.c \
|
|
|
|
ineighbor_alltoall_f.c \
|
|
|
|
ineighbor_alltoallv_f.c \
|
|
|
|
ineighbor_alltoallw_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
info_create_f.c \
|
|
|
|
info_delete_f.c \
|
|
|
|
info_dup_f.c \
|
|
|
|
info_free_f.c \
|
|
|
|
info_get_f.c \
|
|
|
|
info_get_nkeys_f.c \
|
|
|
|
info_get_nthkey_f.c \
|
|
|
|
info_get_valuelen_f.c \
|
|
|
|
info_set_f.c \
|
|
|
|
init_f.c \
|
|
|
|
initialized_f.c \
|
|
|
|
init_thread_f.c \
|
|
|
|
intercomm_create_f.c \
|
|
|
|
intercomm_merge_f.c \
|
|
|
|
iprobe_f.c \
|
|
|
|
irecv_f.c \
|
2012-06-22 20:54:12 +00:00
|
|
|
ireduce_f.c \
|
|
|
|
ireduce_scatter_f.c \
|
|
|
|
ireduce_scatter_block_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
irsend_f.c \
|
|
|
|
isend_f.c \
|
2012-06-22 20:54:12 +00:00
|
|
|
iscan_f.c \
|
|
|
|
iscatter_f.c \
|
|
|
|
iscatterv_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
issend_f.c \
|
|
|
|
is_thread_main_f.c \
|
|
|
|
keyval_create_f.c \
|
|
|
|
keyval_free_f.c \
|
|
|
|
lookup_name_f.c \
|
== Highlights ==
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.
2012-04-18 15:57:29 +00:00
|
|
|
mprobe_f.c \
|
|
|
|
mrecv_f.c \
|
2013-09-26 21:55:08 +00:00
|
|
|
neighbor_allgather_f.c \
|
|
|
|
neighbor_allgatherv_f.c \
|
|
|
|
neighbor_alltoall_f.c \
|
|
|
|
neighbor_alltoallv_f.c \
|
|
|
|
neighbor_alltoallw_f.c \
|
2009-10-22 21:46:05 +00:00
|
|
|
op_commutative_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
op_create_f.c \
|
|
|
|
open_port_f.c \
|
|
|
|
op_free_f.c \
|
|
|
|
pack_external_f.c \
|
|
|
|
pack_external_size_f.c \
|
|
|
|
pack_f.c \
|
|
|
|
pack_size_f.c \
|
|
|
|
pcontrol_f.c \
|
|
|
|
probe_f.c \
|
|
|
|
publish_name_f.c \
|
|
|
|
query_thread_f.c \
|
|
|
|
recv_f.c \
|
|
|
|
recv_init_f.c \
|
|
|
|
reduce_f.c \
|
Two major things in this commit:
* New "op" MPI layer framework
* Addition of the MPI_REDUCE_LOCAL proposed function (for MPI-2.2)
= Op framework =
Add new "op" framework in the ompi layer. This framework replaces the
hard-coded MPI_Op back-end functions for (MPI_Op, MPI_Datatype) tuples
for pre-defined MPI_Ops, allowing components and modules to provide
the back-end functions. The intent is that components can be written
to take advantage of hardware acceleration (GPU, FPGA, specialized CPU
instructions, etc.). Similar to other frameworks, components are
intended to be able to discover at run-time if they can be used, and
if so, elect themselves to be selected (or disqualify themselves from
selection if they cannot run). If specialized hardware is not
available, there is a default set of functions that will automatically
be used.
This framework is ''not'' used for user-defined MPI_Ops.
The new op framework is similar to the existing coll framework, in
that the final set of function pointers that are used on any given
intrinsic MPI_Op can be a mixed bag of function pointers, potentially
coming from multiple different op modules. This allows for hardware
that only supports some of the operations, not all of them (e.g., a
GPU that only supports single-precision operations).
All the hard-coded back-end MPI_Op functions for (MPI_Op,
MPI_Datatype) tuples still exist, but unlike coll, they're in the
framework base (vs. being in a separate "basic" component) and are
automatically used if no component is found at runtime that provides a
module with the necessary function pointers.
There is an "example" op component that will hopefully be useful to
those writing meaningful op components. It is currently
.ompi_ignore'd so that it doesn't impinge on other developers (it's
somewhat chatty in terms of opal_output() so that you can tell when
its functions have been invoked). See the README file in the example
op component directory. Developers of new op components are
encouraged to look at the following wiki pages:
https://svn.open-mpi.org/trac/ompi/wiki/devel/Autogen
https://svn.open-mpi.org/trac/ompi/wiki/devel/CreateComponent
https://svn.open-mpi.org/trac/ompi/wiki/devel/CreateFramework
= MPI_REDUCE_LOCAL =
Part of the MPI-2.2 proposal listed here:
https://svn.mpi-forum.org/trac/mpi-forum-web/ticket/24
is to add a new function named MPI_REDUCE_LOCAL. It is very easy to
implement, so I added it (also because it makes testing the op
framework pretty easy -- you can do it in serial rather than via
parallel reductions). There's even a man page!
This commit was SVN r20280.
2009-01-14 23:44:31 +00:00
|
|
|
reduce_local_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
reduce_scatter_f.c \
|
2012-06-22 20:54:12 +00:00
|
|
|
reduce_scatter_block_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
request_free_f.c \
|
|
|
|
request_get_status_f.c \
|
|
|
|
rsend_f.c \
|
|
|
|
rsend_init_f.c \
|
|
|
|
scan_f.c \
|
|
|
|
scatter_f.c \
|
|
|
|
scatterv_f.c \
|
|
|
|
send_f.c \
|
|
|
|
send_init_f.c \
|
|
|
|
sendrecv_f.c \
|
|
|
|
sendrecv_replace_f.c \
|
|
|
|
ssend_f.c \
|
|
|
|
ssend_init_f.c \
|
|
|
|
startall_f.c \
|
|
|
|
start_f.c \
|
|
|
|
status_set_cancelled_f.c \
|
|
|
|
status_set_elements_f.c \
|
2013-07-23 15:36:03 +00:00
|
|
|
status_set_elements_x_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
testall_f.c \
|
|
|
|
testany_f.c \
|
|
|
|
test_cancelled_f.c \
|
|
|
|
test_f.c \
|
|
|
|
testsome_f.c \
|
|
|
|
topo_test_f.c \
|
|
|
|
type_commit_f.c \
|
|
|
|
type_contiguous_f.c \
|
|
|
|
type_create_darray_f.c \
|
|
|
|
type_create_f90_complex_f.c \
|
|
|
|
type_create_f90_integer_f.c \
|
|
|
|
type_create_f90_real_f.c \
|
|
|
|
type_create_hindexed_f.c \
|
|
|
|
type_create_hvector_f.c \
|
|
|
|
type_create_indexed_block_f.c \
|
2012-08-08 13:17:57 +00:00
|
|
|
type_create_hindexed_block_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
type_create_keyval_f.c \
|
|
|
|
type_create_resized_f.c \
|
|
|
|
type_create_struct_f.c \
|
|
|
|
type_create_subarray_f.c \
|
|
|
|
type_delete_attr_f.c \
|
|
|
|
type_dup_f.c \
|
|
|
|
type_extent_f.c \
|
|
|
|
type_free_f.c \
|
|
|
|
type_free_keyval_f.c \
|
|
|
|
type_get_attr_f.c \
|
|
|
|
type_get_contents_f.c \
|
|
|
|
type_get_envelope_f.c \
|
|
|
|
type_get_extent_f.c \
|
2013-07-23 15:36:03 +00:00
|
|
|
type_get_extent_x_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
type_get_name_f.c \
|
|
|
|
type_get_true_extent_f.c \
|
2013-07-23 15:36:03 +00:00
|
|
|
type_get_true_extent_x_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
type_hindexed_f.c \
|
|
|
|
type_hvector_f.c \
|
|
|
|
type_indexed_f.c \
|
|
|
|
type_lb_f.c \
|
|
|
|
type_match_size_f.c \
|
|
|
|
type_set_attr_f.c \
|
|
|
|
type_set_name_f.c \
|
|
|
|
type_size_f.c \
|
2013-07-23 15:36:03 +00:00
|
|
|
type_size_x_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
type_struct_f.c \
|
|
|
|
type_ub_f.c \
|
|
|
|
type_vector_f.c \
|
|
|
|
unpack_external_f.c \
|
|
|
|
unpack_f.c \
|
|
|
|
unpublish_name_f.c \
|
|
|
|
waitall_f.c \
|
|
|
|
waitany_f.c \
|
|
|
|
wait_f.c \
|
2005-11-07 17:22:48 +00:00
|
|
|
waitsome_f.c \
|
|
|
|
wtick_f.c \
|
2006-01-28 15:38:37 +00:00
|
|
|
wtime_f.c \
|
2004-12-14 02:35:03 +00:00
|
|
|
accumulate_f.c \
|
2014-03-11 23:02:27 +00:00
|
|
|
raccumulate_f.c \
|
2004-12-14 02:35:03 +00:00
|
|
|
get_f.c \
|
2014-03-11 23:02:27 +00:00
|
|
|
rget_f.c \
|
|
|
|
get_accumulate_f.c \
|
|
|
|
rget_accumulate_f.c \
|
2004-12-14 02:35:03 +00:00
|
|
|
put_f.c \
|
2014-03-11 23:02:27 +00:00
|
|
|
rput_f.c \
|
|
|
|
compare_and_swap_f.c \
|
|
|
|
fetch_and_op_f.c \
|
2004-04-16 02:33:49 +00:00
|
|
|
win_call_errhandler_f.c \
|
|
|
|
win_complete_f.c \
|
|
|
|
win_create_errhandler_f.c \
|
|
|
|
win_create_f.c \
|
|
|
|
win_create_keyval_f.c \
|
|
|
|
win_delete_attr_f.c \
|
|
|
|
win_fence_f.c \
|
|
|
|
win_free_f.c \
|
|
|
|
win_free_keyval_f.c \
|
|
|
|
win_get_attr_f.c \
|
|
|
|
win_get_errhandler_f.c \
|
|
|
|
win_get_group_f.c \
|
|
|
|
win_get_name_f.c \
|
|
|
|
win_lock_f.c \
|
|
|
|
win_post_f.c \
|
|
|
|
win_set_attr_f.c \
|
|
|
|
win_set_errhandler_f.c \
|
|
|
|
win_set_name_f.c \
|
|
|
|
win_start_f.c \
|
|
|
|
win_test_f.c \
|
|
|
|
win_unlock_f.c \
|
2014-03-11 23:02:27 +00:00
|
|
|
win_wait_f.c \
|
|
|
|
win_flush_f.c \
|
|
|
|
win_flush_all_f.c \
|
|
|
|
win_flush_local_f.c \
|
|
|
|
win_flush_local_all_f.c
|
2007-08-18 21:35:51 +00:00
|
|
|
|
|
|
|
if OMPI_PROVIDE_MPI_FILE_INTERFACE
|
== Highlights ==
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.
2012-04-18 15:57:29 +00:00
|
|
|
libmpi_mpifh_la_SOURCES += \
|
2007-08-18 21:35:51 +00:00
|
|
|
file_call_errhandler_f.c \
|
|
|
|
file_close_f.c \
|
|
|
|
file_create_errhandler_f.c \
|
|
|
|
file_delete_f.c \
|
|
|
|
file_get_amode_f.c \
|
|
|
|
file_get_atomicity_f.c \
|
|
|
|
file_get_byte_offset_f.c \
|
|
|
|
file_get_errhandler_f.c \
|
|
|
|
file_get_group_f.c \
|
|
|
|
file_get_info_f.c \
|
|
|
|
file_get_position_f.c \
|
|
|
|
file_get_position_shared_f.c \
|
|
|
|
file_get_size_f.c \
|
|
|
|
file_get_type_extent_f.c \
|
|
|
|
file_get_view_f.c \
|
|
|
|
file_iread_at_f.c \
|
|
|
|
file_iread_f.c \
|
|
|
|
file_iread_shared_f.c \
|
|
|
|
file_iwrite_at_f.c \
|
|
|
|
file_iwrite_f.c \
|
|
|
|
file_iwrite_shared_f.c \
|
|
|
|
file_open_f.c \
|
|
|
|
file_preallocate_f.c \
|
|
|
|
file_read_all_begin_f.c \
|
|
|
|
file_read_all_end_f.c \
|
|
|
|
file_read_all_f.c \
|
|
|
|
file_read_at_all_begin_f.c \
|
|
|
|
file_read_at_all_end_f.c \
|
|
|
|
file_read_at_all_f.c \
|
|
|
|
file_read_at_f.c \
|
|
|
|
file_read_f.c \
|
|
|
|
file_read_ordered_begin_f.c \
|
|
|
|
file_read_ordered_end_f.c \
|
|
|
|
file_read_ordered_f.c \
|
|
|
|
file_read_shared_f.c \
|
|
|
|
file_seek_f.c \
|
|
|
|
file_seek_shared_f.c \
|
|
|
|
file_set_atomicity_f.c \
|
|
|
|
file_set_errhandler_f.c \
|
|
|
|
file_set_info_f.c \
|
|
|
|
file_set_size_f.c \
|
|
|
|
file_set_view_f.c \
|
|
|
|
file_sync_f.c \
|
|
|
|
file_write_all_begin_f.c \
|
|
|
|
file_write_all_end_f.c \
|
|
|
|
file_write_all_f.c \
|
|
|
|
file_write_at_all_begin_f.c \
|
|
|
|
file_write_at_all_end_f.c \
|
|
|
|
file_write_at_all_f.c \
|
|
|
|
file_write_at_f.c \
|
|
|
|
file_write_f.c \
|
|
|
|
file_write_ordered_begin_f.c \
|
|
|
|
file_write_ordered_end_f.c \
|
|
|
|
file_write_ordered_f.c \
|
|
|
|
file_write_shared_f.c \
|
|
|
|
register_datarep_f.c
|
|
|
|
endif
|
2006-09-08 01:35:49 +00:00
|
|
|
endif
|
2004-08-13 20:42:38 +00:00
|
|
|
|
2004-01-16 22:40:27 +00:00
|
|
|
#
|
|
|
|
# Conditionally install the header files
|
|
|
|
#
|
2004-08-13 20:42:38 +00:00
|
|
|
|
2004-01-09 17:44:07 +00:00
|
|
|
if WANT_INSTALL_HEADERS
|
2014-01-07 22:11:15 +00:00
|
|
|
ompidir = $(ompiincludedir)/$(subdir)
|
2004-06-07 15:33:53 +00:00
|
|
|
ompi_HEADERS = $(headers)
|
2004-01-09 17:44:07 +00:00
|
|
|
endif
|