Skip to content

Commit

Permalink
Merge pull request #27 from steiltre/master
Browse files Browse the repository at this point in the history
Removes public async_flush functionality
  • Loading branch information
steiltre authored Oct 1, 2021
2 parents 7ee6c1a + be82919 commit 6b1ff96
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions include/ygm/comm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,6 @@ class comm {
void async_mcast_preempt(const std::vector<int> &dests, AsyncFunction fn,
const SendArgs &... args);

void async_flush(int rank);
void async_flush_bcast();
void async_flush_all();

//
// Collective operations across all ranks. Cannot be called inside OpenMP
// region.
Expand Down
4 changes: 0 additions & 4 deletions include/ygm/detail/comm_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -667,10 +667,6 @@ inline void comm::reset_rpc_call_counter() { pimpl->reset_rpc_call_counter(); }

inline void comm::barrier() { pimpl->barrier(); }

inline void comm::async_flush(int rank) { pimpl->async_flush(rank); }

inline void comm::async_flush_all() { pimpl->async_flush_all(); }

template <typename T>
inline T comm::all_reduce_sum(const T &t) const {
return pimpl->all_reduce_sum(t);
Expand Down

0 comments on commit 6b1ff96

Please sign in to comment.