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

4855 Коммитов

Автор SHA1 Сообщение Дата
Jeff Squyres
3c99cf301a - Remove some empty directories (from before the directory re-org)
- Add zero-length Makefile.am's so that we can plug them into
  configure.ac now and not have to keep editing it

This commit was SVN r6273.
2005-07-02 14:13:35 +00:00
Jeff Squyres
d865e68e20 First cut at Makefile.am changes
This commit was SVN r6272.
2005-07-02 14:08:19 +00:00
Jeff Squyres
d05658f705 Add opal/Makefile
This commit was SVN r6271.
2005-07-02 13:53:01 +00:00
Jeff Squyres
05d7543b4e Move a small number of specialized classes back to ompi
This commit was SVN r6270.
2005-07-02 13:44:20 +00:00
Jeff Squyres
4ab17f019b Rename src -> ompi
This commit was SVN r6269.
2005-07-02 13:43:57 +00:00
Jeff Squyres
cd497636ac Move modex out of opal MCA base into orte/util
This commit was SVN r6268.
2005-07-02 13:43:30 +00:00
Jeff Squyres
3a9179a0d7 Initial population of the opal tree
This commit was SVN r6267.
2005-07-02 13:43:20 +00:00
Jeff Squyres
1b18979f79 Initial population of orte tree
This commit was SVN r6266.
2005-07-02 13:42:54 +00:00
Jeff Squyres
565aa999ee Make initial directories for orte and opal
This commit was SVN r6265.
2005-07-02 13:41:55 +00:00
Tim Woodall
6f6fdec3fb cleanup in progress
This commit was SVN r6261.
2005-07-01 22:24:58 +00:00
Jeff Squyres
af7c90803e Added comment for clarity
This commit was SVN r6260.
2005-07-01 20:40:56 +00:00
Jeff Squyres
b648c93dc7 Nasty typo that was causing nondeterministic failures when running
MPI-2 dynamic tests that did not disconnect from the parent before
invoking MPI_FINALIZE.

This commit was SVN r6258.
2005-07-01 20:29:57 +00:00
Tim Woodall
0eaac0c9f7 renamed param
This commit was SVN r6256.
2005-07-01 17:02:04 +00:00
Tim Woodall
5747c1b12d moved find function
This commit was SVN r6255.
2005-07-01 17:01:43 +00:00
Tim Woodall
901fef8af2 release registrations
This commit was SVN r6254.
2005-07-01 17:00:59 +00:00
Jeff Squyres
a5fa5f394c Similar to the changes yesterday, this is a clash of the APIs -- MPI
needs int's, and ORTE needs size_t's.  So do the "safe" downcast to an
int when required.

This commit was SVN r6253.
2005-07-01 16:51:34 +00:00
Tim Woodall
c4a07f700f review of locking
This commit was SVN r6251.
2005-07-01 15:04:42 +00:00
Tim Woodall
2b44bce3b7 priority field not needed
This commit was SVN r6249.
2005-06-30 21:44:27 +00:00
Tim Woodall
4a70769b2d more cleanup
This commit was SVN r6248.
2005-06-30 21:42:05 +00:00
Tim Woodall
7f40a3a48b check completion status
This commit was SVN r6247.
2005-06-30 21:31:16 +00:00
Jeff Squyres
a7b66bce9c In comm.c, one of the few places where OMPI and ORTE interact, we have
a clash of APIs -- MPI requires int's, but the ORTE DPS requires
size_t's.  Specifically, we need to orte_dps.unload(), which fills a
size_t.  We then need to PML send (i.e., MPI_Send) that value around.
However, there's no such thing as MPI_SIZE_T as a datatype, and that
would hose us in heterogeneous situations, anyway.  So the compromise
was to make ompi_sizet2int(), a function what does the [potenial]
downcast.  On 32 bit architectures, this is no big deal -- it's a
simple assignment.  On 64 bit architectures (or, more specifically,
where sizeof(size_t) > sizeof(int)), it does the dowcast in a
compiler-safe manner, and does a check to see if we truncated.  If we
truncated, in a developer build, we'll abort().  If this is not a
developer build, print out a nasty warning.

The rationale here is as followes:

- this is a clash of the API's.  There's unfortunately nothing that we
  can do about this at the moment.
- hence, we have to do the downcast.
- but we might as well be "safe" about it -- assuming that
  orte_dps.unload() never gives us back a value >sizeof(int) (which is
  a pretty safe assumption -- if we get that large of a value, we have
  other problems, or we're on fundamentally different types of
  hardware and I suspect a lot of the rest of the code base will have
  problems as well!), we should be able to downcast safely.
- if there is a mistake in code somewhere such that:
  - we can't downcast safely (i.e., we legitmately have a size_t value
    that is too large for an int)
  - we truncate when the value should not have been that large
  the conversion function will detect this and print out an error.  So
  we won't silently introduce any new errors into the code base --
  they will be loud and obvious.
- although comm.c is currently the only place where we need this, I
  suspect that there will be a small number of other places where
  similar situations occur.  I intend to bring this right over to the
  trunk, so it was simpler to make this functionality be a subroutine
  so that we can use it elsewhere if/when necessary.

Final note: src/attribute/attribute.c does something *similar*
(downcasting when sizeof(void*) > sizeof(int), but is different enough
that it would have been painful to make one unified interface.  This
does not rule it out for the future, however (especially if we find
more places in the tree that need this kind of functionality).

This commit was SVN r6246.
2005-06-30 21:30:18 +00:00
Jeff Squyres
a3fa0dbf18 Didn't have a good preset value for MPI_IO (see MPI-1, 7.1.1, p192).
We may need to revisit this per whacky platforms like Red Storm, Blue
Gene, etc.

This commit was SVN r6245.
2005-06-30 21:29:22 +00:00
Galen Shipman
0c7f67f67e removed the ib ptl and fixed a few conflicts in my previous commit
This commit was SVN r6244.
2005-06-30 21:28:35 +00:00
Tim Woodall
5f981fb76c add put/get support
This commit was SVN r6241.
2005-06-30 20:39:24 +00:00
Tim Woodall
4a5918a095 dont create a node w/out a nodename
This commit was SVN r6240.
2005-06-30 20:09:29 +00:00
Tim Woodall
f7d2b120ef start of a gm btl - not currently functional
This commit was SVN r6232.
2005-06-30 18:21:55 +00:00
Tim Woodall
b12a3272e8 changed to unsigned char to simplify pointer arithmetic
This commit was SVN r6231.
2005-06-30 18:19:56 +00:00
Tim Woodall
926e96a3f7 added constructor/destructor for base registration
This commit was SVN r6230.
2005-06-30 18:19:13 +00:00
Tim Woodall
3862133144 moved deregistration into base destructor
This commit was SVN r6229.
2005-06-30 18:18:44 +00:00
Tim Woodall
719bbdee5e gm memory pool
This commit was SVN r6228.
2005-06-30 18:17:17 +00:00
Ralph Castain
67a1c5e5e6 Tell orted it is infrastructure
This commit was SVN r6227.
2005-06-30 16:32:02 +00:00
Galen Shipman
5701b4dbfb moving mvapi to vapi.. You should all still be able to build, let me know if
you are not able to. 

This commit was SVN r6226.
2005-06-30 14:31:41 +00:00
Galen Shipman
db286e1a31 working checkin of bmi to btl name change. Also changed ib to mvapi. Should
probably change mpool/vapi to mpool/mvapi soon.

This commit was SVN r6225.
2005-06-30 05:50:55 +00:00
Galen Shipman
bd4d647e62 Got this wrong again.. another ci will proceed ;-)
This commit was SVN r6224.
2005-06-30 02:19:28 +00:00
Galen Shipman
408a36c4ee name changing bmi to btl
This commit was SVN r6223.
2005-06-30 02:12:23 +00:00
Galen Shipman
6e81b28251 bmi to btl renaming - also renaming ib to mvapi for (mellanox vapi).
This commit was SVN r6222.
2005-06-30 02:09:50 +00:00
Galen Shipman
b4281d28e5 Initial checkin of btl/base changes for bmi to btl renaming.
This commit was SVN r6221.
2005-06-30 02:08:24 +00:00
Galen Shipman
2e9bbda826 Intial checkin of bmi to btl renaming. This breaks the build but is necessary
so that I can next rename all the files under mca/btl using "svn mv" which is
not possible until after the initial "svn mv bmi btl" is checked in. 

This commit was SVN r6220.
2005-06-30 02:02:57 +00:00
George Bosilca
7c80bb9a9c Use the correct data description and update the comment.
This commit was SVN r6219.
2005-06-29 22:32:03 +00:00
George Bosilca
b5d3a914e8 Less warnings about missing prototypes.
This commit was SVN r6218.
2005-06-29 22:31:41 +00:00
George Bosilca
671fb57c53 Update the tester to match the latest developpement in the ddt engine.
This commit was SVN r6217.
2005-06-29 22:30:52 +00:00
Brian Barrett
611e09d749 * checkpoint so Galen can move the bmi tree
This commit was SVN r6216.
2005-06-29 21:52:00 +00:00
Ralph Castain
212183ba5c Update with registry magic for David
This commit was SVN r6215.
2005-06-29 16:05:20 +00:00
David Daniel
4f9e95bc5b Adding placeholder for totalview support.
This commit was SVN r6214.
2005-06-29 14:32:57 +00:00
Galen Shipman
f739e016a2 First stab at mru list for leave pinned option in IB bmi. This keeps a most
recently used cache of pinned user buffers when leave_pinned is set to 1. The
size of this cache is currently based on number of entries but will probably
be modified to use total bytes in the near future. 

This commit was SVN r6213.
2005-06-29 14:10:49 +00:00
George Bosilca
6f21a30866 Do not call the convertor_set_position as the convertor by default is set to the
begining of the data.

This commit was SVN r6211.
2005-06-28 22:21:38 +00:00
George Bosilca
6a7e01e640 :) pedantic :)
This commit was SVN r6209.
2005-06-28 22:10:49 +00:00
Jeff Squyres
65decd83bd Fix silly typo that prevented Fortran MPI_GRAPH_CREATE from working.
This commit was SVN r6208.
2005-06-28 21:09:49 +00:00
Brian Barrett
db58b61ffa Improvement on Josh's fix for big endian 64 bit machines. Add macro
for atomically adding to a size_t.  macro will figure out whether
size_t is 32 or 64 bit and use the right atomic add.  

This commit was SVN r6205.
2005-06-28 20:15:01 +00:00
Josh Hursey
94d097430e 64 bit PPC bug fix. So small, yet wrecks such havoc.
This commit was SVN r6204.
2005-06-28 19:07:11 +00:00