Improve LOOP datatype exchanges performances for sizes above the eage… #6172
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
…r limit.
When a datatype is internally described by a (LOOP-{DATA}*-ENDLOOP) structure, and this datatype size is greater than the btl eager limit, the following process is applied:
This process has been enhanced by artificially inserting a LOOP element during the packing of the remaining elements. This has the effect of considering the second part of a LOOP as a LOOP too, instead of a series of DATA.
As shown in the attached graph, performances are improved above the eager limit, when exchanging this kind of datatypes.

For example, for a 258240 bytes buffer, we move from 1502.635195 down to 965.680833 microseconds.
This graph has been generated with the master, and the following MCA parameters set:
OMPI_MCA_pml=ob1
OMPI_MCA_btl=openib
OMPI_MCA_btl_openib_allow_ib=1
Signed-off-by: Nadia Derbey Nadia.Derbey@atos.net