X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4d648ebbbe5705878080b9cbf1ca61497323c592..b6dde5ff6f208b83545a4b4e9e81712d0d8617a1:/src/smpi/include/smpi_op.hpp diff --git a/src/smpi/include/smpi_op.hpp b/src/smpi/include/smpi_op.hpp index c0eb212982..403b230aa8 100644 --- a/src/smpi/include/smpi_op.hpp +++ b/src/smpi/include/smpi_op.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2009-2019. The SimGrid Team. +/* Copyright (c) 2009-2020. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -17,14 +17,15 @@ class Op : public F2C{ bool is_commutative_; bool is_fortran_op_ = false; int refcount_ = 1; + bool predefined_; public: - Op(MPI_User_function* function, bool commutative) : func_(function), is_commutative_(commutative) {} + Op(MPI_User_function* function, bool commutative, bool predefined=false) : func_(function), is_commutative_(commutative), predefined_(predefined) {} bool is_commutative() { return is_commutative_; } bool is_fortran_op() { return is_fortran_op_; } // tell that we were created from fortran, so we need to translate the type to fortran when called void set_fortran_op() { is_fortran_op_ = true; } - void apply(void* invec, void* inoutvec, int* len, MPI_Datatype datatype); + void apply(const void* invec, void* inoutvec, const int* len, MPI_Datatype datatype); static Op* f2c(int id); void ref(); static void unref(MPI_Op* op);