void ompi_get_elements_x_f(MPI_Fint *status, MPI_Fint *datatype, MPI_Count *count, MPI_Fint *ierr) { int c_ierr; MPI_Datatype c_type = MPI_Type_f2c(*datatype); MPI_Status c_status; OMPI_SINGLE_NAME_DECL(count); if (OMPI_IS_FORTRAN_STATUS_IGNORE(status)) { *count = OMPI_INT_2_FINT(0); c_ierr = MPI_SUCCESS; } else { c_ierr = MPI_Status_f2c(status, &c_status); if (MPI_SUCCESS == c_ierr) { c_ierr = MPI_Get_elements_x(&c_status, c_type, count); } } if (NULL != ierr) *ierr = OMPI_INT_2_FINT(c_ierr); }
int test_count(MPI_Count count) { MPI_Status stat; int cancelled, cancelled2; MPI_Count bcount, bcount2; int nerrs = 0; bcount = count; cancelled = 0; MPI_Status_set_cancelled(&stat, cancelled); MPI_Status_set_elements_x(&stat, MPI_BYTE, bcount); MPI_Get_elements_x(&stat, MPI_BYTE, &bcount2); MPI_Test_cancelled(&stat, &cancelled2); if (bcount != bcount2) { fprintf(stderr, "Count Error: expected %llx, got %llx\n", (long long int)bcount, (long long int)bcount2); nerrs++; } if (cancelled != cancelled2) { fprintf(stderr, "Cancelled Error: expected %d, got %d\n", cancelled, cancelled2); nerrs++; } return nerrs; }
int main(int argc, char * argv[]) { int provided; MPI_ASSERT(MPI_Init_thread(&argc, &argv, MPI_THREAD_SINGLE, &provided)); int rank, size; MPI_ASSERT(MPI_Comm_rank(MPI_COMM_WORLD, &rank)); MPI_ASSERT(MPI_Comm_size(MPI_COMM_WORLD, &size)); int logn = (argc>1) ? atoi(argv[1]) : 32; size_t count = (size_t)1<<logn; /* explicit cast required */ printf("count = %zu \n", count ); MPI_Datatype bigtype; MPI_ASSERT(MPIX_Type_contiguous_x( (MPI_Count)count, MPI_CHAR, &bigtype)); MPI_ASSERT(MPI_Type_commit(&bigtype)); char * rbuf = NULL; char * sbuf = NULL; #ifdef USE_MPI_ALLOC_MEM MPI_ASSERT(MPI_Alloc_mem( (MPI_Aint)count * sizeof(char), MPI_INFO_NULL, &rbuf)); MPI_ASSERT(MPI_Alloc_mem( (MPI_Aint)count * sizeof(char), MPI_INFO_NULL, &sbuf)); #else rbuf = malloc( count * sizeof(char)); assert(rbuf!=NULL); sbuf = malloc( count * sizeof(char)); assert(sbuf!=NULL); #endif for (size_t i=0; i<count; i++) rbuf[i] = 'a'; for (size_t i=0; i<count; i++) sbuf[i] = 'z'; MPI_Request requests[2]; MPI_Status statuses[2]; if (rank==(size-1)) { MPI_ASSERT(MPI_Irecv(rbuf, 1, bigtype, 0, 0, MPI_COMM_WORLD, &(requests[1]) )); } if (rank==0) { MPI_ASSERT(MPI_Isend(sbuf, 1, bigtype, size-1, 0, MPI_COMM_WORLD, &(requests[0]) )); } MPI_Count ocount[2]; if (size==1) { MPI_ASSERT(MPI_Waitall(2, requests, statuses)); MPI_ASSERT(MPI_Get_elements_x( &(statuses[1]), MPI_CHAR, &(ocount[1]))); } else { if (rank==(size-1)) { MPI_ASSERT(MPI_Wait( &(requests[1]), &(statuses[1]) )); MPI_ASSERT(MPI_Get_elements_x( &(statuses[1]), MPI_CHAR, &(ocount[1]) )); } else if (rank==0) { MPI_ASSERT(MPI_Wait( &(requests[0]), &(statuses[0]) )); MPI_ASSERT(MPI_Get_elements_x( &(statuses[0]), MPI_CHAR, &(ocount[0]) )); } } if (rank==0) { printf("ocount[0] = %lld \n", ocount[0]); } else if ( rank==(size-1) ) { printf("ocount[1] = %lld \n", ocount[1]); } /* correctness check */ if (rank==(size-1)) { MPI_Count errors = 0; for (MPI_Count i=0; i<count; i++) errors += ( rbuf[i] != 'z' ); printf("errors = %lld \n", errors); } #ifdef USE_MPI_ALLOC_MEM MPI_ASSERT(MPI_Free_mem(rbuf)); MPI_ASSERT(MPI_Free_mem(sbuf)); #else free(rbuf); free(sbuf); #endif MPI_ASSERT(MPI_Type_free(&bigtype)); MPI_ASSERT(MPI_Finalize()); return 0; }
FORT_DLL_SPEC void FORT_CALL mpi_get_elements_x_ ( MPI_Fint *v1, MPI_Fint *v2, MPI_Count *v3, MPI_Fint *ierr ){ *ierr = MPI_Get_elements_x( (MPI_Status *)(v1), (MPI_Datatype)(*v2), v3 ); }
MPI_Count elements(const MPI_Datatype& type) const { MPI_Count n; MPIWRAP_CALL(MPI_Get_elements_x(nc(&status), type, &n)); return n; }