Skip to content

Commit

Permalink
remove debug printout
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Yakubov committed Dec 14, 2016
1 parent 28777f1 commit f283353
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/radiationDamageMPI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -323,9 +323,6 @@ static void master_diffract(mpi::communicator* comm, opt::variables_map vm) {
// Trigger calculation on slave.
comm->send(status.source(), 0, &ntask, 1);
}

// Print progress.
std::cout << "Launched " << ntask+1 << " of " << ntasks << " total tasks." << std::endl;
}

// Final send.
Expand Down Expand Up @@ -382,9 +379,7 @@ static void slave_diffract(mpi::communicator* comm, opt::variables_map vm) {
while (true){
comm->recv(master, 0, counter);
if (counter < 0) return;
std::clog << "Starting pattern #"<<counter+1<<" on rank " << comm->rank() <<"."<< std::endl;
make1Diffr(myQuaternions,counter,vm,outputName);
std::clog << "Pattern #"<<counter+1<<" completed on rank " << comm->rank() <<"." << std::endl;
comm->send(master, 0, &counter, 1);
}
}
Expand Down

0 comments on commit f283353

Please sign in to comment.