コード例 #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);
}
コード例 #2
0
ファイル: smpi_mpi.c プロジェクト: FlorianPO/simgrid
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);
}
コード例 #3
0
ファイル: smpi_pmpi_type.cpp プロジェクト: simgrid/simgrid
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);
}