1
1

Use the converted value instead of calling the macro again.

This commit was SVN r28701.
Этот коммит содержится в:
George Bosilca 2013-07-02 11:33:18 +00:00
родитель 5d2d5e958c
Коммит fe012cdc2b
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -79,7 +79,7 @@ void ompi_cart_create_f(MPI_Fint *old_comm, MPI_Fint *ndims, MPI_Fint *dims,
OMPI_ARRAY_FINT_2_INT(dims, size);
OMPI_ARRAY_LOGICAL_2_INT(periods, size);
c_ierr = MPI_Cart_create(c_comm1, OMPI_FINT_2_INT(*ndims),
c_ierr = MPI_Cart_create(c_comm1, size,
OMPI_ARRAY_NAME_CONVERT(dims),
OMPI_LOGICAL_ARRAY_NAME_CONVERT(periods),
OMPI_LOGICAL_2_INT(*reorder),

Просмотреть файл

@ -81,7 +81,7 @@ void ompi_cart_get_f(MPI_Fint *comm, MPI_Fint *maxdims, MPI_Fint *dims,
OMPI_ARRAY_LOGICAL_2_INT_ALLOC(periods, size);
c_ierr = MPI_Cart_get(c_comm,
OMPI_FINT_2_INT(*maxdims),
size,
OMPI_ARRAY_NAME_CONVERT(dims),
OMPI_LOGICAL_ARRAY_NAME_CONVERT(periods),
OMPI_ARRAY_NAME_CONVERT(coords));

Просмотреть файл

@ -80,7 +80,7 @@ void ompi_cart_map_f(MPI_Fint *comm, MPI_Fint *ndims, MPI_Fint *dims,
OMPI_ARRAY_LOGICAL_2_INT(periods, size);
c_ierr = MPI_Cart_map(c_comm,
OMPI_FINT_2_INT(*ndims),
size,
OMPI_ARRAY_NAME_CONVERT(dims),
OMPI_LOGICAL_ARRAY_NAME_CONVERT(periods),
OMPI_SINGLE_NAME_CONVERT(newrank));