Skip to content

Commit

Permalink
reanme again
Browse files Browse the repository at this point in the history
  • Loading branch information
lroberts36 committed Nov 15, 2024
1 parent 06231e1 commit b14432f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/bvals/comms/coalesced_buffers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ bool CoalescedBuffersRank::TryReceiveBufInfo() {
}

//----------------------------------------------------------------------------------------
void CoalescedBuffersRank::ResolveAndSendCoalescedBufferInfo() {
void CoalescedBuffersRank::ResolveAndSendBufInfo() {
// First calculate the total size of the message
int total_buffers{0};
for (auto &[partition, coalesced_buf] : coalesced_bufs)
Expand Down Expand Up @@ -436,7 +436,7 @@ void CoalescedComms::AddRecvBuffer(MeshBlock *pmb, const NeighborBlock &nb,
//----------------------------------------------------------------------------------------
void CoalescedComms::ResolveAndSendSendBuffers() {
for (auto &[id, buf] : coalesced_send_buffers)
buf.ResolveAndSendCoalescedBufferInfo();
buf.ResolveAndSendBufInfo();
}

//----------------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/bvals/comms/coalesced_buffers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ struct CoalescedBuffersRank {

bool TryReceiveBufInfo();

void ResolveAndSendCoalescedBufferInfo();
void ResolveAndSendBufInfo();

void PackAndSend(MeshData<Real> *pmd);

Expand Down

0 comments on commit b14432f

Please sign in to comment.