Skip to content

Commit

Permalink
Merge pull request #4 from dfvankomen/master
Browse files Browse the repository at this point in the history
fix: commenting out debug statement in communication
  • Loading branch information
dfvankomen authored Dec 13, 2023
2 parents 3ae9fe2 + 513fe93 commit b8cd0c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/mesh.tcc
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ namespace ot
dof * nodeRecvCount[proc_id], proc_id,
m_uiCommTag, commActive, req);
ctx.getRequestList().push_back(req);
std::cout << this->getMPIRank() << ": receiving from proc " << proc_id << " a total of " << dof * nodeRecvCount[proc_id] << std::endl;
// std::cout << this->getMPIRank() << ": receiving from proc " << proc_id << " a total of " << dof * nodeRecvCount[proc_id] << std::endl;
}
}

Expand Down Expand Up @@ -726,7 +726,7 @@ namespace ot
dof * nodeSendCount[proc_id], proc_id,
m_uiCommTag, commActive, req);
ctx.getRequestList().push_back(req);
std::cout << this->getMPIRank() << ": sending from proc " << proc_id << " a total of " << dof * nodeSendOffset[proc_id] << std::endl;
// std::cout << this->getMPIRank() << ": sending from proc " << proc_id << " a total of " << dof * nodeSendOffset[proc_id] << std::endl;
}
}

Expand Down

0 comments on commit b8cd0c3

Please sign in to comment.