1
1
openmpi/ompi/mca
Ralph Castain bd9265c560 Per the meeting on moving the BTLs to OPAL, move the ORTE database "db" framework to OPAL so the relocated BTLs can access it. Because the data is indexed by process, this requires that we define a new "opal_identifier_t" that corresponds to the orte_process_name_t struct. In order to support multiple run-times, this is defined in opal/mca/db/db_types.h as a uint64_t without identifying the meaning of any part of that data.
A few changes were required to support this move:

1. the PMI component used to identify rte-related data (e.g., host name, bind level) and package them as a unit to reduce the number of PMI keys. This code was moved up to the ORTE layer as the OPAL layer has no understanding of these concepts. In addition, the component locally stored data based on process jobid/vpid - this could no longer be supported (see below for the solution).

2. the hash component was updated to use the new opal_identifier_t instead of orte_process_name_t as its index for storing data in the hash tables. Previously, we did a hash on the vpid and stored the data in a 32-bit hash table. In the revised system, we don't see a separate "vpid" field - we only have a 64-bit opaque value. The orte_process_name_t hash turned out to do nothing useful, so we now store the data in a 64-bit hash table. Preliminary tests didn't show any identifiable change in behavior or performance, but we'll have to see if a move back to the 32-bit table is required at some later time.

3. the db framework was a "select one" system. However, since the PMI component could no longer use its internal storage system, the framework has now been changed to a "select many" mode of operation. This allows the hash component to handle all internal storage, while the PMI component only handles pushing/pulling things from the PMI system. This was something we had planned for some time - when fetching data, we first check internal storage to see if we already have it, and then automatically go to the global system to look for it if we don't. Accordingly, the framework was provided with a custom query function used during "select" that lets you seperately specify the "store" and "fetch" ordering.

4. the ORTE grpcomm and ess/pmi components, and the nidmap code,  were updated to work with the new db framework and to specify internal/global storage options.

No changes were made to the MPI layer, except for modifying the ORTE component of the OMPI/rte framework to support the new db framework.

This commit was SVN r28112.
2013-02-26 17:50:04 +00:00
..
allocator remove unused allocator output declaration (missed by r27599) 2012-11-13 07:21:10 +00:00
bcol In talking about this with Jeff and Ralph, we don't actually need 2013-02-12 21:10:11 +00:00
bml In talking about this with Jeff and Ralph, we don't actually need 2013-02-12 21:10:11 +00:00
btl Now that we are using local ranks in OMPI, we need to define an ompi_local_rank_t and equate it to orte_local_rank_t. Change the sm btl to use the correct abstraction. 2013-02-22 17:48:53 +00:00
coll In talking about this with Jeff and Ralph, we don't actually need 2013-02-12 21:10:11 +00:00
common Add show_help.h where needed. 2013-02-19 15:42:09 +00:00
crcp Move the RTE framework change into the trunk. With this change, all non-CR 2013-01-27 23:25:10 +00:00
dpm Move the RTE framework change into the trunk. With this change, all non-CR 2013-01-27 23:25:10 +00:00
fbtl Revamp the handling of wrapper compiler flags. The user flags, main configure 2013-01-29 00:00:43 +00:00
fcoll Modified/improved implmentation of dynamic segmentation algorithm to avoid merging in 2012-11-15 00:59:10 +00:00
fs Revamp the handling of wrapper compiler flags. The user flags, main configure 2013-01-29 00:00:43 +00:00
io Revamp the handling of wrapper compiler flags. The user flags, main configure 2013-01-29 00:00:43 +00:00
mpool In talking about this with Jeff and Ralph, we don't actually need 2013-02-12 21:10:11 +00:00
mtl MTL MXM: adapt to mxm 2.0 api changes - flags are only for send requests, and SYNC is part of the opcode. 2013-02-17 10:04:19 +00:00
op add missing #include of opal/util/output.h 2012-11-13 07:14:41 +00:00
osc Fix a memory leak in the RDMA one-sided component. Thanks to Victor Vysotskiy 2013-01-21 22:45:37 +00:00
pml In talking about this with Jeff and Ralph, we don't actually need 2013-02-12 21:10:11 +00:00
pubsub Per the meeting on moving the BTLs to OPAL, move the ORTE database "db" framework to OPAL so the relocated BTLs can access it. Because the data is indexed by process, this requires that we define a new "opal_identifier_t" that corresponds to the orte_process_name_t struct. In order to support multiple run-times, this is defined in opal/mca/db/db_types.h as a uint64_t without identifying the meaning of any part of that data. 2013-02-26 17:50:04 +00:00
rcache Per RFC modify the behavior of mca_base_components_close to NOT close the output. Modify frameworks to always close their output and set to -1. 2012-11-06 19:09:26 +00:00
rte Per the meeting on moving the BTLs to OPAL, move the ORTE database "db" framework to OPAL so the relocated BTLs can access it. Because the data is indexed by process, this requires that we define a new "opal_identifier_t" that corresponds to the orte_process_name_t struct. In order to support multiple run-times, this is defined in opal/mca/db/db_types.h as a uint64_t without identifying the meaning of any part of that data. 2013-02-26 17:50:04 +00:00
sbgp In talking about this with Jeff and Ralph, we don't actually need 2013-02-12 21:10:11 +00:00
sharedfp Per RFC modify the behavior of mca_base_components_close to NOT close the output. Modify frameworks to always close their output and set to -1. 2012-11-06 19:09:26 +00:00
topo Per RFC modify the behavior of mca_base_components_close to NOT close the output. Modify frameworks to always close their output and set to -1. 2012-11-06 19:09:26 +00:00
vprotocol Move the RTE framework change into the trunk. With this change, all non-CR 2013-01-27 23:25:10 +00:00