X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/29a3b2869c0075fc75e8ccc66fc1d9c4c8bf6a85..061f1e9720921cc227dab4f6ddeca9d30028e5d4:/src/smpi/mpi/smpi_op.cpp diff --git a/src/smpi/mpi/smpi_op.cpp b/src/smpi/mpi/smpi_op.cpp index 2ec173481f..bb52d0e4ec 100644 --- a/src/smpi/mpi/smpi_op.cpp +++ b/src/smpi/mpi/smpi_op.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2009-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2009-2019. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -190,7 +190,7 @@ static void replace_func(void *a, void *b, int *length, MPI_Datatype * datatype) memcpy(b, a, *length * (*datatype)->size()); } -static void no_func(void *a, void *b, int *length, MPI_Datatype * datatype) +static void no_func(void*, void*, int*, MPI_Datatype*) { /* obviously a no-op */ } @@ -217,27 +217,6 @@ CREATE_MPI_OP(MPI_NO_OP, no_func); namespace simgrid{ namespace smpi{ -Op::Op(MPI_User_function * function, bool commutative) : func_(function), is_commutative_(commutative) -{ - is_fortran_op_ = false; -} - -bool Op::is_commutative() -{ - return is_commutative_; -} - -bool Op::is_fortran_op() -{ - return is_fortran_op_; -} - -void Op::set_fortran_op() -{ - //tell that we were created from fortran, so we need to translate the type to fortran when called - is_fortran_op_ = true; -} - void Op::apply(void *invec, void *inoutvec, int *len, MPI_Datatype datatype) { if (smpi_privatize_global_variables == SmpiPrivStrategies::MMAP) { @@ -263,5 +242,17 @@ Op* Op::f2c(int id){ return static_cast(F2C::f2c(id)); } +void Op::ref(){ + refcount_++; +} + +void Op::unref(MPI_Op* op){ + if((*op)!=MPI_OP_NULL){ + (*op)->refcount_--; + if((*op)->refcount_==0) + delete(*op); + } +} + } }