Skip to content

Commit

Permalink
remove some prints
Browse files Browse the repository at this point in the history
  • Loading branch information
cwpearson committed Jun 21, 2024
1 parent c1f1b67 commit cc3fcfc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/mpi/KokkosComm_mpi_handle.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ class Handle<ExecSpace, Mpi> {
void impl_track_req(const Req<Mpi> &req) { reqs_.push_back(req); }

void impl_run() {
std::cerr << __FILE__ << ":" << __LINE__ << " impl_run\n";
for (const auto &f : allocs_) f();
for (const auto &f : preCopies_) f();
if (preCommFence_) {
Expand Down
2 changes: 0 additions & 2 deletions src/mpi/KokkosComm_mpi_req.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ class Req<Mpi> {
};

inline void wait(Req<Mpi> &req) {
std::cerr << __FILE__ << ":" << __LINE__ << " wait on " << req.mpi_req() << "\n";
MPI_Wait(&req.mpi_req(), MPI_STATUS_IGNORE);
for (auto &f : req.record_->postWaits_) {
f();
Expand All @@ -73,7 +72,6 @@ inline void wait(Req<Mpi> &req) {
}

inline void wait_all(std::vector<Req<Mpi>> &reqs) {
std::cerr << __FILE__ << ":" << __LINE__ << " wait all\n";
for (Req<Mpi> &req : reqs) {
wait(req);
}
Expand Down

0 comments on commit cc3fcfc

Please sign in to comment.