Skip to content

Commit

Permalink
Remove ambiguous scan overload
Browse files Browse the repository at this point in the history
  • Loading branch information
noelchalmers committed Mar 14, 2022
1 parent 21cbf97 commit 65fd9da
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions include/comm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -382,13 +382,6 @@ class comm_t {
MPI_Scan(&snd, &rcv, 1, type, op, comm());
mpiType<T>::freeMpiType(type);
}
template <typename T>
void Scan(T& snd,
const op_t op = Sum) const {
T rcv=snd;
Scan(snd, rcv, op);
snd = rcv;
}

/*libp::memory gather*/
template <template<typename> class mem, typename T>
Expand Down

0 comments on commit 65fd9da

Please sign in to comment.