From 4a19a4aaa1580d0dcdb8342a4fcf67ef05ead0bc Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Sun, 14 Apr 2019 18:11:22 +0200 Subject: [PATCH] MPI_Count can be used in ops too. --- src/smpi/mpi/smpi_op.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/smpi/mpi/smpi_op.cpp b/src/smpi/mpi/smpi_op.cpp index 0da76e479f..2f9da357fa 100644 --- a/src/smpi/mpi/smpi_op.cpp +++ b/src/smpi/mpi/smpi_op.cpp @@ -66,7 +66,9 @@ APPLY_OP_LOOP(MPI_OFFSET, MPI_Offset,op)\ APPLY_OP_LOOP(MPI_INTEGER1, int,op)\ APPLY_OP_LOOP(MPI_INTEGER2, int16_t,op)\ APPLY_OP_LOOP(MPI_INTEGER4, int32_t,op)\ -APPLY_OP_LOOP(MPI_INTEGER8, int64_t,op) +APPLY_OP_LOOP(MPI_INTEGER8, int64_t,op)\ +APPLY_OP_LOOP(MPI_COUNT, long long,op) + #define APPLY_BOOL_OP_LOOP(op)\ APPLY_OP_LOOP(MPI_C_BOOL, bool,op) -- 2.20.1