MPI_Type_contiguous 

Nazwa: 

MPI_Type_contiguous - Produkuje nowy typ danych przez stworzenie count kopii istniejącego typu danych

Wejściowe parametry: 

count - ilość kopii (nieujemny integer);
oldtype - stary typ danych (handle); 

Wyjściowe parametry: 

newtype - nowy typ danych (handle);

Użycie:

#include "mpi.h"
int MPI_Type_contiguous( count, old_type, newtype )
int count;
MPI_Datatype old_type;
MPI_Datatype *newtype;