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 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603
|
/*
* Copyright (c) 2004-2006 The Regents of the University of California.
* All rights reserved.
* Copyright (c) 2004-2007 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
* reserved.
* Copyright (c) 2015 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* Copyright (c) 2017 Intel, Inc. All rights reserved
* Copyright (c) 2019-2021 The University of Tennessee at Chattanooga and The University
* of Tennessee Research Foundation. All rights reserved.
* Copyright (c) 2019-2021 Sandia National Laboratories. All rights reserved.
* Copyright (c) 2021 University of Alabama at Birmingham. All rights reserved.
* Copyright (c) 2021 Tennessee Technological University. All rights reserved.
* Copyright (c) 2021 Cisco Systems, Inc. All rights reserved
* Copyright (c) 2021 Bull S.A.S. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#ifndef PART_PERSIST_H
#define PART_PERSIST_H
#ifdef HAVE_ALLOCA_H
#include <alloca.h>
#endif
#include<math.h>
#include "ompi_config.h"
#include "ompi/request/request.h"
#include "ompi/mca/part/part.h"
#include "ompi/mca/part/base/base.h"
#include "ompi/datatype/ompi_datatype.h"
#include "ompi/communicator/communicator.h"
#include "ompi/request/request.h"
#include "opal/sys/atomic.h"
#include "ompi/mca/part/persist/part_persist_request.h"
#include "ompi/mca/part/base/part_base_precvreq.h"
#include "ompi/mca/part/persist/part_persist_recvreq.h"
#include "ompi/mca/part/persist/part_persist_sendreq.h"
#include "ompi/message/message.h"
#include "ompi/mca/pml/pml.h"
BEGIN_C_DECLS
typedef struct mca_part_persist_list_t {
opal_list_item_t super;
mca_part_persist_request_t *item;
} mca_part_persist_list_t;
OPAL_DECLSPEC OBJ_CLASS_DECLARATION(mca_part_persist_list_t);
struct ompi_part_persist_t {
mca_part_base_module_t super;
int free_list_num;
int free_list_max;
int free_list_inc;
opal_list_t *progress_list;
int32_t next_send_tag; /**< This is a counter for send tags for the actual data transfer. */
int32_t next_recv_tag;
ompi_communicator_t *part_comm; /* This approach requires a separate tag space, so we need a dedicated communicator. */
ompi_request_t *part_comm_req;
int32_t part_comm_ready;
ompi_communicator_t *part_comm_setup; /* We create a second communicator to send set-up messages (rational: these
messages go in the opposite direction of normal messages, need to use MPI_ANY_SOURCE
to support different communicators, and thus need to have a unique tag. Because tags
are controlled by the sender in this model, we cannot assume that the tag will be
unused in part_comm. */
ompi_request_t *part_comm_sreq;
int32_t part_comm_sready;
int32_t init_comms;
int32_t init_world;
int32_t my_world_rank; /* Because the back end communicators use a world rank, we need to communicate ours
to set up the requests. */
opal_atomic_int32_t block_entry;
opal_mutex_t lock;
};
typedef struct ompi_part_persist_t ompi_part_persist_t;
extern ompi_part_persist_t ompi_part_persist;
/**
* This is a helper function that frees a request. This requires ompi_part_persist.lock be held before calling.
*/
__opal_attribute_always_inline__ static inline int
mca_part_persist_free_req(struct mca_part_persist_request_t* req)
{
int err = OMPI_SUCCESS;
size_t i;
opal_list_remove_item(ompi_part_persist.progress_list, (opal_list_item_t*)req->progress_elem);
OBJ_RELEASE(req->progress_elem);
for(i = 0; i < req->real_parts; i++) {
ompi_request_free(&(req->persist_reqs[i]));
}
free(req->persist_reqs);
free(req->flags);
if( MCA_PART_PERSIST_REQUEST_PRECV == req->req_type ) {
MCA_PART_PERSIST_PRECV_REQUEST_RETURN(req);
} else {
MCA_PART_PERSIST_PSEND_REQUEST_RETURN(req);
}
return err;
}
__opal_attribute_always_inline__ static inline void mca_part_persist_init_lists(void)
{
opal_free_list_init (&mca_part_base_precv_requests,
sizeof(mca_part_persist_precv_request_t),
opal_cache_line_size,
OBJ_CLASS(mca_part_persist_precv_request_t),
0,opal_cache_line_size,
ompi_part_persist.free_list_num,
ompi_part_persist.free_list_max,
ompi_part_persist.free_list_inc,
NULL, 0, NULL, NULL, NULL);
opal_free_list_init (&mca_part_base_psend_requests,
sizeof(mca_part_persist_psend_request_t),
opal_cache_line_size,
OBJ_CLASS(mca_part_persist_psend_request_t),
0,opal_cache_line_size,
ompi_part_persist.free_list_num,
ompi_part_persist.free_list_max,
ompi_part_persist.free_list_inc,
NULL, 0, NULL, NULL, NULL);
ompi_part_persist.progress_list = OBJ_NEW(opal_list_t);
}
__opal_attribute_always_inline__ static inline void
mca_part_persist_complete(struct mca_part_persist_request_t* request)
{
if(MCA_PART_PERSIST_REQUEST_PRECV == request->req_type) {
request->req_ompi.req_status.MPI_SOURCE = request->req_peer;
} else {
request->req_ompi.req_status.MPI_SOURCE = request->req_comm->c_my_rank;
}
request->req_ompi.req_complete_cb = NULL;
request->req_ompi.req_status.MPI_TAG = request->req_tag;
request->req_ompi.req_status._ucount = request->req_bytes;
request->req_ompi.req_status.MPI_ERROR = OMPI_SUCCESS;
request->req_part_complete = true;
ompi_request_complete(&(request->req_ompi), true );
}
/**
* mca_part_persist_progress is the progress function that will be registered. It handles
* both send and recv request testing and completion. It also handles freeing requests,
* after MPI_Free is called and the requests have become inactive.
*/
__opal_attribute_always_inline__ static inline int
mca_part_persist_progress(void)
{
mca_part_persist_list_t *current;
int err;
size_t i;
/* prevent re-entry, */
int block_entry = opal_atomic_add_fetch_32(&(ompi_part_persist.block_entry), 1);
if(1 < block_entry)
{
block_entry = opal_atomic_add_fetch_32(&(ompi_part_persist.block_entry), -1);
return OMPI_SUCCESS;
}
OPAL_THREAD_LOCK(&ompi_part_persist.lock);
mca_part_persist_request_t* to_delete = NULL;
/* Don't do anything till a function in the module is called. */
if(-1 == ompi_part_persist.init_world)
{
OPAL_THREAD_UNLOCK(&ompi_part_persist.lock);
block_entry = opal_atomic_add_fetch_32(&(ompi_part_persist.block_entry), -1);
return OMPI_SUCCESS;
}
/* Can't do anything if we don't have world */
if(0 == ompi_part_persist.init_world) {
ompi_part_persist.my_world_rank = ompi_comm_rank(&ompi_mpi_comm_world.comm);
err = ompi_comm_idup(&ompi_mpi_comm_world.comm, &ompi_part_persist.part_comm, &ompi_part_persist.part_comm_req);
if(err != OMPI_SUCCESS) {
exit(-1);
}
ompi_part_persist.part_comm_ready = 0;
err = ompi_comm_idup(&ompi_mpi_comm_world.comm, &ompi_part_persist.part_comm_setup, &ompi_part_persist.part_comm_sreq);
if(err != OMPI_SUCCESS) {
exit(-1);
}
ompi_part_persist.part_comm_sready = 0;
ompi_part_persist.init_world = 1;
OPAL_THREAD_UNLOCK(&ompi_part_persist.lock);
block_entry = opal_atomic_add_fetch_32(&(ompi_part_persist.block_entry), -1);
return OMPI_SUCCESS;
}
/* Check to see if Comms are setup */
if(0 == ompi_part_persist.init_comms) {
if(0 == ompi_part_persist.part_comm_ready) {
ompi_request_test(&ompi_part_persist.part_comm_req, &ompi_part_persist.part_comm_ready, MPI_STATUS_IGNORE);
}
if(0 == ompi_part_persist.part_comm_sready) {
ompi_request_test(&ompi_part_persist.part_comm_sreq, &ompi_part_persist.part_comm_sready, MPI_STATUS_IGNORE);
}
if(0 != ompi_part_persist.part_comm_ready && 0 != ompi_part_persist.part_comm_sready) {
ompi_part_persist.init_comms = 1;
}
OPAL_THREAD_UNLOCK(&ompi_part_persist.lock);
block_entry = opal_atomic_add_fetch_32(&(ompi_part_persist.block_entry), -1);
return OMPI_SUCCESS;
}
OPAL_LIST_FOREACH(current, ompi_part_persist.progress_list, mca_part_persist_list_t) {
mca_part_persist_request_t *req = (mca_part_persist_request_t *) current->item;
/* Check to see if request is initilaized */
if(false == req->initialized) {
int done = 0;
if(true == req->flag_post_setup_recv) {
err = MCA_PML_CALL(irecv(&(req->setup_info[1]), sizeof(struct ompi_mca_persist_setup_t), MPI_BYTE, OMPI_ANY_SOURCE, req->my_recv_tag, ompi_part_persist.part_comm_setup, &req->setup_req[1]));
req->flag_post_setup_recv = false;
}
ompi_request_test(&(req->setup_req[1]), &done, MPI_STATUS_IGNORE);
if(done) {
size_t dt_size_;
uint32_t dt_size;
if(MCA_PART_PERSIST_REQUEST_PSEND == req->req_type) {
/* parse message */
req->world_peer = req->setup_info[1].world_rank;
err = opal_datatype_type_size(&(req->req_datatype->super), &dt_size_);
if(OMPI_SUCCESS != err) return OMPI_ERROR;
dt_size = (dt_size_ > (size_t) UINT_MAX) ? MPI_UNDEFINED : (uint32_t) dt_size_;
uint32_t bytes = req->real_count * dt_size;
/* Set up persistent sends */
req->persist_reqs = (ompi_request_t**) malloc(sizeof(ompi_request_t*)*(req->real_parts));
for(i = 0; i < req->real_parts; i++) {
void *buf = ((void*) (((char*)req->req_addr) + (bytes * i)));
err = MCA_PML_CALL(isend_init(buf, req->real_count, req->req_datatype, req->world_peer, req->my_send_tag+i, MCA_PML_BASE_SEND_STANDARD, ompi_part_persist.part_comm, &(req->persist_reqs[i])));
}
} else {
/* parse message */
req->world_peer = req->setup_info[1].world_rank;
req->my_send_tag = req->setup_info[1].start_tag;
req->my_recv_tag = req->setup_info[1].setup_tag;
req->real_parts = req->setup_info[1].num_parts;
req->real_count = req->setup_info[1].count;
err = opal_datatype_type_size(&(req->req_datatype->super), &dt_size_);
if(OMPI_SUCCESS != err) return OMPI_ERROR;
dt_size = (dt_size_ > (size_t) UINT_MAX) ? MPI_UNDEFINED : (uint32_t) dt_size_;
uint32_t bytes = req->real_count * dt_size;
/* Set up persistent sends */
req->persist_reqs = (ompi_request_t**) malloc(sizeof(ompi_request_t*)*(req->real_parts));
req->flags = (int*) calloc(req->real_parts,sizeof(int));
for(i = 0; i < req->real_parts; i++) {
void *buf = ((void*) (((char*)req->req_addr) + (bytes * i)));
err = MCA_PML_CALL(irecv_init(buf, req->real_count, req->req_datatype, req->world_peer, req->my_send_tag+i, ompi_part_persist.part_comm, &(req->persist_reqs[i])));
}
err = req->persist_reqs[0]->req_start(req->real_parts, (&(req->persist_reqs[0])));
/* Send back a message */
req->setup_info[0].world_rank = ompi_part_persist.my_world_rank;
err = MCA_PML_CALL(isend(&(req->setup_info[0]), sizeof(struct ompi_mca_persist_setup_t), MPI_BYTE, req->world_peer, req->my_recv_tag, MCA_PML_BASE_SEND_STANDARD, ompi_part_persist.part_comm_setup, &req->setup_req[0]));
if(OMPI_SUCCESS != err) return OMPI_ERROR;
}
req->initialized = true;
}
} else {
if(false == req->req_part_complete && REQUEST_COMPLETED != req->req_ompi.req_complete && OMPI_REQUEST_ACTIVE == req->req_ompi.req_state) {
for(i = 0; i < req->real_parts; i++) {
/* Check to see if partition is queued for being started. Only applicable to sends. */
if(-2 == req->flags[i]) {
err = req->persist_reqs[i]->req_start(1, (&(req->persist_reqs[i])));
req->flags[i] = 0;
}
if(0 == req->flags[i])
{
ompi_request_test(&(req->persist_reqs[i]), &(req->flags[i]), MPI_STATUS_IGNORE);
if(0 != req->flags[i]) req->done_count++;
}
}
/* Check for completion and complete the requests */
if(req->done_count == req->real_parts)
{
req->first_send = false;
mca_part_persist_complete(req);
}
}
if(true == req->req_free_called && true == req->req_part_complete && REQUEST_COMPLETED == req->req_ompi.req_complete && OMPI_REQUEST_INACTIVE == req->req_ompi.req_state) {
to_delete = req;
}
}
}
OPAL_THREAD_UNLOCK(&ompi_part_persist.lock);
block_entry = opal_atomic_add_fetch_32(&(ompi_part_persist.block_entry), -1);
if(to_delete) {
err = mca_part_persist_free_req(to_delete);
if (OMPI_SUCCESS != err) {
return OMPI_ERROR;
}
}
return OMPI_SUCCESS;
}
__opal_attribute_always_inline__ static inline int
mca_part_persist_precv_init(void *buf,
size_t parts,
size_t count,
ompi_datatype_t * datatype,
int src,
int tag,
struct ompi_communicator_t *comm,
struct ompi_info_t * info,
struct ompi_request_t **request)
{
int err = OMPI_SUCCESS;
size_t dt_size_;
uint32_t dt_size;
mca_part_persist_list_t* new_progress_elem = NULL;
mca_part_persist_precv_request_t *recvreq;
/* if module hasn't been called before, flag module to init. */
if(-1 == ompi_part_persist.init_world)
{
ompi_part_persist.init_world = 0;
}
/* Allocate a new request */
MCA_PART_PERSIST_PRECV_REQUEST_ALLOC(recvreq);
if (OPAL_UNLIKELY(NULL == recvreq)) return OMPI_ERR_OUT_OF_RESOURCE;
MCA_PART_PERSIST_PRECV_REQUEST_INIT(recvreq, ompi_proc, comm, tag, src,
datatype, buf, parts, count, flags);
mca_part_persist_request_t *req = (mca_part_persist_request_t *) recvreq;
/* Set lazy initializion flags */
req->initialized = false;
req->first_send = true;
req->flag_post_setup_recv = false;
req->flags = NULL;
/* Non-blocking receive on setup info */
err = MCA_PML_CALL(irecv(&req->setup_info[1], sizeof(struct ompi_mca_persist_setup_t), MPI_BYTE, src, tag, comm, &req->setup_req[1]));
if(OMPI_SUCCESS != err) return OMPI_ERROR;
/* Compute total number of bytes */
err = opal_datatype_type_size(&(req->req_datatype->super), &dt_size_);
if(OMPI_SUCCESS != err) return OMPI_ERROR;
dt_size = (dt_size_ > (size_t) UINT_MAX) ? MPI_UNDEFINED : (uint32_t) dt_size_;
req->req_bytes = parts * count * dt_size;
/* Set ompi request initial values */
req->req_ompi.req_persistent = true;
req->req_part_complete = true;
req->req_ompi.req_complete = REQUEST_COMPLETED;
req->req_ompi.req_state = OMPI_REQUEST_INACTIVE;
/* Add element to progress engine */
new_progress_elem = OBJ_NEW(mca_part_persist_list_t);
new_progress_elem->item = req;
req->progress_elem = new_progress_elem;
OPAL_THREAD_LOCK(&ompi_part_persist.lock);
opal_list_append(ompi_part_persist.progress_list, (opal_list_item_t*)new_progress_elem);
OPAL_THREAD_UNLOCK(&ompi_part_persist.lock);
/* set return values */
*request = (ompi_request_t*) recvreq;
return err;
}
__opal_attribute_always_inline__ static inline int
mca_part_persist_psend_init(const void* buf,
size_t parts,
size_t count,
ompi_datatype_t* datatype,
int dst,
int tag,
ompi_communicator_t* comm,
struct ompi_info_t * info,
ompi_request_t** request)
{
int err = OMPI_SUCCESS;
size_t dt_size_;
uint32_t dt_size;
mca_part_persist_list_t* new_progress_elem = NULL;
mca_part_persist_psend_request_t *sendreq;
/* if module hasn't been called before, flag module to init. */
if(-1 == ompi_part_persist.init_world)
{
ompi_part_persist.init_world = 0;
}
/* Create new request object */
MCA_PART_PERSIST_PSEND_REQUEST_ALLOC(sendreq, comm, dst, ompi_proc);
if (OPAL_UNLIKELY(NULL == sendreq)) return OMPI_ERR_OUT_OF_RESOURCE;
MCA_PART_PERSIST_PSEND_REQUEST_INIT(sendreq, ompi_proc, comm, tag, dst,
datatype, buf, parts, count, flags);
mca_part_persist_request_t *req = (mca_part_persist_request_t *) sendreq;
/* Set lazy initialization variables */
req->initialized = false;
req->first_send = true;
/* Determine total bytes to send. */
err = opal_datatype_type_size(&(req->req_datatype->super), &dt_size_);
if(OMPI_SUCCESS != err) return OMPI_ERROR;
dt_size = (dt_size_ > (size_t) UINT_MAX) ? MPI_UNDEFINED : (uint32_t) dt_size_;
req->req_bytes = parts * count * dt_size;
/* non-blocking send set-up data */
req->setup_info[0].world_rank = ompi_comm_rank(&ompi_mpi_comm_world.comm);
req->setup_info[0].start_tag = ompi_part_persist.next_send_tag; ompi_part_persist.next_send_tag += parts;
req->my_send_tag = req->setup_info[0].start_tag;
req->setup_info[0].setup_tag = ompi_part_persist.next_recv_tag; ompi_part_persist.next_recv_tag++;
req->my_recv_tag = req->setup_info[0].setup_tag;
req->setup_info[0].num_parts = parts;
req->real_parts = parts;
req->setup_info[0].count = count;
req->real_count = count;
req->flags = (int*) calloc(req->real_parts, sizeof(int));
err = MCA_PML_CALL(isend(&(req->setup_info[0]), sizeof(struct ompi_mca_persist_setup_t), MPI_BYTE, dst, tag, MCA_PML_BASE_SEND_STANDARD, comm, &req->setup_req[0]));
if(OMPI_SUCCESS != err) return OMPI_ERROR;
/* Non-blocking receive on setup info */
if(1 == ompi_part_persist.init_comms) {
err = MCA_PML_CALL(irecv(&(req->setup_info[1]), sizeof(struct ompi_mca_persist_setup_t), MPI_BYTE, MPI_ANY_SOURCE, req->my_recv_tag, ompi_part_persist.part_comm_setup, &req->setup_req[1]));
if(OMPI_SUCCESS != err) return OMPI_ERROR;
req->flag_post_setup_recv = false;
} else {
req->flag_post_setup_recv = true;
}
/* Initilaize completion variables */
sendreq->req_base.req_ompi.req_persistent = true;
req->req_part_complete = true;
req->req_ompi.req_complete = REQUEST_COMPLETED;
req->req_ompi.req_state = OMPI_REQUEST_INACTIVE;
/* add element to progress queue */
new_progress_elem = OBJ_NEW(mca_part_persist_list_t);
new_progress_elem->item = req;
req->progress_elem = new_progress_elem;
OPAL_THREAD_LOCK(&ompi_part_persist.lock);
opal_list_append(ompi_part_persist.progress_list, (opal_list_item_t*)new_progress_elem);
OPAL_THREAD_UNLOCK(&ompi_part_persist.lock);
/* Set return values */
*request = (ompi_request_t*) sendreq;
return err;
}
__opal_attribute_always_inline__ static inline int
mca_part_persist_start(size_t count, ompi_request_t** requests)
{
int err = OMPI_SUCCESS;
size_t _count = count;
size_t i;
for(i = 0; i < _count && OMPI_SUCCESS == err; i++) {
mca_part_persist_request_t *req = (mca_part_persist_request_t *)(requests[i]);
/* First use is a special case, to support lazy initialization */
if(false == req->first_send)
{
if(MCA_PART_PERSIST_REQUEST_PSEND == req->req_type) {
req->done_count = 0;
memset((void*)req->flags,0,sizeof(uint32_t)*req->real_parts);
} else {
req->done_count = 0;
err = req->persist_reqs[0]->req_start(req->real_parts, req->persist_reqs);
memset((void*)req->flags,0,sizeof(uint32_t)*req->real_parts);
}
} else {
if(MCA_PART_PERSIST_REQUEST_PSEND == req->req_type) {
req->done_count = 0;
for(i = 0; i < req->real_parts && OMPI_SUCCESS == err; i++) {
req->flags[i] = -1;
}
} else {
req->done_count = 0;
}
}
req->req_ompi.req_state = OMPI_REQUEST_ACTIVE;
req->req_ompi.req_status.MPI_TAG = MPI_ANY_TAG;
req->req_ompi.req_status.MPI_ERROR = OMPI_SUCCESS;
req->req_ompi.req_status._cancelled = 0;
req->req_part_complete = false;
req->req_ompi.req_complete = false;
OPAL_ATOMIC_SWAP_PTR(&req->req_ompi.req_complete, REQUEST_PENDING);
}
return err;
}
__opal_attribute_always_inline__ static inline int
mca_part_persist_pready(size_t min_part,
size_t max_part,
ompi_request_t* request)
{
int err = OMPI_SUCCESS;
size_t i;
mca_part_persist_request_t *req = (mca_part_persist_request_t *)(request);
if(true == req->initialized)
{
err = req->persist_reqs[min_part]->req_start(max_part-min_part+1, (&(req->persist_reqs[min_part])));
for(i = min_part; i <= max_part && OMPI_SUCCESS == err; i++) {
req->flags[i] = 0; /* Mark partition as ready for testing */
}
}
else
{
for(i = min_part; i <= max_part && OMPI_SUCCESS == err; i++) {
req->flags[i] = -2; /* Mark partition as queued */
}
}
return err;
}
__opal_attribute_always_inline__ static inline int
mca_part_persist_parrived(size_t min_part,
size_t max_part,
int* flag,
ompi_request_t* request)
{
int err = OMPI_SUCCESS;
size_t i;
int _flag = false;
mca_part_persist_request_t *req = (mca_part_persist_request_t *)request;
if(0 != req->flags) {
_flag = 1;
if(req->req_parts == req->real_parts) {
for(i = min_part; i <= max_part; i++) {
_flag = _flag && req->flags[i];
}
} else {
float convert = ((float)req->real_parts) / ((float)req->req_parts);
size_t _min = floor(convert * min_part);
size_t _max = ceil(convert * max_part);
for(i = _min; i <= _max; i++) {
_flag = _flag && req->flags[i];
}
}
}
if(!_flag) {
opal_progress();
}
*flag = _flag;
return err;
}
/**
* mca_part_persist_free marks an entry as free called and sets the request to
* MPI_REQUEST_NULL. Note: requests get freed in the progress engine.
*/
__opal_attribute_always_inline__ static inline int
mca_part_persist_free(ompi_request_t** request)
{
mca_part_persist_request_t* req = *(mca_part_persist_request_t**)request;
if(true == req->req_free_called) return OMPI_ERROR;
req->req_free_called = true;
*request = MPI_REQUEST_NULL;
return OMPI_SUCCESS;
}
END_C_DECLS
#endif /* PART_PERSIST_H_HAS_BEEN_INCLUDED */
|