考虑下面代码
MPI_Type_vector( ly, 1, nx, MPI_DOUBLE, &newx1 ); MPI_Type_hvector( lz, 1, nx*ny*sizeof(double), newx1, &newx ); MPI_Type_commit( &newx );
(这创建了针对3D分解的一面的数据类型)。什么时候应该释放newx1?