1
1

As suggested on the mailing list a while back, switch the default alltoallv

algorithm to pairwise exchange instead of the default one. This might
improve the scheduling and relax the pressure on the network.

This commit was SVN r26246.
Этот коммит содержится в:
George Bosilca 2012-04-06 15:47:29 +00:00
родитель 319f76d66a
Коммит 654c75ff24

Просмотреть файл

@ -166,9 +166,9 @@ int ompi_coll_tuned_alltoallv_intra_dec_fixed(void *sbuf, int *scounts, int *sdi
mca_coll_base_module_t *module) mca_coll_base_module_t *module)
{ {
/* For starters, just keep the original algorithm. */ /* For starters, just keep the original algorithm. */
return ompi_coll_tuned_alltoallv_intra_basic_linear(sbuf, scounts, sdisps, sdtype, return ompi_coll_tuned_alltoallv_intra_pairwise(sbuf, scounts, sdisps, sdtype,
rbuf, rcounts, rdisps,rdtype, rbuf, rcounts, rdisps,rdtype,
comm, module); comm, module);
} }