.\" -*- nroff -*- .\" Copyright 2013 Los Alamos National Security, LLC. All rights reserved. .\" Copyright 2010 Cisco Systems, Inc. All rights reserved. .\" Copyright 2006-2008 Sun Microsystems, Inc. .\" Copyright (c) 1996 Thinking Machines .\" $COPYRIGHT$ .TH MPI_Type_create_indexed_block 3 "May 26, 2022" "4.1.4" "Open MPI" .SH NAME \fBMPI_Type_create_indexed_block, MPI_Type_create_hindexed_block\fP \- Creates an indexed data type with the same block length for all blocks. .SH SYNTAX .ft R .SH C Syntax .nf #include int MPI_Type_create_indexed_block(int \fIcount\fP, int \fIblocklength\fP, const int \fIarray_of_displacements\fP[], MPI_Datatype \fIoldtype\fP, MPI_Datatype *\fInewtype\fP) int MPI_Type_create_hindexed_block(int \fIcount\fP, int \fIblocklength\fP, const MPI_Aint \fIarray_of_displacements\fP[], MPI_Datatype \fIoldtype\fP, MPI_Datatype *\fInewtype\fP) .fi .SH Fortran Syntax .nf USE MPI ! or the older form: INCLUDE 'mpif.h' MPI_TYPE_CREATE_INDEXED_BLOCK(\fICOUNT, BLOCKLENGTH, ARRAY_OF_DISPLACEMENTS, OLDTYPE, NEWTYPE, IERROR\fP) INTEGER \fICOUNT, BLOCKLENGTH, ARRAY_OF_DISPLACEMENTS(*), OLDTYPE, NEWTYPE, IERROR \fP MPI_TYPE_CREATE_HINDEXED_BLOCK(\fICOUNT, BLOCKLENGTH, ARRAY_OF_DISPLACEMENTS, OLDTYPE, NEWTYPE, IERROR\fP) INTEGER \fICOUNT, BLOCKLENGTH, OLDTYPE, NEWTYPE\fP INTEGER(KIND=MPI_ADDRESS_KIND) \fIARRAY_OF_DISPLACEMENTS(*)\fP INTEGER \fIIERROR\fP .fi .SH Fortran 2008 Syntax USE mpi_f08 MPI_Type_create_indexed_block(\fIcount\fP, \fIblocklength\fP, \fIarray_of_displacements\fP, \fIoldtype\fP, \fInewtype\fP, \fIierror\fP) INTEGER, INTENT(IN) :: \fIcount\fP, \fIblocklength,\fP \fIarray_of_displacements(count)\fP TYPE(MPI_Datatype), INTENT(IN) :: \fIoldtype\fP TYPE(MPI_Datatype), INTENT(OUT) :: \fInewtype\fP INTEGER, OPTIONAL, INTENT(OUT) :: \fIierror\fP MPI_Type_create_hindexed_block(\fIcount\fP, \fIblocklength\fP, \fIarray_of_displacements\fP, \fIoldtype\fP, \fInewtype\fP, \fIierror\fP) INTEGER, INTENT(IN) :: \fIcount\fP, \fIblocklength\fP INTEGER(KIND=MPI_ADDRESS_KIND), INTENT(IN) :: \fIarray_of_displacements(count)\fP TYPE(MPI_Datatype), INTENT(IN) :: \fIoldtype\fP TYPE(MPI_Datatype), INTENT(OUT) :: \fInewtype\fP INTEGER, OPTIONAL, INTENT(OUT) :: \fIierror\fP .fi .SH C++ Syntax .nf #include MPI::Datatype MPI::Datatype::Create_indexed_block( int \fIcount\fP, int \fIblocklength\fP, const int \fIarray_of_displacements\fP[]) const MPI::Datatype MPI::Datatype::Create_hindexed_block( int \fIcount\fP, int \fIblocklength\fP, const int \fIarray_of_displacements\fP[]) const .fi .SH INPUT PARAMETERS .ft R .TP 1i count Length of array of displacements (integer). .TP 1i blocklength Size of block (integer). .TP 1i array_of_displacements Array of displacements (array of integers). In units of the extent of \fIoldtype\fP for MPI_Type_create_indexed_block and bytes for MPI_Type_create_hindexed_block. .TP 1i oldtype Old data type (handle). .SH OUTPUT PARAMETERS .ft R .TP 1i newtype New data type (handle). .TP 1i IERROR Fortran only: Error status (integer). .SH DESCRIPTION .ft R MPI_Type_create_indexed_block and MPI_Type_create_hindexed_block create an indexed data type with the same block length for all blocks. The only difference between the two functions is MPI_Type_create_indexed_block takes an array of displacements in units of the extent of \fIoldtype\fP while MPI_Type_create_hindexed_block takes displacements in bytes. .SH ERRORS Almost all MPI routines return an error value; C routines as the value of the function and Fortran routines in the last argument. C++ functions do not return errors. If the default error handler is set to MPI::ERRORS_THROW_EXCEPTIONS, then on error the C++ exception mechanism will be used to throw an MPI::Exception object. .sp Before the error value is returned, the current MPI error handler is called. By default, this error handler aborts the MPI job, except for I/O function errors. The error handler may be changed with MPI_Comm_set_errhandler; the predefined error handler MPI_ERRORS_RETURN may be used to cause error values to be returned. Note that MPI does not guarantee that an MPI program can continue past an error. .SH SEE ALSO .ft R .sp MPI_Type_indexed .br