1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
|
/*
* Copyright (c) 2018-2023 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
* reserved.
* Copyright (c) 2022 IBM Corporation. All rights reserved
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "coll_han.h"
#include "ompi/mca/coll/base/coll_base_functions.h"
#include "ompi/mca/coll/base/coll_tags.h"
#include "ompi/mca/pml/pml.h"
#include "coll_han_trigger.h"
/*
* @file
*
* This files contains all the hierarchical implementations of scatter
*/
static int mca_coll_han_scatter_us_task(void *task_args);
static int mca_coll_han_scatter_ls_task(void *task_args);
/* Only work with regular situation (each node has equal number of processes) */
static inline void
mca_coll_han_set_scatter_args(mca_coll_han_scatter_args_t * args,
mca_coll_task_t * cur_task,
void *sbuf,
void *sbuf_inter_free,
void *sbuf_reorder_free,
int scount,
struct ompi_datatype_t *sdtype,
void *rbuf,
int rcount,
struct ompi_datatype_t *rdtype,
int root,
int root_up_rank,
int root_low_rank,
struct ompi_communicator_t *up_comm,
struct ompi_communicator_t *low_comm,
int w_rank, bool noop, ompi_request_t * req)
{
args->cur_task = cur_task;
args->sbuf = sbuf;
args->sbuf_inter_free = sbuf_inter_free;
args->sbuf_reorder_free = sbuf_reorder_free;
args->scount = scount;
args->sdtype = sdtype;
args->rbuf = rbuf;
args->rcount = rcount;
args->rdtype = rdtype;
args->root = root;
args->root_up_rank = root_up_rank;
args->root_low_rank = root_low_rank;
args->up_comm = up_comm;
args->low_comm = low_comm;
args->w_rank = w_rank;
args->noop = noop;
args->req = req;
}
/*
* Main function for taskified scatter:
* after data reordring, calls us task, a scatter on up communicator
*/
int
mca_coll_han_scatter_intra(const void *sbuf, int scount,
struct ompi_datatype_t *sdtype,
void *rbuf, int rcount,
struct ompi_datatype_t *rdtype,
int root,
struct ompi_communicator_t *comm, mca_coll_base_module_t * module)
{
mca_coll_han_module_t *han_module = (mca_coll_han_module_t *) module;
int w_rank, w_size;
w_rank = ompi_comm_rank(comm);
w_size = ompi_comm_size(comm);
/* Create the subcommunicators */
if( OMPI_SUCCESS != mca_coll_han_comm_create(comm, han_module) ) {
OPAL_OUTPUT_VERBOSE((30, mca_coll_han_component.han_output,
"han cannot handle scatter with this communicator. Fall back on another component\n"));
/* HAN cannot work with this communicator so fallback on all collectives */
HAN_LOAD_FALLBACK_COLLECTIVES(han_module, comm);
return han_module->previous_scatter(sbuf, scount, sdtype, rbuf, rcount, rdtype, root,
comm, han_module->previous_scatter_module);
}
/* Topo must be initialized to know rank distribution which then is used to
* determine if han can be used */
int* topo = mca_coll_han_topo_init(comm, han_module, 2);
if (han_module->are_ppn_imbalanced) {
OPAL_OUTPUT_VERBOSE((30, mca_coll_han_component.han_output,
"han cannot handle scatter with this communicator (imbalance). Fall back on another component\n"));
/* Put back the fallback collective support and call it once. All
* future calls will then be automatically redirected.
*/
HAN_LOAD_FALLBACK_COLLECTIVE(han_module, comm, scatter);
return han_module->previous_scatter(sbuf, scount, sdtype, rbuf, rcount, rdtype, root,
comm, han_module->previous_scatter_module);
}
ompi_communicator_t *low_comm =
han_module->cached_low_comms[mca_coll_han_component.han_scatter_low_module];
ompi_communicator_t *up_comm =
han_module->cached_up_comms[mca_coll_han_component.han_scatter_up_module];
int *vranks = han_module->cached_vranks;
int low_rank = ompi_comm_rank(low_comm);
int low_size = ompi_comm_size(low_comm);
int up_size = ompi_comm_size(up_comm);
/* Set up request */
ompi_request_t *temp_request = OBJ_NEW(ompi_request_t);
temp_request->req_state = OMPI_REQUEST_ACTIVE;
temp_request->req_type = OMPI_REQUEST_COLL;
temp_request->req_free = ompi_coll_han_request_free;
temp_request->req_status = (ompi_status_public_t){0};
temp_request->req_complete = REQUEST_PENDING;
int root_low_rank;
int root_up_rank;
mca_coll_han_get_ranks(vranks, root, low_size, &root_low_rank, &root_up_rank);
OPAL_OUTPUT_VERBOSE((30, mca_coll_han_component.han_output,
"[%d]: Han Scatter root %d root_low_rank %d root_up_rank %d\n", w_rank,
root, root_low_rank, root_up_rank));
/* Reorder sbuf based on rank.
* Suppose, message is 0 1 2 3 4 5 6 7
* and the processes are mapped on 2 nodes (the processes on the node 0 is 0 2 4 6 and the processes on the node 1 is 1 3 5 7),
* so the message needs to be reordered to 0 2 4 6 1 3 5 7
*/
char *reorder_buf = NULL;
char *reorder_sbuf = NULL;
if (w_rank == root) {
/* If the processes are mapped-by core, no need to reorder */
if (han_module->is_mapbycore) {
OPAL_OUTPUT_VERBOSE((30, mca_coll_han_component.han_output,
"[%d]: Han Scatter is_bycore: ", w_rank));
reorder_sbuf = (char *) sbuf;
} else {
ptrdiff_t ssize, sgap = 0, sextent;
ompi_datatype_type_extent(sdtype, &sextent);
ssize = opal_datatype_span(&sdtype->super, (int64_t) scount * w_size, &sgap);
reorder_buf = (char *) malloc(ssize);
reorder_sbuf = reorder_buf - sgap;
for (int i = 0; i < up_size; i++) {
for (int j = 0; j < low_size; j++) {
OPAL_OUTPUT_VERBOSE((30, mca_coll_han_component.han_output,
"[%d]: Han Scatter copy from %d %d\n", w_rank,
(i * low_size + j) * 2 + 1,
topo[(i * low_size + j) * 2 + 1]));
ompi_datatype_copy_content_same_ddt(sdtype, (ptrdiff_t) scount,
reorder_sbuf + sextent * (i * low_size +
j) *
(ptrdiff_t) scount,
(char *) sbuf +
sextent *
(ptrdiff_t) topo[(i * low_size + j) * 2 +
1] * (ptrdiff_t) scount);
}
}
}
}
/* Create us task */
mca_coll_task_t *us = OBJ_NEW(mca_coll_task_t);
/* Setup us task arguments */
mca_coll_han_scatter_args_t *us_args = malloc(sizeof(mca_coll_han_scatter_args_t));
mca_coll_han_set_scatter_args(us_args, us, reorder_sbuf, NULL, reorder_buf, scount, sdtype,
(char *) rbuf, rcount, rdtype, root, root_up_rank, root_low_rank,
up_comm, low_comm, w_rank, low_rank != root_low_rank,
temp_request);
/* Init us task */
init_task(us, mca_coll_han_scatter_us_task, (void *) (us_args));
/* Issure us task */
issue_task(us);
ompi_request_wait(&temp_request, MPI_STATUS_IGNORE);
return OMPI_SUCCESS;
}
/* us: upper level (inter-node) scatter task */
int mca_coll_han_scatter_us_task(void *task_args)
{
mca_coll_han_scatter_args_t *t = (mca_coll_han_scatter_args_t *) task_args;
if (t->noop) {
OPAL_OUTPUT_VERBOSE((30, mca_coll_han_component.han_output, "[%d] Han Scatter: us noop\n",
t->w_rank));
} else {
size_t count;
ompi_datatype_t *dtype;
if (t->w_rank == t->root) {
dtype = t->sdtype;
count = t->scount;
} else {
dtype = t->rdtype;
count = t->rcount;
}
int low_size = ompi_comm_size(t->low_comm);
ptrdiff_t rsize, rgap = 0;
rsize = opal_datatype_span(&dtype->super, (int64_t) count * low_size, &rgap);
char *tmp_buf = (char *) malloc(rsize);
char *tmp_rbuf = tmp_buf - rgap;
OPAL_OUTPUT_VERBOSE((30, mca_coll_han_component.han_output,
"[%d] Han Scatter: us scatter\n", t->w_rank));
/* Inter node scatter */
t->up_comm->c_coll->coll_scatter((char *) t->sbuf, t->scount * low_size, t->sdtype,
tmp_rbuf, count * low_size, dtype, t->root_up_rank,
t->up_comm, t->up_comm->c_coll->coll_scatter_module);
t->sbuf = tmp_rbuf;
t->sbuf_inter_free = tmp_buf;
t->sdtype = dtype;
t->scount = count;
}
if (t->sbuf_reorder_free != NULL && t->root == t->w_rank) {
free(t->sbuf_reorder_free);
t->sbuf_reorder_free = NULL;
}
/* Create ls tasks for the current union segment */
mca_coll_task_t *ls = t->cur_task;
/* Init ls task */
init_task(ls, mca_coll_han_scatter_ls_task, (void *) t);
/* Issure ls task */
issue_task(ls);
return OMPI_SUCCESS;
}
/* ls: lower level (shared memory or intra-node) scatter task */
int mca_coll_han_scatter_ls_task(void *task_args)
{
mca_coll_han_scatter_args_t *t = (mca_coll_han_scatter_args_t *) task_args;
OPAL_OUTPUT_VERBOSE((30, mca_coll_han_component.han_output, "[%d] Han Scatter: ls\n",
t->w_rank));
OBJ_RELEASE(t->cur_task);
t->low_comm->c_coll->coll_scatter((char *) t->sbuf, t->scount, t->sdtype, (char *) t->rbuf,
t->rcount, t->rdtype, t->root_low_rank, t->low_comm,
t->low_comm->c_coll->coll_scatter_module);
if (t->sbuf_inter_free != NULL && t->noop != true) {
free(t->sbuf_inter_free);
t->sbuf_inter_free = NULL;
}
OPAL_OUTPUT_VERBOSE((30, mca_coll_han_component.han_output, "[%d] Han Scatter: ls finish\n",
t->w_rank));
ompi_request_t *temp_req = t->req;
free(t);
ompi_request_complete(temp_req, 1);
return OMPI_SUCCESS;
}
int
mca_coll_han_scatter_intra_simple(const void *sbuf, int scount,
struct ompi_datatype_t *sdtype,
void *rbuf, int rcount,
struct ompi_datatype_t *rdtype,
int root,
struct ompi_communicator_t *comm,
mca_coll_base_module_t * module)
{
int w_rank, w_size;
struct ompi_datatype_t * dtype;
int count;
w_rank = ompi_comm_rank(comm);
w_size = ompi_comm_size(comm);
mca_coll_han_module_t *han_module = (mca_coll_han_module_t *) module;
/* create the subcommunicators */
if( OMPI_SUCCESS != mca_coll_han_comm_create_new(comm, han_module) ) {
OPAL_OUTPUT_VERBOSE((30, mca_coll_han_component.han_output,
"han cannot handle allgather within this communicator."
" Fall back on another component\n"));
/* HAN cannot work with this communicator so fallback on all collectives */
HAN_LOAD_FALLBACK_COLLECTIVES(han_module, comm);
return han_module->previous_scatter(sbuf, scount, sdtype, rbuf, rcount, rdtype, root,
comm, han_module->previous_scatter_module);
}
/* Topo must be initialized to know rank distribution which then is used to
* determine if han can be used */
int *topo = mca_coll_han_topo_init(comm, han_module, 2);
if (han_module->are_ppn_imbalanced){
OPAL_OUTPUT_VERBOSE((30, mca_coll_han_component.han_output,
"han cannot handle scatter with this communicator. It needs to fall back on another component\n"));
HAN_LOAD_FALLBACK_COLLECTIVES(han_module, comm);
return han_module->previous_scatter(sbuf, scount, sdtype, rbuf, rcount, rdtype, root,
comm, han_module->previous_scatter_module);
}
ompi_communicator_t *low_comm = han_module->sub_comm[INTRA_NODE];
ompi_communicator_t *up_comm = han_module->sub_comm[INTER_NODE];
/* Get the 'virtual ranks' mapping corresponding to the communicators */
int *vranks = han_module->cached_vranks;
/* information about sub-communicators */
int low_rank = ompi_comm_rank(low_comm);
int low_size = ompi_comm_size(low_comm);
/* Get root ranks for low and up comms */
int root_low_rank, root_up_rank; /* root ranks for both sub-communicators */
mca_coll_han_get_ranks(vranks, root, low_size, &root_low_rank, &root_up_rank);
if (w_rank == root) {
dtype = sdtype;
count = scount;
} else {
dtype = rdtype;
count = rcount;
}
/* allocate buffer to store unordered result on root
* if the processes are mapped-by core, no need to reorder:
* distribution of ranks on core first and node next,
* in a increasing order for both patterns */
char *reorder_buf = NULL; // allocated memory
size_t block_size;
ompi_datatype_type_size(dtype, &block_size);
block_size *= count;
if (w_rank == root) {
int is_contiguous = ompi_datatype_is_contiguous_memory_layout(dtype, count);
if (han_module->is_mapbycore && is_contiguous) {
/* The copy of the data is avoided */
OPAL_OUTPUT_VERBOSE((30, mca_coll_han_component.han_output,
"[%d]: Han scatter: no need to reorder: ", w_rank));
reorder_buf = (char *)sbuf;
} else {
/* Data must be copied, let's be efficient packing it */
OPAL_OUTPUT_VERBOSE((30, mca_coll_han_component.han_output,
"[%d]: Han scatter: needs reordering or compacting: ", w_rank));
reorder_buf = malloc(block_size * w_size);
if ( NULL == reorder_buf){
return OMPI_ERROR;
}
/** Reorder and packing:
* Suppose, the message is 0 1 2 3 4 5 6 7 but the processes are
* mapped on 2 nodes, for example |0 2 4 6| |1 3 5 7|. The messages to
* leaders must be 0 2 4 6 and 1 3 5 7.
* So the upper scatter must send 0 2 4 6 1 3 5 7.
* In general, the topo[i*topolevel +1] must be taken.
*/
ptrdiff_t extent, block_extent;
ompi_datatype_type_extent(dtype, &extent);
block_extent = extent * (ptrdiff_t)count;
for(int i = 0 ; i < w_size ; ++i){
ompi_datatype_sndrcv((char*)sbuf + block_extent*topo[2*i+1], count, dtype,
reorder_buf + block_size*i, block_size, MPI_BYTE);
}
dtype = MPI_BYTE;
count = block_size;
}
}
/* allocate the intermediary buffer
* to scatter from leaders on the low sub communicators */
char *tmp_buf = NULL; // allocated memory
if (low_rank == root_low_rank) {
tmp_buf = (char *) malloc(block_size * low_size);
/* 1. up scatter (internode) between node leaders */
up_comm->c_coll->coll_scatter((char*) reorder_buf,
count * low_size,
dtype,
(char *)tmp_buf,
block_size * low_size,
MPI_BYTE,
root_up_rank,
up_comm,
up_comm->c_coll->coll_scatter_module);
}
/* 2. low scatter on nodes leaders */
low_comm->c_coll->coll_scatter((char *)tmp_buf,
block_size,
MPI_BYTE,
(char*)rbuf,
rcount,
rdtype,
root_low_rank,
low_comm,
low_comm->c_coll->coll_scatter_module);
if (low_rank == root_low_rank) {
free(tmp_buf);
tmp_buf = NULL;
}
if (reorder_buf != sbuf) {
free(reorder_buf);
}
return OMPI_SUCCESS;
}
|