Exemplo n.º 1
0
int MPI_Type_hindexed( 
        int count, 
        int blocklens[], 
        MPI_Aint indices[], 
        MPI_Datatype old_type, 
        MPI_Datatype *newtype )
{
  _MPI_COVERAGE();
  return PMPI_Type_hindexed (count, blocklens, indices, old_type, newtype);
}
Exemplo n.º 2
0
int MPI_Type_hindexed(int count, int* blocklens, MPI_Aint* indices, MPI_Datatype old_type, MPI_Datatype* newtype) {
  return PMPI_Type_hindexed(count, blocklens, indices, old_type, newtype);
}
Exemplo n.º 3
0
int PMPI_Type_create_hindexed(int count, const int* blocklens, const MPI_Aint* indices, MPI_Datatype old_type,
                              MPI_Datatype* new_type) {
  return PMPI_Type_hindexed(count, blocklens, indices, old_type, new_type);
}