136 引用计数

BACKWARD FORWARD


MPI跟踪一个MPI对象的使用,并且当没人使用它时仅仅将它释放。用户(创建它的PI_Type_vector)和MPI_Datatype newx 使用newx1。

如果在newx定义候补需要newx1时,应该释放它。

MPI_Type_vector( ly, 1, nx, MPI_DOUBLE, &newx1 );
MPI_Type_hvector( lz, 1, nx*ny*sizeof(double), newx1,
&newx );
MPI_Type_free( &newx1 );
MPI_Type_commit( &newx );


Copyright: NPACT BACKWARD FORWARD