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

1508 Коммитов

Автор SHA1 Сообщение Дата
Ginger Young
c5644be2f7 Completed adding Fortran wrappers and adding conversion code
when necessary.

Reviewer: Tim Woodall

This commit was SVN r1214.
2004-06-10 12:32:47 +00:00
Tim Woodall
7b0b9f0422 - fix to resolve change in behavior in datatype engine
This commit was SVN r1213.
2004-06-09 22:46:12 +00:00
Tim Woodall
8e30307ada removed list type
This commit was SVN r1212.
2004-06-09 22:08:59 +00:00
Tim Woodall
69ff3b9ecc - removed unused list type from ompi_list
- added probe/cancel stubs
- changed scheduler to allow unlimited first fragment size / use max fragment size

This commit was SVN r1211.
2004-06-09 19:45:08 +00:00
Jeff Squyres
35ee48d78e Update svn:ignore lists
This commit was SVN r1210.
2004-06-09 19:11:11 +00:00
George Bosilca
bcbb4477bc Change the result of the compare function as we want the ptl's ordered in increased order of the priority.
This commit was SVN r1209.
2004-06-09 04:33:42 +00:00
George Bosilca
3c866dde73 C require that the definitions of variables have to be done prior to any instruction block.
This commit was SVN r1208.
2004-06-09 04:31:38 +00:00
Edgar Gabriel
62f6f75b7c renaming a file for convinience reasons
This commit was SVN r1207.
2004-06-08 22:10:06 +00:00
Tim Woodall
4de017f34f check for non-null entry
This commit was SVN r1206.
2004-06-08 22:05:34 +00:00
Rich Graham
64795cbc33 update assignments. Ginger has agreed to take over George's work.
This commit was SVN r1205.
2004-06-08 20:48:16 +00:00
Ralph Castain
8270768e62 Adds the ompi_sys_info() function to the MPI_init function to initialize the system information structure. Added process id to the structure.
This commit was SVN r1204.
2004-06-08 15:20:16 +00:00
Jeff Squyres
3772597c82 Add proper function signature to prototypes
This commit was SVN r1203.
2004-06-07 23:02:10 +00:00
Jeff Squyres
29ab8d41d6 Fix some typos
This commit was SVN r1202.
2004-06-07 22:09:25 +00:00
Tim Woodall
dc97babc71 unused
This commit was SVN r1201.
2004-06-07 21:23:26 +00:00
Denis Dimick
1d640cbf7f text to look in HACKING file if autogen.sh fails
This commit was SVN r1200.
2004-06-07 21:10:17 +00:00
Denis Dimick
29ce94a8aa Changed repository from CVS to SVN
This commit was SVN r1199.
2004-06-07 21:04:57 +00:00
David Daniel
c2e2de7981 Removing broken reference to registry test
This commit was SVN r1198.
2004-06-07 21:00:42 +00:00
Denis Dimick
d803821f5d Updated the Hacking file. MacOS/X libtool broken msg and automake needs to be 1.7 or better.
This commit was SVN r1197.
2004-06-07 20:59:45 +00:00
Tim Woodall
f851e0032b renamed
This commit was SVN r1196.
2004-06-07 19:14:26 +00:00
Jeff Squyres
f93f068979 Rename a few .lam_ignore -> .ompi_ignore files
This commit was SVN r1195.
2004-06-07 18:18:54 +00:00
Tim Woodall
66a1b34bb5 shared memory version
This commit was SVN r1194.
2004-06-07 15:49:14 +00:00
David Daniel
1b04577727 renaming directories
This commit was SVN r1193.
2004-06-07 15:45:09 +00:00
David Daniel
2f96ba71fe renaming files
This commit was SVN r1192.
2004-06-07 15:40:19 +00:00
David Daniel
563ac2a338 First pass of lam -> ompi conversion
This commit was SVN r1191.
2004-06-07 15:33:53 +00:00
Jeff Squyres
9e64700ce9 Add some svn:ignore properties
This commit was SVN r1190.
2004-06-06 11:34:22 +00:00
Ralph Castain
862ea0ce45 Get rid of Makefile.in - sorry, didn't realize it had been picked up.
This commit was SVN r1189.
2004-06-04 22:13:21 +00:00
Ralph Castain
1433bccfaf Update configure.ac to include the universe and registry directories.
This commit was SVN r1188.
2004-06-04 02:28:48 +00:00
Ralph Castain
a22c39a0f5 Add general purpose registry code - not ready for use yet, but this won't hurt anyone since it isn't linked into anything yet.
This commit was SVN r1187.
2004-06-04 02:27:19 +00:00
Tim Woodall
9361dbf767 - changed PTL ptl_add_proc/ptl_del_proc interface to accept an array of procs for more scalable startup
- resolved several threaded race conditions
- stubs for shared memory ptl

This commit was SVN r1186.
2004-06-03 22:13:01 +00:00
Edgar Gabriel
bc9ac9b7b1 fixed the reference count stuff detected by George.
Modification of lam_comm_destruct and lam_comm_finalize.

Tested with some simple pt2pt tests, and it seems to work.

Since just some very minor modifications, code has been reviewed locally by George.

This commit was SVN r1185.
2004-06-03 21:23:42 +00:00
Ginger Young
8fe9be2e5e Modified
void mpi_group_range_excl_(MPI_Fint *group, MPI_Fint *n, MPI_Fint *ranges3,
                              MPI_Fint *newgroup, MPI_Fint *ierr);
to
   void mpi_group_range_excl_(MPI_Fint *group, MPI_Fint *n, MPI_Fint ranges[][3],
                              MPI_Fint *newgroup, MPI_Fint *ierr);

and

   void mpi_group_range_incl_(MPI_Fint *group, MPI_Fint *n, MPI_Fint *ranges3,
                              MPI_Fint *newgroup, MPI_Fint *ierr);
to
   void mpi_group_range_incl_(MPI_Fint *group, MPI_Fint *n, MPI_Fint ranges[][3],
                              MPI_Fint *newgroup, MPI_Fint *ierr);


Reviewer: Tim Woodall

This commit was SVN r1184.
2004-06-03 20:15:40 +00:00
Ginger Young
5c60beffa4 Added fortran to c sections when needed.
Reviewer: Tim Woodall

This commit was SVN r1183.
2004-06-03 16:52:16 +00:00
Jeff Squyres
5baf8cb46b I can't believe this typo slipped by -- I know I checked this before I
commited.  :-(

This commit was SVN r1182.
2004-06-02 17:26:43 +00:00
Ralph Castain
4cf0df541e Updates the documentation on a few things. Adds the preliminary registry documentation. The functionality in registry.c should be ignored for now as it is just in test mode - I will be converting it to something more solid shortly. Main desire was to get the prototype functions out there along with their documentation.
This commit was SVN r1181.
2004-06-01 18:40:16 +00:00
Vishal Sahay
a82fc3ff5a Set errhandlers to have MPI_COMM_WORLD instead of NULL, since lam_errhandler_invoke does not handle NULL to substitute it to MPI_COMM_WORLD. We want MCW here because we want to distinguish between errhandlers called before/after/between MCW was init/destroyed
This commit was SVN r1180.
2004-06-01 16:53:45 +00:00
Vishal Sahay
539c5442d3 Remove the error handler stuff which is not supposed to be there, thanks to George
This commit was SVN r1179.
2004-06-01 16:29:41 +00:00
Vishal Sahay
2611335eab Change error handling code to takein proper object handle
This commit was SVN r1178.
2004-06-01 16:28:40 +00:00
George Bosilca
e71623f6f9 Correctly handle the ref count for the 3 predefined communicators.
This commit was SVN r1177.
2004-06-01 04:21:39 +00:00
Jeff Squyres
273f49f657 Fix for bug 868 -- ensure that the long name can be NULL and not
cause a seg fault

This commit was SVN r1176.
2004-05-31 17:10:25 +00:00
Vishal Sahay
56219b0c64 Remove this file, replaced by comm_set_attr.c
This commit was SVN r1175.
2004-05-30 18:17:28 +00:00
Vishal Sahay
004a52ebd2 Add this file instead of comm_set_attribute.c
This commit was SVN r1174.
2004-05-30 18:16:49 +00:00
Vishal Sahay
196020d6a0 Init attribute for initialized comms
This commit was SVN r1173.
2004-05-30 16:50:41 +00:00
Vishal Sahay
9d03ed0589 attribute related MPI c functions
This commit was SVN r1172.
2004-05-30 16:49:18 +00:00
Vishal Sahay
de297e5b1a Add attribute meta-structure init stuff
This commit was SVN r1171.
2004-05-30 16:45:32 +00:00
Vishal Sahay
e68b17ec3d Few modifications about error code and some unused variable removal
This commit was SVN r1170.
2004-05-30 16:43:43 +00:00
Vishal Sahay
48d8dc1e2a Change some doxy comments
This commit was SVN r1169.
2004-05-30 16:24:20 +00:00
Vishal Sahay
4df4d27378 Clean up and modify some code
This commit was SVN r1168.
2004-05-30 16:21:44 +00:00
Vishal Sahay
01d6aa2ad4 Add functionality of traversing the hash elements
This commit was SVN r1167.
2004-05-30 16:21:04 +00:00
Vishal Sahay
24dde0f624 Add error handler to datatype
This commit was SVN r1166.
2004-05-30 16:20:25 +00:00
Ralph Castain
b93d7eeecb Adds all the doxygen documentation for the new ompi_sys_info, ompi_create_dirpath, ompi_os_path, and ompi_session_dir_init functions. Adds the rte directories to the svn repository, along with the openmpi and ompi_session_dir_init routines. The rte functions are not ready for use yet, but they aren't callable by anyone either, so this shouldn't pose a problem.
The utility functions have all been checked by David and Tim, and Jeff before them. They have unit tests in the test trunk.

This commit was SVN r1165.
2004-05-27 16:26:36 +00:00