1
1
openmpi/ompi/mpi/c
Jeff Squyres 253444c6d0 == 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
..
profile == Highlights == 2012-04-18 15:57:29 +00:00
abort.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
accumulate.c Combined patch from Fujitsu. Fixes a collections of typos over the 2012-01-26 04:22:00 +00:00
add_error_class.c Fixes trac:2767: Recursive locking when ROMIO used with THREAD_MULITPLE 2011-05-04 06:31:42 +00:00
add_error_code.c Fixes trac:2767: Recursive locking when ROMIO used with THREAD_MULITPLE 2011-05-04 06:31:42 +00:00
add_error_string.c Combined patch from Fujitsu. Fixes a collections of typos over the 2012-01-26 04:22:00 +00:00
address.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
allgather.c checks for sendcount and recvcount(s) being zero have slightly different 2010-05-20 22:21:26 +00:00
allgatherv.c checks for sendcount and recvcount(s) being zero have slightly different 2010-05-20 22:21:26 +00:00
alloc_mem.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
allreduce.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
alltoall.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
alltoallv.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
alltoallw.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
attr_delete.c Fixes trac:2767: Recursive locking when ROMIO used with THREAD_MULITPLE 2011-05-04 06:31:42 +00:00
attr_fn.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
attr_get.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
attr_put.c Fixes trac:2767: Recursive locking when ROMIO used with THREAD_MULITPLE 2011-05-04 06:31:42 +00:00
barrier.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
bcast.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
bindings.h Refs trac:2273 2010-03-16 00:47:10 +00:00
bsend_init.c Check for addressability in MPI_*_init, since buffer passed by the application should have been already allocated, but might be not initialized. 2010-11-16 01:01:12 +00:00
bsend.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
buffer_attach.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
buffer_detach.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
cancel.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
cart_coords.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
cart_create.c Update libevent to the 2.0 series, currently at 2.0.7rc. We will update to their final release when it becomes available. Currently known errors exist in unused portions of the libevent code. This revision passes the IBM test suite on a Linux machine and on a standalone Mac. 2010-10-24 18:35:54 +00:00
cart_get.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
cart_map.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
cart_rank.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
cart_shift.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
cart_sub.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
cartdim_get.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
close_port.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
comm_accept.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
comm_c2f.c == Highlights == 2012-04-18 15:57:29 +00:00
comm_call_errhandler.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
comm_compare.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
comm_connect.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
comm_create_errhandler.c Fixes trac:2060: MPI-2.2 ticket 7, convert some function pointer typedefs 2009-10-22 16:50:45 +00:00
comm_create_keyval.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
comm_create.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
comm_delete_attr.c Fixes trac:2767: Recursive locking when ROMIO used with THREAD_MULITPLE 2011-05-04 06:31:42 +00:00
comm_disconnect.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
comm_dup.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
comm_f2c.c == Highlights == 2012-04-18 15:57:29 +00:00
comm_free_keyval.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
comm_free.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
comm_get_attr.c Actually, invoke the error on MPI_COMM_WORLD if you have an invalid 2009-09-04 07:40:28 +00:00
comm_get_errhandler.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
comm_get_name.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
comm_get_parent.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
comm_group.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
comm_join.c Fix comm_join by ensuring the two processes figure out which will send_first and which will recv first. 2012-04-09 22:14:14 +00:00
comm_rank.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
comm_remote_group.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
comm_remote_size.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
comm_set_attr.c Fixes trac:2767: Recursive locking when ROMIO used with THREAD_MULITPLE 2011-05-04 06:31:42 +00:00
comm_set_errhandler.c Fixes MPI errhandler set races 2009-12-14 03:38:01 +00:00
comm_set_name.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
comm_size.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
comm_spawn_multiple.c Minor beautification. 2012-03-05 13:23:54 +00:00
comm_spawn.c Add missing semicolons. Wow. 2009-10-08 19:50:19 +00:00
comm_split_type.c Add support for MPI-3's MPI_COMM_SPLIT_TYPE function 2012-01-18 23:35:21 +00:00
comm_split.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
comm_test_inter.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
dims_create.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
errhandler_c2f.c == Highlights == 2012-04-18 15:57:29 +00:00
errhandler_create.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
errhandler_f2c.c == Highlights == 2012-04-18 15:57:29 +00:00
errhandler_free.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
errhandler_get.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
errhandler_set.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
error_class.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
error_string.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
exscan.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
file_c2f.c == Highlights == 2012-04-18 15:57:29 +00:00
file_call_errhandler.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_close.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_create_errhandler.c Fixes trac:2060: MPI-2.2 ticket 7, convert some function pointer typedefs 2009-10-22 16:50:45 +00:00
file_delete.c Update libevent to the 2.0 series, currently at 2.0.7rc. We will update to their final release when it becomes available. Currently known errors exist in unused portions of the libevent code. This revision passes the IBM test suite on a Linux machine and on a standalone Mac. 2010-10-24 18:35:54 +00:00
file_f2c.c == Highlights == 2012-04-18 15:57:29 +00:00
file_get_amode.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_get_atomicity.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_get_byte_offset.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_get_errhandler.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_get_group.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_get_info.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_get_position_shared.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_get_position.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_get_size.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_get_type_extent.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_get_view.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_iread_at.c Clean up request handling in the I/O framework to be more consistent with 2009-11-26 05:13:43 +00:00
file_iread_shared.c Clean up request handling in the I/O framework to be more consistent with 2009-11-26 05:13:43 +00:00
file_iread.c Clean up request handling in the I/O framework to be more consistent with 2009-11-26 05:13:43 +00:00
file_iwrite_at.c Clean up request handling in the I/O framework to be more consistent with 2009-11-26 05:13:43 +00:00
file_iwrite_shared.c Clean up request handling in the I/O framework to be more consistent with 2009-11-26 05:13:43 +00:00
file_iwrite.c Clean up request handling in the I/O framework to be more consistent with 2009-11-26 05:13:43 +00:00
file_open.c Update libevent to the 2.0 series, currently at 2.0.7rc. We will update to their final release when it becomes available. Currently known errors exist in unused portions of the libevent code. This revision passes the IBM test suite on a Linux machine and on a standalone Mac. 2010-10-24 18:35:54 +00:00
file_preallocate.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_read_all_begin.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
file_read_all_end.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_read_all.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
file_read_at_all_begin.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
file_read_at_all_end.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_read_at_all.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
file_read_at.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
file_read_ordered_begin.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
file_read_ordered_end.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_read_ordered.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
file_read_shared.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
file_read.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
file_seek_shared.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_seek.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_set_atomicity.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_set_errhandler.c Fixes MPI errhandler set races 2009-12-14 03:38:01 +00:00
file_set_info.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_set_size.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_set_view.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
file_sync.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_write_all_begin.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
file_write_all_end.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_write_all.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
file_write_at_all_begin.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
file_write_at_all_end.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_write_at_all.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
file_write_at.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
file_write_ordered_begin.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
file_write_ordered_end.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
file_write_ordered.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
file_write_shared.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
file_write.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
finalize.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
finalized.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
free_mem.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
gather.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
gatherv.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
get_address.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
get_count.c Divide by size, not status->_count. Gives a much better answer. :-) 2010-07-22 01:53:01 +00:00
get_elements.c First step toward fixing the MPI_Get_count issues from the ticket #2241. Next 2010-07-21 20:07:00 +00:00
get_library_version.c Add the new MPI-3 function MPI_GET_LIBRARY_VERSION. 2012-02-02 23:57:09 +00:00
get_processor_name.c Gah! r25545 acidentally included ''waaaay'' more stuff than it was 2011-11-29 23:24:52 +00:00
get_version.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
get.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
graph_create.c Rename "index" parameters to "idx" so that picky compilers shut up 2012-01-20 02:06:21 +00:00
graph_get.c Rename "index" parameters to "idx" so that picky compilers shut up 2012-01-20 02:06:21 +00:00
graph_map.c Rename "index" parameters to "idx" so that picky compilers shut up 2012-01-20 02:06:21 +00:00
graph_neighbors_count.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
graph_neighbors.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
graphdims_get.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
grequest_complete.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
grequest_start.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
group_c2f.c == Highlights == 2012-04-18 15:57:29 +00:00
group_compare.c Abstract MPI_Group_compare to an OMPI function for internal use (point the MPI interface to the internal function). 2012-03-08 21:57:45 +00:00
group_difference.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
group_excl.c Make MPI_GROUP_INCL|EXCL and MPI_GROUP_TRANSLATE_RANKS a bit more 2009-10-26 21:32:15 +00:00
group_f2c.c == Highlights == 2012-04-18 15:57:29 +00:00
group_free.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
group_incl.c Make MPI_GROUP_INCL|EXCL and MPI_GROUP_TRANSLATE_RANKS a bit more 2009-10-26 21:32:15 +00:00
group_intersection.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
group_range_excl.c Rename "index" parameters to "idx" so that picky compilers shut up 2012-01-20 02:06:21 +00:00
group_range_incl.c Rename "index" parameters to "idx" so that picky compilers shut up 2012-01-20 02:06:21 +00:00
group_rank.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
group_size.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
group_translate_ranks.c Make MPI_GROUP_INCL|EXCL and MPI_GROUP_TRANSLATE_RANKS a bit more 2009-10-26 21:32:15 +00:00
group_union.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
ibsend.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
improbe.c Fix a few missed cases with MPROBE and friends. 2012-03-08 19:43:08 +00:00
imrecv.c Fix a few missed cases with MPROBE and friends. 2012-03-08 19:43:08 +00:00
info_c2f.c == Highlights == 2012-04-18 15:57:29 +00:00
info_create.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
info_delete.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
info_dup.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
info_f2c.c == Highlights == 2012-04-18 15:57:29 +00:00
info_free.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
info_get_nkeys.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
info_get_nthkey.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
info_get_valuelen.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
info_get.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
info_set.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
init_thread.c move the INIT to after the error handler, so it matches MPI_INIT. Thanks to Jeff for catching this 2011-01-03 18:16:53 +00:00
init.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
initialized.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
intercomm_create.c so here is what happens: 2009-09-17 14:37:02 +00:00
intercomm_merge.c Rename "index" parameters to "idx" so that picky compilers shut up 2012-01-20 02:06:21 +00:00
iprobe.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
irecv.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
irsend.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
is_thread_main.c Merge in the modified thread configure option branch per today's telecon. 2010-03-16 23:10:50 +00:00
isend.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
issend.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
keyval_create.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
keyval_free.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
lookup_name.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
Makefile.am == Highlights == 2012-04-18 15:57:29 +00:00
message_c2f.c == Highlights == 2012-04-18 15:57:29 +00:00
message_f2c.c == Highlights == 2012-04-18 15:57:29 +00:00
mprobe.c Update MPROBE, IMPROBE, MRECV, IMRECV with the behavior described in 2012-03-08 13:27:01 +00:00
mrecv.c Fix a few missed cases with MPROBE and friends. 2012-03-08 19:43:08 +00:00
op_c2f.c == Highlights == 2012-04-18 15:57:29 +00:00
op_commutative.c Fixes trac:2061: add MPI_OP_COMMUTATIVE. 2009-10-22 21:46:05 +00:00
op_create.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
op_f2c.c == Highlights == 2012-04-18 15:57:29 +00:00
op_free.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
open_port.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
pack_external_size.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
pack_external.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
pack_size.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
pack.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
pcontrol.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
probe.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
publish_name.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
put.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
query_thread.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
recv_init.c Check for addressability in MPI_*_init, since buffer passed by the application should have been already allocated, but might be not initialized. 2010-11-16 01:01:12 +00:00
recv.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
reduce_local.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
reduce_scatter.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
reduce.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
register_datarep.c Update libevent to the 2.0 series, currently at 2.0.7rc. We will update to their final release when it becomes available. Currently known errors exist in unused portions of the libevent code. This revision passes the IBM test suite on a Linux machine and on a standalone Mac. 2010-10-24 18:35:54 +00:00
request_c2f.c == Highlights == 2012-04-18 15:57:29 +00:00
request_f2c.c == Highlights == 2012-04-18 15:57:29 +00:00
request_free.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
request_get_status.c Update libevent to the 2.0 series, currently at 2.0.7rc. We will update to their final release when it becomes available. Currently known errors exist in unused portions of the libevent code. This revision passes the IBM test suite on a Linux machine and on a standalone Mac. 2010-10-24 18:35:54 +00:00
rsend_init.c Check for addressability in MPI_*_init, since buffer passed by the application should have been already allocated, but might be not initialized. 2010-11-16 01:01:12 +00:00
rsend.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
scan.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
scatter.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
scatterv.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
send_init.c Check for addressability in MPI_*_init, since buffer passed by the application should have been already allocated, but might be not initialized. 2010-11-16 01:01:12 +00:00
send.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
sendrecv_replace.c Created two new macros that are used when filling in either the 2010-08-04 19:36:40 +00:00
sendrecv.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
ssend_init.c Check for addressability in MPI_*_init, since buffer passed by the application should have been already allocated, but might be not initialized. 2010-11-16 01:01:12 +00:00
ssend.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
start.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
startall.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
status_c2f.c == Highlights == 2012-04-18 15:57:29 +00:00
status_f2c.c == Highlights == 2012-04-18 15:57:29 +00:00
status_set_cancelled.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
status_set_elements.c First step toward fixing the MPI_Get_count issues from the ticket #2241. Next 2010-07-21 20:07:00 +00:00
test_cancelled.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
test.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
testall.c The copyright notices that should have been in r26156. 2012-03-16 04:59:58 +00:00
testany.c The copyright notices that should have been in r26156. 2012-03-16 04:59:58 +00:00
testsome.c The copyright notices that should have been in r26156. 2012-03-16 04:59:58 +00:00
topo_test.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
type_c2f.c == Highlights == 2012-04-18 15:57:29 +00:00
type_commit.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_contiguous.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_create_darray.c darray and subarray are now first class citizens in Open MPI. They can be stored 2011-03-02 19:22:24 +00:00
type_create_f90_complex.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_create_f90_integer.c == Highlights == 2012-04-18 15:57:29 +00:00
type_create_f90_real.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_create_hindexed.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_create_hvector.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_create_indexed_block.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_create_keyval.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
type_create_resized.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_create_struct.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_create_subarray.c darray and subarray are now first class citizens in Open MPI. They can be stored 2011-03-02 19:22:24 +00:00
type_delete_attr.c Fixes trac:2767: Recursive locking when ROMIO used with THREAD_MULITPLE 2011-05-04 06:31:42 +00:00
type_dup.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_extent.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_f2c.c == Highlights == 2012-04-18 15:57:29 +00:00
type_free_keyval.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
type_free.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_get_attr.c Fix some attribute error detection problems reported by Lisandro 2009-09-04 05:18:49 +00:00
type_get_contents.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_get_envelope.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_get_extent.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_get_name.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_get_true_extent.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_hindexed.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
type_hvector.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
type_indexed.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_lb.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_match_size.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_set_attr.c Fixes trac:2767: Recursive locking when ROMIO used with THREAD_MULITPLE 2011-05-04 06:31:42 +00:00
type_set_name.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_size.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_struct.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
type_ub.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
type_vector.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
unpack_external.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
unpack.c - Split the datatype engine into two parts: an MPI specific part in 2009-07-13 04:56:31 +00:00
unpublish_name.c Sorry for mid-day commit, but I had promised on the call to do this upon my return. 2012-04-06 14:23:13 +00:00
wait.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
waitall.c Per request from Jeremiah Willcock, support the array-based MPI_TEST 2012-03-14 14:36:04 +00:00
waitany.c The copyright notices that should have been in r26156. 2012-03-16 04:59:58 +00:00
waitsome.c The copyright notices that should have been in r26156. 2012-03-16 04:59:58 +00:00
win_c2f.c == Highlights == 2012-04-18 15:57:29 +00:00
win_call_errhandler.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
win_complete.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
win_create_errhandler.c Fixes trac:2060: MPI-2.2 ticket 7, convert some function pointer typedefs 2009-10-22 16:50:45 +00:00
win_create_keyval.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
win_create.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
win_delete_attr.c Fixes trac:2767: Recursive locking when ROMIO used with THREAD_MULITPLE 2011-05-04 06:31:42 +00:00
win_f2c.c == Highlights == 2012-04-18 15:57:29 +00:00
win_fence.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
win_free_keyval.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
win_free.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
win_get_attr.c Fix some attribute error detection problems reported by Lisandro 2009-09-04 05:18:49 +00:00
win_get_errhandler.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
win_get_group.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
win_get_name.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
win_lock.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
win_post.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
win_set_attr.c Fixes trac:2767: Recursive locking when ROMIO used with THREAD_MULITPLE 2011-05-04 06:31:42 +00:00
win_set_errhandler.c Fixes MPI errhandler set races 2009-12-14 03:38:01 +00:00
win_set_name.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
win_start.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
win_test.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
win_unlock.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
win_wait.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
wtick.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
wtime.c This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00