Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
MPI_Count can be used in ops too.
authorAugustin Degomme <adegomme@users.noreply.github.com>
Sun, 14 Apr 2019 16:11:22 +0000 (18:11 +0200)
committerAugustin Degomme <adegomme@users.noreply.github.com>
Sun, 14 Apr 2019 16:15:50 +0000 (18:15 +0200)
src/smpi/mpi/smpi_op.cpp

index 0da76e4..2f9da35 100644 (file)
@@ -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)