105 向量

BACKWARD FORWARD


为了说明此行(C顺序),我们可以使用
MPI_Type_vector( count, blocklen, stride, oldtype,  
                 &newtype ); 
MPI_Type_commit( &newtype ); 

它的确切代码为

MPI_Type_vector( 5, 1, 7, MPI_DOUBLE, &newtype ); 
MPI_Type_commit( &newtype ); 


Copyright: NPACT BACKWARD FORWARD