- 07 Nov, 2012 14 commits
-
-
David Goodell authored
The dist_graph implementation itself doesn't need any changes, since we already switched away from an impl where MPI_UNWEIGHTED==NULL. Reviewed by dinan@.
-
David Goodell authored
Don't litter a ".tmp" file in case of failure. Notice changes to the "maint/errmsgdirs" file. Reviewed by dinan@.
-
David Goodell authored
And add "src/mpi_t" to the list of special directories that is searched for "errnames.txt" files. Reviewed by dinan@.
-
David Goodell authored
Reviewed by dinan@.
-
David Goodell authored
Reviewed by dinan@.
-
David Goodell authored
Should simplify numerous datatype handle conversions that we currently do with `expr` and manual hex-->dec conversion in configure.ac. Reviewed by dinan@.
-
David Goodell authored
Forgotten from the previous MPI_Count-related commits (oops). Reviewed by dinan@.
-
Pavan Balaji authored
Reviewed by buntinas.
-
Pavan Balaji authored
Reviewed by buntinas.
-
Pavan Balaji authored
This is a very lame implementation that creates this object at Init time and does not populate it with any keys (the MPI standard does not require that the keys be populated). Reviewed by buntinas.
-
Pavan Balaji authored
Reviewed by buntinas.
-
Pavan Balaji authored
arguments are defined. They are entirely ignored. Reviewed by buntinas.
-
Pavan Balaji authored
Reviewed by buntinas.
-
Pavan Balaji authored
is completely ignored. Reviewed by buntinas.
-
- 06 Nov, 2012 21 commits
-
-
David Goodell authored
There are other instances of this warning that definitely need to get fixed, but this one is especially annoying because it is in a header and therefore causes a warning in nearly all nemesis compilation units. Reviewed by balaji@.
-
David Goodell authored
Any code that causes this new warning to trigger is likely to be a bug, or at least a case that ought to be checked/asserted and then explicitly casted. This warning is essential to tracking down problems related to the new MPI_Count datatype/interfaces added in MPI-3. Reviewed by balaji@.
-
David Goodell authored
This macro checks for positive overflow due to multiplication and asserts if the product would exceed the given limit. Useful for guarding older, sloppier code from before the MPI_Count transition. Reviewed by balaji@.
-
David Goodell authored
Attempts to validate that we have successfully implemented MPI-3's new "large count" routines and updated behavior for "legacy" count routines: MPI_Get_count MPI_Get_elements_x MPI_Status_set_elements_x MPI_Type_get_extent_x MPI_Type_get_true_extent_x MPI_Type_size_x Because we only use contigs and vectors in this test, we are actually missing quite a bit of coverage in terms of checking for MPI_Count-clean size/extent calculations. At some point we should strengthen this test with a wider variety of tests using more complex datatypes. Reviewed by balaji@.
-
David Goodell authored
Also update MPI_Type_get_true_extent to have proper MPI_UNDEFINED-clamping per MPI-3. Reviewed by balaji@.
-
David Goodell authored
Also update MPI_Type_get_extent to have proper MPI_UNDEFINED-clamping per MPI-3. Reviewed by balaji@.
-
David Goodell authored
Also update MPI_Status_set_elements to have proper MPI_UNDEFINED-clamping per MPI-3. Reviewed by balaji@.
-
David Goodell authored
Also update MPI_Get_elements to have proper MPI_UNDEFINED-clamping per MPI-3. Reviewed by balaji@.
-
David Goodell authored
Also update MPI_Type_size to have proper MPI_UNDEFINED-clamping per MPI-3. Reviewed by balaji@.
-
David Goodell authored
MPI_UNDEFINED is now returned in case the count cannot be represented by an "int". Work may still be needed for the case when sizeof(int)!=sizeof(MPI_Fint). Reviewed by balaji@.
-
David Goodell authored
This commit actually does a few things to the status object: (1) `int count` becomes `MPI_Count count`; (2) `count` & `cancelled` have been reordered after the "public" fields (e.g., MPI_TAG) to ensure that direct access from Fortran is not somehow broken by the (potentially) non-INTEGER count field; (3) and a new future-proofing field, `abi_slush_fund`, has been added to attempt to allow us to add fields to the status object in the future without having to break ABI compatibility. There's still too much duplication of the status object's contents/layout in multiple pieces of the code, but I don't see a reasonable way to fix this in the near term. Warning: large count breaks the experimental Fortran binding code generated for handling the "sizeof(int)!=sizeof(MPI_Fint)" case. Reviewed by balaji@.
-
David Goodell authored
This commit is largely auto-generated boilerplate for the following "large count" routines: * MPI_Get_elements_x * MPI_Type_get_extent_x * MPI_Type_get_true_extent_x * MPI_Type_size_x * MPI_Status_set_elements_x None of these routines actually _do_ anything (not even assert/error out) as implemented. But this makes it very easy to review the logic of the implementation later on in the succeeding smaller commits. Reviewed by balaji@.
-
David Goodell authored
This commit only contains the build system and mpi.h modifications necessary for `MPI_Count` to be a valid new type. It does *not* actually use this new type anywhere, such as in MPI_Status. Reviewed by balaji@.
-
David Goodell authored
Currently unused, but we should probably be using these in more places for overflow checks. Reviewed by balaji@.
-
David Goodell authored
The old rule would just bomb out with a cryptic "Error 1". Now we cat the error message file so that you have some idea of what actually happened. Reviewed by balaji@.
-
James Dinan authored
Test cases to ensure that RMA ops on shared memory windows are behaving correctly. Reviewer: balaji
-
James Dinan authored
Added immediate locking (needed to support load/store access) and memory fences (to support third-party load/store communication). Reviewer: balaji
-
David Goodell authored
Reviewed by robl@.
-
James Dinan authored
Duplicated r10523 error checking updates to non-req. acc/gacc into the request-based operations. Reviewer: none
-
James Dinan authored
-
James Dinan authored
-
- 05 Nov, 2012 5 commits
-
-
Pavan Balaji authored
1. Make the manpage entries consistent with the function prototype. 2. Consistently use "Parameters" instead of the inconsistent "Parameter" and "Parameters" usage. 3. Correct the manpages for MPI_Type_get_contents and MPI_Type_get_envelope. Reviewed by dinan.
-
Pavan Balaji authored
for MPI_Type_create_f90_{integer,real,complex}. Reviewed by dinan.
-
Pavan Balaji authored
Made a cleanup pass on mpi.h.in and the function definitions to make mpi.h.in consistent with the MPI standard. 1. The usage of "*" vs. "[]" was not consistent with the MPI standard (aside from the consistency changes added in tickets 125 and 126 in MPI-3). This commit makes this notation consistent. 2. Consistently provide function parameter names for all MPI functions. Some functions had parameter names, while others did not. 3. Consistently use line-breaks for all function prototypes. Some prototypes were on a single line, while others were split across lines. 4. Reorder prototypes to better place them in sections (e.g., all collectives go to the same section). Move all PMPI definitions to the PMPI section. Move all MPIX_ extension functions to the same section. The following prototypes are different from that given in the standard; we use "indx" instead of "index" or "binding" instead of "bind", to avoid conflicts with preused variable names: MPI_Waitany, MPI_Testany, MPI_Graph_create, MPI_Graph_get, MPI_Graph_map, MPI_T_enum_get_item, MPI_T_cvar_get_info, MPI_T_pvar_get_info. Reviewed by dinan.
-
Pavan Balaji authored
Reviewed by dinan.
-
Pavan Balaji authored
notation to match the MPI-3 standard: io. Reviewed by dinan.
-