1
1
Граф коммитов

3690 Коммитов

Автор SHA1 Сообщение Дата
Jeff Squyres
db0891ff18 Brought over from the tim branch:
- Make the DEPENDENCIES a little clearner, and clear up a problem on at
  least one platform
- Remove old/unnecessary mpirun2 rules

This commit was SVN r4397.
2005-02-11 11:54:53 +00:00
George Bosilca
20d789feb1 Dont do any param check in this function as we call another MPI function and the checking will be done there.
This commit was SVN r4395.
2005-02-11 06:34:17 +00:00
George Bosilca
f24afe3bf8 Correctly (I hope) compute the contiguous flag. There is still a big question about the overlap flag:
should I compute it here with les precision or should be done in the commit phase. Anyway correctly
detecting the overlap is a difficult problem.

This commit was SVN r4394.
2005-02-11 06:32:38 +00:00
George Bosilca
194f764ad2 Always update max_data before returning from the pack functions.
And the condition to completly fill a buffer is <= not < !!!

This commit was SVN r4393.
2005-02-11 06:28:52 +00:00
George Bosilca
903e1afa3d Update the dump function to use the ompi_output facility.
This commit was SVN r4392.
2005-02-11 06:27:35 +00:00
Prabhanjan Kambadur
d82b1556bd Adding the OMPI_WINDOWS thingy to windows' hardcoded arch file
This commit was SVN r4380.
2005-02-10 20:53:20 +00:00
Prabhanjan Kambadur
9da9283d4e Adding protection for windows
This commit was SVN r4378.
2005-02-10 19:28:44 +00:00
Prabhanjan Kambadur
2439244f0c These are some changes which will enable dynamic builds to go through on Windows. Most of the changes are in adding/deleting windows symbol exporting things.
This commit was SVN r4377.
2005-02-10 19:08:35 +00:00
Jeff Squyres
1676187b3e Add a new classification to MCA parameters: "internal" MCA
parameters.  These are intended to be used by the system itself for
passing information around, and are not generally intended for the
user to see or modify.  Hence, we flag them as "internal" which causes
them not to show up in the ompi_info output (by default).  This
"security through obscurity" is good enough -- it's really only
intended to keep casual observers away.  The MCA parameters are still
there and are still settable (if a developer wants to set them).

To mark an MCA parameter as internal, simply call
mca_param_set_internal() with its index.  I debated about adding a
flag to mca_param_register_[int|string](), but then would have
involved changing a *lot* of code throughout the base -- and internal
MCA parameters is certainly not the common case.

Note that you can provide the new ompi_info flag --internal in
conjunction with the --param flag to force it to also show all the
internal MCA params.

This commit was SVN r4373.
2005-02-10 04:37:13 +00:00
Jeff Squyres
dd30902bde Fix a few minor bugs in the coll selection logic -- at least one of
which Torsten ran across last week and I was just now able to
duplicate:
- priority == 0 is still a valid priority
- ensure to not compare against an empty list; if the list is empty,
  just put the selectable item on it without any comparisons
- had wrong argument for ompi_list_get_next() (yay macros with no type
  checking :-( ) that caused badness in some cases

This commit was SVN r4372.
2005-02-10 04:15:16 +00:00
Jeff Squyres
3532271877 Ensure that in static builds, we only include the common sm object
files once.  Turns out that linkers *aren't* smart enough to just
"figure it out" and ensure that we only get one copy (or perhaps it's
libtool who's trying to be too smart...?).

This commit was SVN r4371.
2005-02-10 03:38:18 +00:00
Jeff Squyres
d9060730fb Fix compiler warning in non-threaded case
This commit was SVN r4370.
2005-02-10 03:36:15 +00:00
Jeff Squyres
700806023d Fix accidental swap of REPLACE and MINLOC operations
This commit was SVN r4369.
2005-02-10 03:35:36 +00:00
Brian Barrett
55b3fa9c92 * Don't include ompi_config.h, mpif.h, and atomic-asm.s in the tarball. All
are generated at configure time, so there is no need to have them in the
  tarball (and doing so can cause some really evil VPATH issues).  The .in
  files needed to make ompi_config.h and mpif.h are included in the tarball.

This commit was SVN r4367.
2005-02-10 02:19:00 +00:00
Brian Barrett
b4490a77c0 * fix dumb typo for disabling inline assembly
This commit was SVN r4366.
2005-02-10 01:16:28 +00:00
Brian Barrett
76054e0b31 * add a label to the assembly being tested for GCC inline assembly so that
the test barfs on AIX, since it has some strange non-mangling of the
  labels in the inline assembly that all the other platforms seem to be
  ok making right.  *sigh*

This commit was SVN r4365.
2005-02-10 00:38:44 +00:00
Brian Barrett
e51bb59b54 * Updates to make non-inline assembly behave properly on AIX.
This commit was SVN r4364.
2005-02-10 00:06:54 +00:00
George Bosilca
123e15857f If we are unable to reach a node through TCP it does not means we have to stop. We should continue or the others node, maybe this one can
be contacted using others devices.

This commit was SVN r4363.
2005-02-10 00:04:52 +00:00
George Bosilca
b88e28e72c If we are unable to find a path betwen us and the remote PTL return OMPI_UNREACH instead of OMPI_SUCCESS.
Update the count on the addr struct usage if and only if we match something (otherwise the field is set to null and we segfault).

This commit was SVN r4362.
2005-02-10 00:03:37 +00:00
George Bosilca
53fd2c8fa3 Swapt the long_ing and 2int order to match the order in the enum in op.h.
This commit was SVN r4361.
2005-02-10 00:01:42 +00:00
Prabhanjan Kambadur
7b4a9720fb OMPI_DECLSPEC's are not required here. OMPI_DECLSPEC's are used only in the main library. If anything has to be exported from the components, it should only be the main component structure, in which case, one can use OMPI_COMP_EXPORT
This commit was SVN r4360.
2005-02-09 21:26:42 +00:00
Prabhanjan Kambadur
fa9d5b1f20 making changes to the win_makefile in multiple directoires to build dynamic components
This commit was SVN r4359.
2005-02-09 21:21:00 +00:00
Craig E Rasmussen
cc2ff9dba1 Added mpi.i.h to svn:ignore property
This commit was SVN r4353.
2005-02-09 18:10:44 +00:00
Jeff Squyres
ae36245a3f While doing work on the pls in the tim branch, did a code review of
this code (because it's used there):
- moved docs to path.h
- consolidated and removed some useless access functions
- brought up to current code standards
- updated wrapper compilers to use the new API

This commit was SVN r4346.
2005-02-09 17:13:54 +00:00
Craig E Rasmussen
b6c2a5b602 Added mpi.i.h[.sh]
This commit was SVN r4345.
2005-02-09 16:30:36 +00:00
Edgar Gabriel
e8aadc913d stupid typo
This commit was SVN r4344.
2005-02-09 16:27:27 +00:00
Edgar Gabriel
abe624633f remove a warning with the intel-compiler
This commit was SVN r4343.
2005-02-09 16:25:38 +00:00
Brian Barrett
e776283117 * fix some dumb compiler warnings
This commit was SVN r4342.
2005-02-09 15:52:57 +00:00
Edgar Gabriel
9d0e426082 fix for bug 1132: we are now able to verify whether the local and the remote group in intercomm_create are overlapping.
This commit was SVN r4341.
2005-02-09 15:43:17 +00:00
Jeff Squyres
f7918064ff Always flush to get a slightly better guarantee of getting the error
message out.  Use stderr, and put a "yes, we're done with the error
message" marker at the end of the error message so that you know if
you saw it all or the message was truncated.

This commit was SVN r4333.
2005-02-09 03:08:13 +00:00
Brian Barrett
a8099eaa07 * Merge in changes from bwb-romio/copy-2 branch. This slightly changes
the way progress is done in the non-threaded case, adds a progress
  thread for the threaded progress case (which should be made to use
  George's progress engine when it is ready), and fixes some bugs with
  request handling, especially with freeing requests (IO requests, that
  is).

This commit was SVN r4332.
2005-02-09 02:09:07 +00:00
George Bosilca
46713d23df Remove a compilation warning.
This commit was SVN r4329.
2005-02-08 19:43:27 +00:00
George Bosilca
d9855e8519 Correctly detect the overlap (at least do not detect it when it not the case).
This commit was SVN r4328.
2005-02-08 19:33:05 +00:00
Brian Barrett
e1f2548e07 * Some fixes for 64bit AIX on POWER/PowerPC that bring us slightly closer
to working (still having some linking problems)

This commit was SVN r4327.
2005-02-08 19:27:32 +00:00
Brian Barrett
d5232fccc4 * Fix for conversion from nanoseconds to microseconds. Confirmed with Tim
that we do want to divide, not multiply

This commit was SVN r4325.
2005-02-08 18:57:07 +00:00
Jeff Squyres
e5ff6d7146 This patch looks for LIBMPI_* kinds of flags in the post_configure.sh
script in components and distributes them as appropriate throughout
the tree (previously, we only did WRAPPERS_* flags).  These flags are
*only* used when libmpi is being build statically (--disable-shared
--enable-static).

I also added another classification of flags -- LIBMPI_ALWAYS_* and
WRAPPERS_ALWAYS_* for flags that should always be added to the libmpi
/ wrapper linker lines, not just when compiling libmpi statically.

This commit was SVN r4322.
2005-02-08 05:06:15 +00:00
Jeff Squyres
7b0d5c58c3 s/PATH_MAX/OMPI_PATH_MAX/ for portability
This commit was SVN r4312.
2005-02-07 22:13:58 +00:00
George Bosilca
f1d7120757 Correctly update the blast fiels before the goto not after !!!
This commit was SVN r4304.
2005-02-07 19:37:17 +00:00
Jeff Squyres
8ac8c7252d Fix static build issues
This commit was SVN r4302.
2005-02-07 18:53:21 +00:00
Craig E Rasmussen
ea00f3b355 Rename (mv) mpi.i.sh to mpi.i.h.sh to work better with Makefile.
This commit was SVN r4300.
2005-02-07 17:03:06 +00:00
Jeff Squyres
01e5dc9c92 Updates.
This commit was SVN r4299.
2005-02-06 20:43:57 +00:00
Jeff Squyres
718838b5e8 SCRIPTS is not automatically included in the tarball (go figure); so
add its contents to EXTRA_DIST.

This commit was SVN r4298.
2005-02-06 19:31:19 +00:00
Craig E Rasmussen
ded699d4ba Added precision and range tests. Also some minor reconfiguration to
only run some Fortran 90 tests when the types have been found.

This commit was SVN r4293.
2005-02-05 23:54:41 +00:00
Craig E Rasmussen
11b9afb97d Now builds libmpi_f90. automake and libtool work still needed to
work without edits to Makefile.

This commit was SVN r4292.
2005-02-05 23:50:01 +00:00
Craig E Rasmussen
15391d0f27 Initial version.
This commit was SVN r4291.
2005-02-05 23:48:38 +00:00
Jeff Squyres
2456047eec Fixes for bug 1134. Not much worth explaining -- just adding some
missed cases in the parsing.

This commit was SVN r4287.
2005-02-04 16:14:33 +00:00
Jeff Squyres
41be976541 - Move "common" up front in the compiling order because other
frameworks have components that depends on common components
- replace a few tabs with spaces :-)

This commit was SVN r4285.
2005-02-04 14:38:05 +00:00
Jeff Squyres
10d23250ce - Move "common" up front in the compiling order because other
frameworks have components that depends on common components
- replace a few tabs with spaces :-)

This commit was SVN r4284.
2005-02-04 14:27:30 +00:00
Jeff Squyres
4efb59d89b Fix configure.params
This commit was SVN r4283.
2005-02-04 14:24:37 +00:00
Jeff Squyres
bcdd2cd292 Add bypass for jsquyres so that this component is always compiled /
installed for me (helps debug coll selection logic, etc.).

This commit was SVN r4282.
2005-02-04 14:00:35 +00:00