Tim Woodall
1ebcca8443
cleanup for oob
...
This commit was SVN r2202.
2004-08-18 15:50:10 +00:00
Ralph Castain
775a83f039
Basic registry put/get functions completed and mostly tested (some obscure addressing modes still under test). Preliminary integration to be done with OOB next.
...
This commit was SVN r2201.
2004-08-18 15:49:48 +00:00
Brian Barrett
5011348de4
* remove the monitor function from the pcm - doesn't really make sense to
...
have it there
* condense the rsh pcm into fewer files, for faster compile times
* Fix return value bug in mca_pcm_base_build_base_env()
This commit was SVN r2200.
2004-08-18 15:24:26 +00:00
Rich Graham
99b3506ef5
rename data structure for clarifications, remove code in favor of using
...
aspintf, fix a file naming bug.
This commit was SVN r2199.
2004-08-18 15:02:21 +00:00
Laura Casswell
8ba268c8dd
fix warnings and link
...
This commit was SVN r2198.
2004-08-18 14:12:33 +00:00
Brian Barrett
9c2eea86bb
* Fix typo in nightly build test
...
This commit was SVN r2197.
2004-08-18 13:53:35 +00:00
Brian Barrett
59881ef1f4
* clean up logic for case sensitive filesystems so that mpicc isn't accidently
...
deleted on "make install" on HFS+
This commit was SVN r2196.
2004-08-18 13:52:24 +00:00
Brian Barrett
78ae32338a
* fix duplicate symbol badness
...
This commit was SVN r2195.
2004-08-18 05:27:53 +00:00
Weikuan Yu
351ea78525
commit in more changes for send frags
...
This commit was SVN r2194.
2004-08-18 05:05:49 +00:00
Weikuan Yu
cd68dfa757
reorganize the outstanding sends, to combine them into a separate queue for completion notification
...
This commit was SVN r2193.
2004-08-18 03:53:54 +00:00
Weikuan Yu
d5a714b63d
check in some debugging code, to unify all the frag lists altogether
...
This commit was SVN r2192.
2004-08-17 23:50:55 +00:00
Brian Barrett
7f3f72f1c7
* split the PCM into pcm and pcmclient to better match to the multi-pcm case
...
* add env pcmclient, which builds client data out of environment variables
* improved rsh infrastructure a little bit - almost able to get to calling
fork()
* Removed instance information for llm - it should be burried in the pcm,
not exposed
*** YOU MUST RUN AUTOGEN / CONFIGURE / etc AFTER UPDATING ***
This commit was SVN r2191.
2004-08-17 22:24:17 +00:00
Brian Barrett
d5133eddec
* clean up the Doxygen comments in the runtime and llm classes
...
* recalarify previous clarification on ompi_list_get_size()
This commit was SVN r2190.
2004-08-17 22:14:47 +00:00
Rich Graham
29b8a543af
add more tests - finish non-threaded testing.
...
This commit was SVN r2189.
2004-08-17 21:49:29 +00:00
Rich Graham
2c70be74cf
fix a few more bugs - move thread safety management outside of these
...
routines.
This commit was SVN r2188.
2004-08-17 21:49:01 +00:00
Ralph Castain
b0ea8e0b06
Added "put" function and completed unit test for it. Updated gpr.h to include mode "none" for empty flag.
...
This commit was SVN r2187.
2004-08-17 19:33:36 +00:00
Brian Barrett
c5ebf49f41
* Modifications to the ompi_list_t interface and test suite
...
- added ompi_list_splice and ompi_list_join, which are multi-list
manipulation functions similar to the splice functions in the STL
list interface
- added ompi_list_is_empty() for O(1) testing of for an empty list
- added note that sometime in the future, ompi_list_get_size() may
change to O(N) complexity. DID NOT CHANGE THE FUNCTION IN ANY WAY.
If you are writing new code that needs to check for an empty list, please
use ompi_list_is_empty() rather than ompi_list_get_size() as is_empty()
will always be an O(1) operation (I can't see how you could make it
impossible to make it O(1), so this seems like a safe claim).
This commit was SVN r2186.
2004-08-17 19:31:07 +00:00
Tim Woodall
08de49cc4a
allow null string
...
This commit was SVN r2185.
2004-08-17 16:10:42 +00:00
Tim Woodall
e2350d8887
change to non-blocking poll
...
This commit was SVN r2184.
2004-08-17 16:08:50 +00:00
Tim Woodall
754a827a99
added mca parameters to control the ptl modules that are loaded
...
This commit was SVN r2183.
2004-08-17 16:03:42 +00:00
Brian Barrett
c701517d53
* Fix small typo that was resulting in duplicate symbol badness in the coll
...
libs. Probably would have eventually caused missing symbol badness in the
I/O libs.
This commit was SVN r2182.
2004-08-17 15:19:35 +00:00
Brian Barrett
34fcbc94ad
* Add sys/wait.h so that we compile on OS X
...
This commit was SVN r2181.
2004-08-17 15:12:42 +00:00
Ralph Castain
1edeed2737
Fix a duplicate instance call that is not noticed by the Mac, but apparently is noticed by others. Continue installing internal tests.
...
This commit was SVN r2180.
2004-08-17 15:04:56 +00:00
Ralph Castain
0c71c8f4e1
My apologies - apparently this file was skipped when committing.
...
This commit was SVN r2179.
2004-08-17 14:00:55 +00:00
Jeff Squyres
faf6b194b4
First cut of a revamped nightly compile script
...
This commit was SVN r2178.
2004-08-17 05:10:26 +00:00
Ralph Castain
964ad6ae46
Added hook to test internal subsystems. Expanded unit test to exploit. Fixed a few bugs.
...
This commit was SVN r2177.
2004-08-17 04:23:06 +00:00
Jeff Squyres
11c9295d6c
Move the ompi_few() docs to the .h file.
...
This commit was SVN r2176.
2004-08-17 03:06:39 +00:00
Jeff Squyres
a0abf45372
Ensure to return the right status -- strip the exit status out of the
...
return code from waitpid(). For example, in some cases, when gcc
fails to compile the app for some reason, it returns an error status
of 1, which is a return code of 256. If we return 256 from main(),
only the lower 8 bits are returned which results in a 0 return status
from the wrapper compiler (doh!). So be sure that we properly strip
out the correct return status from the underlying compiler and return
only those 8 bits through main().
This commit was SVN r2175.
2004-08-17 03:02:01 +00:00
Jeff Squyres
bd7d7e3eb5
- Minor fixes to code base to make it in ompi code style
...
- Ensure to always make the mpiCC sym link when we're on
case-sensitive filesystems (fix Makefile.am logic)
This commit was SVN r2174.
2004-08-17 02:34:17 +00:00
Rich Graham
9b07ea2585
fix fifo memory allocation to use the correct lengths. Add an interface
...
function (used in testing) to check for fifo size.
This commit was SVN r2173.
2004-08-16 23:37:07 +00:00
Tim Woodall
442c9e03b5
provide pml implementation - will need to update for romio
...
This commit was SVN r2172.
2004-08-16 23:10:25 +00:00
Rich Graham
30f1b87165
add to the circular buffer unit test
...
This commit was SVN r2171.
2004-08-16 23:07:10 +00:00
Rich Graham
f75b88faa5
fix a bug, so that the fifo size is rounded up to a power of 2.
...
Add some support code to determine nearest power of 2.
This commit was SVN r2170.
2004-08-16 23:06:33 +00:00
Ralph Castain
2db94bb016
Checkpoint the registry. Now have several of the basic functions operating - can define segments, get index of dictionaries, etc - all the basic elements required to build get/put. Will continue tonight.
...
This commit was SVN r2169.
2004-08-16 21:36:50 +00:00
Ralph Castain
c11d3896f0
Fix the proxy component to default to using the seed daemon as its replica.
...
This commit was SVN r2168.
2004-08-16 20:21:39 +00:00
Tim Woodall
9c9037ef2b
added support for querying oob contact info and setting
...
contact info for seed daemon
This commit was SVN r2167.
2004-08-16 19:39:54 +00:00
Tim Woodall
bd8af9ecdf
return correct status
...
This commit was SVN r2166.
2004-08-16 19:09:03 +00:00
Weikuan Yu
8b45b6e3a4
Add an additional type MCA_PTL_HDR_TYPE_FIN for last fragment notification
...
This commit was SVN r2165.
2004-08-16 18:37:34 +00:00
Ralph Castain
60a5428e43
Update the registry - restore the gpr_replica.c file into the make system, update functionality.
...
This commit was SVN r2164.
2004-08-16 16:20:47 +00:00
Weikuan Yu
61b4bc71a5
check in some cleanup
...
This commit was SVN r2163.
2004-08-16 15:48:22 +00:00
David Daniel
3dae1199a6
Removing explicit reference to stdint.h (breaks Solaris compile)
...
This commit was SVN r2162.
2004-08-16 03:53:17 +00:00
Jeff Squyres
0d093b40a0
Ensure to output using the selected component
...
This commit was SVN r2161.
2004-08-16 03:25:31 +00:00
Jeff Squyres
2d1976b403
Remove silly ordering issue that sometimes caused a seg fault. Duh.
...
This commit was SVN r2160.
2004-08-16 03:08:01 +00:00
Jeff Squyres
292baf897e
Now that gpr is apparently ready for prime-time, remove the hacks that
...
made it [somewhat] compile and fully integrate it into the build
process:
- add configure.params to gpr/proxy and gpr/replica
- bring gpr/proxy/Makefile.am and gpr/replica/Makefile.am up-to-date
- uncomment gpr sections from ompi_info
- took the liberty of changing a member variable from "delete" to
"delete_fn" in gpr.h ("delete" is a keyword in C++, and gpr.h is
included in ompi_info, which is written in C++)
This commit was SVN r2159.
2004-08-16 02:59:38 +00:00
Ralph Castain
0d7c16f400
Update the registry with some functionality and an early draft of the unit test.
...
I could use some help from one of you MCA gurus - if you run the test, you'll see that I cannot get the gpr components to be recognized. I'm not sure of the reason - I would appreciate any help you can provide to get the gpr components "registered".
This commit was SVN r2158.
2004-08-16 02:08:48 +00:00
David Daniel
a1688d5b9f
more atomic.h changes
...
This commit was SVN r2157.
2004-08-16 01:13:25 +00:00
David Daniel
bfc4b52b8b
fixes for Solaris
...
This commit was SVN r2156.
2004-08-15 23:55:10 +00:00
David Daniel
e865b75241
fixes for Solaris
...
This commit was SVN r2155.
2004-08-15 23:54:30 +00:00
Ralph Castain
b433fc3ad9
Added the local support functions for the replica. Everything compiles fine on my machine - next step is to test these functions.
...
This commit was SVN r2154.
2004-08-15 22:37:01 +00:00
David Daniel
6bdf9c0cbc
Adding file to instantiate assembly level code for non-GNU C compilers. Not added to build system yet.
...
This commit was SVN r2153.
2004-08-15 22:06:01 +00:00