1
1
openmpi/ompi/class
Jeff Squyres 8ace07efed This commit brings in two major things:
1. Galen's fine-grain control of queue pair resources in the openib
   BTL.
1. Pasha's new implementation of asychronous HCA event handling.

Pasha's new implementation doesn't take much explanation, but the new
"multifrag" stuff does.  

Note that "svn merge" was not used to bring this new code from the
/tmp/ib_multifrag branch -- something Bad happened in the periodic
trunk pulls on that branch making an actual merge back to the trunk
effectively impossible (i.e., lots and lots of arbitrary conflicts and
artifical changes).  :-(

== Fine-grain control of queue pair resources ==

Galen's fine-grain control of queue pair resources to the OpenIB BTL
(thanks to Gleb for fixing broken code and providing additional
functionality, Pasha for finding broken code, and Jeff for doing all
the svn work and regression testing).

Prior to this commit, the OpenIB BTL created two queue pairs: one for
eager size fragments and one for max send size fragments.  When the
use of the shared receive queue (SRQ) was specified (via "-mca
btl_openib_use_srq 1"), these QPs would use a shared receive queue for
receive buffers instead of the default per-peer (PP) receive queues
and buffers.  One consequence of this design is that receive buffer
utilization (the size of the data received as a percentage of the
receive buffer used for the data) was quite poor for a number of
applications.

The new design allows multiple QPs to be specified at runtime.  Each
QP can be setup to use PP or SRQ receive buffers as well as giving
fine-grained control over receive buffer size, number of receive
buffers to post, when to replenish the receive queue (low water mark)
and for SRQ QPs, the number of outstanding sends can also be
specified.  The following is an example of the syntax to describe QPs
to the OpenIB BTL using the new MCA parameter btl_openib_receive_queues:

{{{
-mca btl_openib_receive_queues \
     "P,128,16,4;S,1024,256,128,32;S,4096,256,128,32;S,65536,256,128,32"
}}}

Each QP description is delimited by ";" (semicolon) with individual
fields of the QP description delimited by "," (comma).  The above
example therefore describes 4 QPs.

The first QP is:

    P,128,16,4

Meaning: per-peer receive buffer QPs are indicated by a starting field
of "P"; the first QP (shown above) is therefore a per-peer based QP.
The second field indicates the size of the receive buffer in bytes
(128 bytes).  The third field indicates the number of receive buffers
to allocate to the QP (16).  The fourth field indicates the low
watermark for receive buffers at which time the BTL will repost
receive buffers to the QP (4).

The second QP is:

    S,1024,256,128,32

Shared receive queue based QPs are indicated by a starting field of
"S"; the second QP (shown above) is therefore a shared receive queue
based QP.  The second, third and fourth fields are the same as in the
per-peer based QP.  The fifth field is the number of outstanding sends
that are allowed at a given time on the QP (32).  This provides a
"good enough" mechanism of flow control for some regular communication
patterns.

QPs MUST be specified in ascending receive buffer size order.  This
requirement may be removed prior to 1.3 release.

This commit was SVN r15474.
2007-07-18 01:15:59 +00:00
..
Makefile.am Seperate out sequence tracking list as stand alone class. 2006-03-23 17:02:17 +00:00
ompi_bitmap.c Minor fixes for the ompi_bitmap class that were found while 2007-02-08 18:20:36 +00:00
ompi_bitmap.h Minor fixes for the ompi_bitmap class that were found while 2007-02-08 18:20:36 +00:00
ompi_circular_buffer_fifo.h Clean up circular buffer implementation. Get rid of _same_base_address() 2007-03-05 14:27:26 +00:00
ompi_fifo.h Add new SM BTL parameter btl_sm_cb_max_num. If set to value greater then zero 2007-03-22 12:21:42 +00:00
ompi_free_list.c This commit brings in two major things: 2007-07-18 01:15:59 +00:00
ompi_free_list.h This commit brings in two major things: 2007-07-18 01:15:59 +00:00
ompi_pointer_array.c - Eliminate warnings, that PGI-6.2.5 issues with -Minform=inform 2007-02-28 08:36:34 +00:00
ompi_pointer_array.h - Reduce the amount of warnings with -Wshadow -- mainly due to 2007-01-19 19:48:06 +00:00
ompi_rb_tree.c - Small fixes by PGI -Minform=inform 2007-04-26 08:16:07 +00:00
ompi_rb_tree.h * Move Gleb's rcache work from the gleb-rcache branch to the trunk 2006-08-15 18:40:08 +00:00
ompi_seq_tracker.c NULL is not an option ... 2006-07-13 07:38:35 +00:00
ompi_seq_tracker.h The last patch for Windows support. Mostly casting and conversion to C++ friendly headers. 2006-08-24 16:38:08 +00:00