Skip to content

Commit

Permalink
Merge pull request #940 from parthenon-hpc-lab/pgrete-patch-bound_type
Browse files Browse the repository at this point in the history
Fix typo in bound comm
  • Loading branch information
lroberts36 authored Oct 4, 2023
2 parents c75ce20 + d7e736b commit 2a8a2f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bvals/comms/boundary_communication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ template <BoundaryType bound_type>
TaskStatus StartReceiveBoundBufs(std::shared_ptr<MeshData<Real>> &md) {
Kokkos::Profiling::pushRegion("Task_StartReceiveBoundBufs");
Mesh *pmesh = md->GetMeshPointer();
auto &cache = md->GetBvarsCache().GetSubCache(BoundaryType::flxcor_send, false);
auto &cache = md->GetBvarsCache().GetSubCache(bound_type, false);
if (cache.buf_vec.size() == 0)
InitializeBufferCache<bound_type>(md, &(pmesh->boundary_comm_map), &cache, ReceiveKey,
false);
Expand Down

0 comments on commit 2a8a2f5

Please sign in to comment.