HP-MPI V2.3 for Linux Release Note

IN array_of_displacements byte displacement of each block
IN oldtype old datatype (handle)
OUT newtype new datatype (handle)
int MPI_Type_hvectorL(MPI_Aint count, MPI_Aint blocklength, MPI_Aint stride,
MPI_Datatype oldtype, MPI_Datatype *newtype)
IN count number of blocks
IN blocklength number of elements in each block
IN stride number of bytes between start of each block
IN oldtype old datatype (handle)
OUT newtype new datatype (handle)
A.4 One-Sided Communication
int MPI_Win_createL(void *base, MPI_Aint size, MPI_Aint disp_unit, MPI_Info
info, MPI_Comm comm, MPI_WIN *win)
IN base initial address of window (choice)
IN size size of window in bytes
IN disp_unit local unit size for displacements, in bytes
IN info info argument (handle)
IN comm communicator (handle)
OUT win window object returned by the call (handle)
int MPI_GetL(void *origin_addr, MPI_Aint origin_count, MPI_Datatype
origin_datatype, int target_rank, MPI_Aint target_disp, MPI_Aint target_count,
MPI_Datatype target_datatype, MPI_WIN win)
OUT origin_addr initial address of origin buffer (choice)
IN origin_count number of entries in origin buffer
IN origin_datatype datatype of each entry in origin buffer
(handle)
IN target_rank rank of target (nonnegative integer)
IN target_disp displacement from window start to the
beginning of the target buffer
IN target_count number of entries in target buffer
IN target_datatype datatype of each entry in target buffer (handle)
IN win window object used for communication (handle)
int MPI_PutL(void *origin_addr, MPI_Aint origin_count, MPI_Datatype
origin_datatype, int target_rank, MPI_Aint target_disp, MPI_Aint target_count,
MPI_Datatype target_datatype, MPI_WIN win)
IN origin_addr initial address of origin buffer (choice)
IN origin_count number of entries in origin buffer
IN origin_datatype datatype of each entry in origin buffer
(handle)
IN target_rank rank of target
IN target_disp displacement from start of window to
target buffer
IN target_count number of entries in target buffer
IN target_datatype datatype of each entry in target buffer
50 HP-MPI Large Message APIs