You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PR #10630 added support for MPI_COMM_TYPE_HW_UNGUIDED and MPI_COMM_TYPE_HW_GUIDED. It provides good support for "guided" mode but minimal support for "unguided" mode. It closed issue #9197
There are a few ideas for how to implement the "unguided" mode that needs some experimentation.
MPICH implemented this using a fixed top-down strategy in this PR see the MPIR_Comm_split_type_hw_unguided function.
In the paper "Towards leveraging collective performance with the support of MPI 4.0 features in MPC" cite the used a bottom-up strategy (see Section 7.2)
The text was updated successfully, but these errors were encountered:
PR #10630 added support for
MPI_COMM_TYPE_HW_UNGUIDED
andMPI_COMM_TYPE_HW_GUIDED
. It provides good support for "guided" mode but minimal support for "unguided" mode. It closed issue #9197There are a few ideas for how to implement the "unguided" mode that needs some experimentation.
MPIR_Comm_split_type_hw_unguided
function.The text was updated successfully, but these errors were encountered: