From d2e09cc4c03465443b069fcd8c2020f95fea743f Mon Sep 17 00:00:00 2001 From: Jonah Maxwell Miller Date: Tue, 21 Nov 2023 11:47:55 -0700 Subject: [PATCH 1/2] remove check that got reintroduced --- src/bvals/comms/bnd_info.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/bvals/comms/bnd_info.cpp b/src/bvals/comms/bnd_info.cpp index ce71b0f98953..3eaeb16091e9 100644 --- a/src/bvals/comms/bnd_info.cpp +++ b/src/bvals/comms/bnd_info.cpp @@ -261,7 +261,6 @@ BndInfo BndInfo::GetSetBndInfo(MeshBlock *pmb, const NeighborBlock &nb, auto buf_state = buf->GetState(); if (buf_state == BufferState::received) { out.buf_allocated = true; - PARTHENON_DEBUG_REQUIRE(v->IsAllocated(), "Variable must be allocated to receive"); } else if (buf_state == BufferState::received_null) { out.buf_allocated = false; } else { From e7a67254e2b77fa280ab49f7200a1564ef54ea6b Mon Sep 17 00:00:00 2001 From: Jonah Maxwell Miller Date: Tue, 21 Nov 2023 11:55:04 -0700 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5217f6110f7d..fd775de80bb3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ ### Changed (changing behavior/API/variables/...) ### Fixed (not changing behavior/API/variables/...) +- [[PR978]](https://github.com/parthenon-hpc-lab/parthenon/pull/978) remove erroneous sparse check ### Infrastructure (changes irrelevant to downstream codes)