Skip to content

Commit b86d7de

Browse files
committed
c bindings: un big count a few c interfaces
MPI_Cart_create, MPI_Cart_map, MPI_Cart_rank and MPI_Cart_sub do not have big count interfaces. Signed-off-by: Howard Pritchard <howardp@lanl.gov>
1 parent faaed64 commit b86d7de

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

ompi/mpi/c/cart_create.c.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
#include "ompi/mca/topo/base/base.h"
3333
#include "ompi/memchecker.h"
3434

35-
PROTOTYPE ERROR_CLASS cart_create(COMM old_comm, INT ndims, COUNT_ARRAY dims,
36-
COUNT_ARRAY periods, INT reorder, COMM_OUT comm_cart)
35+
PROTOTYPE ERROR_CLASS cart_create(COMM old_comm, INT ndims, INT_ARRAY dims,
36+
INT_ARRAY periods, INT reorder, COMM_OUT comm_cart)
3737
{
3838
mca_topo_base_module_t* topo;
3939
int err;

ompi/mpi/c/cart_map.c.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
#include "ompi/mca/topo/topo.h"
3333
#include "ompi/memchecker.h"
3434

35-
PROTOTYPE ERROR_CLASS cart_map(COMM comm, INT ndims, COUNT_ARRAY dims,
36-
COUNT_ARRAY periods, INT_OUT newrank)
35+
PROTOTYPE ERROR_CLASS cart_map(COMM comm, INT ndims, INT_ARRAY dims,
36+
INT_ARRAY periods, INT_OUT newrank)
3737
{
3838
int err = MPI_SUCCESS;
3939

ompi/mpi/c/cart_rank.c.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#include "ompi/mca/topo/topo.h"
3333
#include "ompi/memchecker.h"
3434

35-
PROTOTYPE ERROR_CLASS cart_rank(COMM comm, COUNT_ARRAY coords, INT_OUT rank)
35+
PROTOTYPE ERROR_CLASS cart_rank(COMM comm, INT_ARRAY coords, INT_OUT rank)
3636
{
3737
int i, err;
3838

ompi/mpi/c/cart_sub.c.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#include "ompi/mca/topo/topo.h"
3333
#include "ompi/memchecker.h"
3434

35-
PROTOTYPE ERROR_CLASS cart_sub(COMM comm, COUNT_ARRAY remain_dims, COMM_OUT new_comm)
35+
PROTOTYPE ERROR_CLASS cart_sub(COMM comm, INT_ARRAY remain_dims, COMM_OUT new_comm)
3636
{
3737
int err;
3838

0 commit comments

Comments
 (0)