127 在通信子上缓冲标识 III
|
 |
if (mpe_errno = MPI_Attr_get( comm_in, MPE_Tag_keyval, &tagvalp, &flag ))
return mpe_errno;
if (!flag) {
/* This communicator is not yet known to this system, so we
dup it and setup the first value */
MPI_Comm_dup( comm_in, comm_out );
comm_in = *comm_out;
MPI_Attr_get( MPI_COMM_WORLD, MPI_TAG_UB, &maxval, &flag );
tagvalp = (int *)malloc( 2 * sizeof(int) );
printf( "Mallocing address %x\n", tagvalp );
if (!tagvalp) return MPI_ERR_EXHAUSTED;
tagvalp = *maxval;
MPI_Attr_put( comm_in, MPE_Tag_keyval, tagvalp );
return MPI_SUCCESS;
}
| Copyright: NPACT |
 |