Merge pull request #5896 from mkurnosov/coll-iallgather-recursivedoubling
coll/libnbc: add recursive doubling algorithm for MPI_Iallgather
Этот коммит содержится в:
Коммит
979a199b4f
@ -70,6 +70,7 @@ BEGIN_C_DECLS
|
|||||||
#define NBC_NUM_COLL 17
|
#define NBC_NUM_COLL 17
|
||||||
|
|
||||||
extern bool libnbc_ibcast_skip_dt_decision;
|
extern bool libnbc_ibcast_skip_dt_decision;
|
||||||
|
extern int libnbc_iallgather_algorithm;
|
||||||
extern int libnbc_ibcast_algorithm;
|
extern int libnbc_ibcast_algorithm;
|
||||||
extern int libnbc_ibcast_knomial_radix;
|
extern int libnbc_ibcast_knomial_radix;
|
||||||
extern int libnbc_iexscan_algorithm;
|
extern int libnbc_iexscan_algorithm;
|
||||||
|
@ -46,6 +46,14 @@ static int libnbc_priority = 10;
|
|||||||
static bool libnbc_in_progress = false; /* protect from recursive calls */
|
static bool libnbc_in_progress = false; /* protect from recursive calls */
|
||||||
bool libnbc_ibcast_skip_dt_decision = true;
|
bool libnbc_ibcast_skip_dt_decision = true;
|
||||||
|
|
||||||
|
int libnbc_iallgather_algorithm = 0; /* iallgather user forced algorithm */
|
||||||
|
static mca_base_var_enum_value_t iallgather_algorithms[] = {
|
||||||
|
{0, "ignore"},
|
||||||
|
{1, "linear"},
|
||||||
|
{2, "recursive_doubling"},
|
||||||
|
{0, NULL}
|
||||||
|
};
|
||||||
|
|
||||||
int libnbc_ibcast_algorithm = 0; /* ibcast user forced algorithm */
|
int libnbc_ibcast_algorithm = 0; /* ibcast user forced algorithm */
|
||||||
int libnbc_ibcast_knomial_radix = 4;
|
int libnbc_ibcast_knomial_radix = 4;
|
||||||
static mca_base_var_enum_value_t ibcast_algorithms[] = {
|
static mca_base_var_enum_value_t ibcast_algorithms[] = {
|
||||||
@ -186,6 +194,16 @@ libnbc_register(void)
|
|||||||
MCA_BASE_VAR_SCOPE_READONLY,
|
MCA_BASE_VAR_SCOPE_READONLY,
|
||||||
&libnbc_ibcast_skip_dt_decision);
|
&libnbc_ibcast_skip_dt_decision);
|
||||||
|
|
||||||
|
libnbc_iallgather_algorithm = 0;
|
||||||
|
(void) mca_base_var_enum_create("coll_libnbc_iallgather_algorithms", iallgather_algorithms, &new_enum);
|
||||||
|
mca_base_component_var_register(&mca_coll_libnbc_component.super.collm_version,
|
||||||
|
"iallgather_algorithm",
|
||||||
|
"Which iallgather algorithm is used: 0 ignore, 1 linear, 2 recursive_doubling",
|
||||||
|
MCA_BASE_VAR_TYPE_INT, new_enum, 0, MCA_BASE_VAR_FLAG_SETTABLE,
|
||||||
|
OPAL_INFO_LVL_5, MCA_BASE_VAR_SCOPE_ALL,
|
||||||
|
&libnbc_iallgather_algorithm);
|
||||||
|
OBJ_RELEASE(new_enum);
|
||||||
|
|
||||||
libnbc_ibcast_algorithm = 0;
|
libnbc_ibcast_algorithm = 0;
|
||||||
(void) mca_base_var_enum_create("coll_libnbc_ibcast_algorithms", ibcast_algorithms, &new_enum);
|
(void) mca_base_var_enum_create("coll_libnbc_ibcast_algorithms", ibcast_algorithms, &new_enum);
|
||||||
mca_base_component_var_register(&mca_coll_libnbc_component.super.collm_version,
|
mca_base_component_var_register(&mca_coll_libnbc_component.super.collm_version,
|
||||||
|
@ -20,6 +20,15 @@
|
|||||||
*/
|
*/
|
||||||
#include "nbc_internal.h"
|
#include "nbc_internal.h"
|
||||||
|
|
||||||
|
static inline int allgather_sched_linear(
|
||||||
|
int rank, int comm_size, NBC_Schedule *schedule, const void *sendbuf,
|
||||||
|
int scount, struct ompi_datatype_t *sdtype, void *recvbuf, int rcount,
|
||||||
|
struct ompi_datatype_t *rdtype);
|
||||||
|
static inline int allgather_sched_recursivedoubling(
|
||||||
|
int rank, int comm_size, NBC_Schedule *schedule, const void *sbuf,
|
||||||
|
int scount, struct ompi_datatype_t *sdtype, void *rbuf, int rcount,
|
||||||
|
struct ompi_datatype_t *rdtype);
|
||||||
|
|
||||||
#ifdef NBC_CACHE_SCHEDULE
|
#ifdef NBC_CACHE_SCHEDULE
|
||||||
/* tree comparison function for schedule cache */
|
/* tree comparison function for schedule cache */
|
||||||
int NBC_Allgather_args_compare(NBC_Allgather_args *a, NBC_Allgather_args *b, void *param) {
|
int NBC_Allgather_args_compare(NBC_Allgather_args *a, NBC_Allgather_args *b, void *param) {
|
||||||
@ -40,10 +49,6 @@ int NBC_Allgather_args_compare(NBC_Allgather_args *a, NBC_Allgather_args *b, voi
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* simple linear MPI_Iallgather
|
|
||||||
* the algorithm uses p-1 rounds
|
|
||||||
* each node sends the packet it received last round (or has in round 0) to it's right neighbor (modulo p)
|
|
||||||
* each node receives from it's left (modulo p) neighbor */
|
|
||||||
static int nbc_allgather_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
|
static int nbc_allgather_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
|
||||||
MPI_Datatype recvtype, struct ompi_communicator_t *comm, ompi_request_t ** request,
|
MPI_Datatype recvtype, struct ompi_communicator_t *comm, ompi_request_t ** request,
|
||||||
struct mca_coll_base_module_2_3_0_t *module, bool persistent)
|
struct mca_coll_base_module_2_3_0_t *module, bool persistent)
|
||||||
@ -51,16 +56,31 @@ static int nbc_allgather_init(const void* sendbuf, int sendcount, MPI_Datatype s
|
|||||||
int rank, p, res;
|
int rank, p, res;
|
||||||
MPI_Aint rcvext;
|
MPI_Aint rcvext;
|
||||||
NBC_Schedule *schedule;
|
NBC_Schedule *schedule;
|
||||||
char *rbuf, *sbuf, inplace;
|
char *rbuf, inplace;
|
||||||
#ifdef NBC_CACHE_SCHEDULE
|
#ifdef NBC_CACHE_SCHEDULE
|
||||||
NBC_Allgather_args *args, *found, search;
|
NBC_Allgather_args *args, *found, search;
|
||||||
#endif
|
#endif
|
||||||
|
enum { NBC_ALLGATHER_LINEAR, NBC_ALLGATHER_RDBL} alg;
|
||||||
ompi_coll_libnbc_module_t *libnbc_module = (ompi_coll_libnbc_module_t*) module;
|
ompi_coll_libnbc_module_t *libnbc_module = (ompi_coll_libnbc_module_t*) module;
|
||||||
|
|
||||||
NBC_IN_PLACE(sendbuf, recvbuf, inplace);
|
NBC_IN_PLACE(sendbuf, recvbuf, inplace);
|
||||||
|
|
||||||
rank = ompi_comm_rank (comm);
|
rank = ompi_comm_rank (comm);
|
||||||
p = ompi_comm_size (comm);
|
p = ompi_comm_size (comm);
|
||||||
|
int is_commsize_pow2 = !(p & (p - 1));
|
||||||
|
|
||||||
|
if (libnbc_iallgather_algorithm == 0) {
|
||||||
|
alg = NBC_ALLGATHER_LINEAR;
|
||||||
|
} else {
|
||||||
|
/* user forced dynamic decision */
|
||||||
|
if (libnbc_iallgather_algorithm == 1) {
|
||||||
|
alg = NBC_ALLGATHER_LINEAR;
|
||||||
|
} else if (libnbc_iallgather_algorithm == 2 && is_commsize_pow2) {
|
||||||
|
alg = NBC_ALLGATHER_RDBL;
|
||||||
|
} else {
|
||||||
|
alg = NBC_ALLGATHER_LINEAR;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
res = ompi_datatype_type_extent(recvtype, &rcvext);
|
res = ompi_datatype_type_extent(recvtype, &rcvext);
|
||||||
if (MPI_SUCCESS != res) {
|
if (MPI_SUCCESS != res) {
|
||||||
@ -98,36 +118,34 @@ static int nbc_allgather_init(const void* sendbuf, int sendcount, MPI_Datatype s
|
|||||||
return OMPI_ERR_OUT_OF_RESOURCE;
|
return OMPI_ERR_OUT_OF_RESOURCE;
|
||||||
}
|
}
|
||||||
|
|
||||||
sbuf = (char *)recvbuf + rank * recvcount * rcvext;
|
if (persistent && !inplace) {
|
||||||
|
/* for nonblocking, data has been copied already */
|
||||||
if (persistent && !inplace) { /* for nonblocking, data has been copied already */
|
|
||||||
/* copy my data to receive buffer (= send buffer of NBC_Sched_send) */
|
/* copy my data to receive buffer (= send buffer of NBC_Sched_send) */
|
||||||
res = NBC_Sched_copy ((void *)sendbuf, false, sendcount, sendtype,
|
rbuf = (char *)recvbuf + rank * recvcount * rcvext;
|
||||||
sbuf, false, recvcount, recvtype, schedule, true);
|
res = NBC_Sched_copy((void *)sendbuf, false, sendcount, sendtype,
|
||||||
|
rbuf, false, recvcount, recvtype, schedule, true);
|
||||||
if (OPAL_UNLIKELY(OMPI_SUCCESS != res)) {
|
if (OPAL_UNLIKELY(OMPI_SUCCESS != res)) {
|
||||||
OBJ_RELEASE(schedule);
|
OBJ_RELEASE(schedule);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* do p-1 rounds */
|
switch (alg) {
|
||||||
for(int r = 0 ; r < p ; ++r) {
|
case NBC_ALLGATHER_LINEAR:
|
||||||
if(r != rank) {
|
if (rank == 0) printf("MK: LINEAR\n");
|
||||||
/* recv from rank r */
|
res = allgather_sched_linear(rank, p, schedule, sendbuf, sendcount, sendtype,
|
||||||
rbuf = (char *)recvbuf + r * recvcount * rcvext;
|
recvbuf, recvcount, recvtype);
|
||||||
res = NBC_Sched_recv (rbuf, false, recvcount, recvtype, r, schedule, false);
|
break;
|
||||||
if (OPAL_UNLIKELY(OMPI_SUCCESS != res)) {
|
case NBC_ALLGATHER_RDBL:
|
||||||
OBJ_RELEASE(schedule);
|
if (rank == 0) printf("MK: RDBL\n");
|
||||||
return res;
|
res = allgather_sched_recursivedoubling(rank, p, schedule, sendbuf, sendcount,
|
||||||
}
|
sendtype, recvbuf, recvcount, recvtype);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
/* send to rank r - not from the sendbuf to optimize MPI_IN_PLACE */
|
if (OPAL_UNLIKELY(OMPI_SUCCESS != res)) {
|
||||||
res = NBC_Sched_send (sbuf, false, recvcount, recvtype, r, schedule, false);
|
OBJ_RELEASE(schedule);
|
||||||
if (OPAL_UNLIKELY(OMPI_SUCCESS != res)) {
|
return res;
|
||||||
OBJ_RELEASE(schedule);
|
|
||||||
return res;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
res = NBC_Sched_commit(schedule);
|
res = NBC_Sched_commit(schedule);
|
||||||
@ -270,6 +288,109 @@ int ompi_coll_libnbc_iallgather_inter(const void* sendbuf, int sendcount, MPI_Da
|
|||||||
return OMPI_SUCCESS;
|
return OMPI_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* allgather_sched_linear
|
||||||
|
*
|
||||||
|
* Description: an implementation of Iallgather using linear algorithm
|
||||||
|
*
|
||||||
|
* Time: O(comm_size)
|
||||||
|
* Schedule length (rounds): O(comm_size)
|
||||||
|
*/
|
||||||
|
static inline int allgather_sched_linear(
|
||||||
|
int rank, int comm_size, NBC_Schedule *schedule, const void *sendbuf,
|
||||||
|
int scount, struct ompi_datatype_t *sdtype, void *recvbuf, int rcount,
|
||||||
|
struct ompi_datatype_t *rdtype)
|
||||||
|
{
|
||||||
|
int res = OMPI_SUCCESS;
|
||||||
|
ptrdiff_t rlb, rext;
|
||||||
|
|
||||||
|
res = ompi_datatype_get_extent(rdtype, &rlb, &rext);
|
||||||
|
char *sbuf = (char *)recvbuf + rank * rcount * rext;
|
||||||
|
|
||||||
|
for (int remote = 0; remote < comm_size ; ++remote) {
|
||||||
|
if (remote != rank) {
|
||||||
|
/* Recv from rank remote */
|
||||||
|
char *rbuf = (char *)recvbuf + remote * rcount * rext;
|
||||||
|
res = NBC_Sched_recv(rbuf, false, rcount, rdtype, remote, schedule, false);
|
||||||
|
if (OPAL_UNLIKELY(OMPI_SUCCESS != res)) { goto cleanup_and_return; }
|
||||||
|
|
||||||
|
/* Send to rank remote - not from the sendbuf to optimize MPI_IN_PLACE */
|
||||||
|
res = NBC_Sched_send(sbuf, false, rcount, rdtype, remote, schedule, false);
|
||||||
|
if (OPAL_UNLIKELY(OMPI_SUCCESS != res)) { goto cleanup_and_return; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
cleanup_and_return:
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* allgather_sched_recursivedoubling
|
||||||
|
*
|
||||||
|
* Description: an implementation of Iallgather using recursive doubling algorithm
|
||||||
|
* Limitation: power-of-two number of processes only
|
||||||
|
* Time: O(log(comm_size))
|
||||||
|
* Schedule length (rounds): O(log(comm_size))
|
||||||
|
* Memory: no additional memory requirements beyond user-supplied buffers.
|
||||||
|
*
|
||||||
|
* Example on 4 nodes:
|
||||||
|
* Initialization: everyone has its own buffer at location rank in rbuf
|
||||||
|
* # 0 1 2 3
|
||||||
|
* [0] [ ] [ ] [ ]
|
||||||
|
* [ ] [1] [ ] [ ]
|
||||||
|
* [ ] [ ] [2] [ ]
|
||||||
|
* [ ] [ ] [ ] [3]
|
||||||
|
* Step 0: exchange data with (rank ^ 2^0)
|
||||||
|
* # 0 1 2 3
|
||||||
|
* [0] [0] [ ] [ ]
|
||||||
|
* [1] [1] [ ] [ ]
|
||||||
|
* [ ] [ ] [2] [2]
|
||||||
|
* [ ] [ ] [3] [3]
|
||||||
|
* Step 1: exchange data with (rank ^ 2^1) (if you can)
|
||||||
|
* # 0 1 2 3
|
||||||
|
* [0] [0] [0] [0]
|
||||||
|
* [1] [1] [1] [1]
|
||||||
|
* [2] [2] [2] [2]
|
||||||
|
* [3] [3] [3] [3]
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
static inline int allgather_sched_recursivedoubling(
|
||||||
|
int rank, int comm_size, NBC_Schedule *schedule, const void *sbuf,
|
||||||
|
int scount, struct ompi_datatype_t *sdtype, void *rbuf, int rcount,
|
||||||
|
struct ompi_datatype_t *rdtype)
|
||||||
|
{
|
||||||
|
int res = OMPI_SUCCESS;
|
||||||
|
ptrdiff_t rlb, rext;
|
||||||
|
char *tmpsend = NULL, *tmprecv = NULL;
|
||||||
|
|
||||||
|
res = ompi_datatype_get_extent(rdtype, &rlb, &rext);
|
||||||
|
if (OPAL_UNLIKELY(OMPI_SUCCESS != res)) { goto cleanup_and_return; }
|
||||||
|
|
||||||
|
int sendblocklocation = rank;
|
||||||
|
for (int distance = 1; distance < comm_size; distance <<= 1) {
|
||||||
|
int remote = rank ^ distance;
|
||||||
|
|
||||||
|
tmpsend = (char *)rbuf + (ptrdiff_t)sendblocklocation * (ptrdiff_t)rcount * rext;
|
||||||
|
if (rank < remote) {
|
||||||
|
tmprecv = (char *)rbuf + (ptrdiff_t)(sendblocklocation + distance) * (ptrdiff_t)rcount * rext;
|
||||||
|
} else {
|
||||||
|
tmprecv = (char *)rbuf + (ptrdiff_t)(sendblocklocation - distance) * (ptrdiff_t)rcount * rext;
|
||||||
|
sendblocklocation -= distance;
|
||||||
|
}
|
||||||
|
|
||||||
|
res = NBC_Sched_send(tmpsend, false, (ptrdiff_t)distance * (ptrdiff_t)rcount,
|
||||||
|
rdtype, remote, schedule, false);
|
||||||
|
if (OPAL_UNLIKELY(OMPI_SUCCESS != res)) { goto cleanup_and_return; }
|
||||||
|
|
||||||
|
res = NBC_Sched_recv(tmprecv, false, (ptrdiff_t)distance * (ptrdiff_t)rcount,
|
||||||
|
rdtype, remote, schedule, true);
|
||||||
|
if (OPAL_UNLIKELY(OMPI_SUCCESS != res)) { goto cleanup_and_return; }
|
||||||
|
}
|
||||||
|
|
||||||
|
cleanup_and_return:
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
int ompi_coll_libnbc_allgather_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
|
int ompi_coll_libnbc_allgather_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
|
||||||
MPI_Datatype recvtype, struct ompi_communicator_t *comm, MPI_Info info, ompi_request_t ** request,
|
MPI_Datatype recvtype, struct ompi_communicator_t *comm, MPI_Info info, ompi_request_t ** request,
|
||||||
struct mca_coll_base_module_2_3_0_t *module) {
|
struct mca_coll_base_module_2_3_0_t *module) {
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user