From b94b101555ea18e67b92678ab8ceb8c93c9cebb8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 20 Aug 2026 04:49:46 +0000 Subject: [PATCH 1/2] Initial plan From 5bc8cf5d18b6297522790f330b3785edeb0b21aa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 20 Aug 2026 04:51:02 +0000 Subject: [PATCH 2/2] Remove unused owned variable in FieldSerializer Serialize Co-authored-by: jacobmerson <2366140+jacobmerson@users.noreply.github.com> --- src/pcms/coupler/field_serializer.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/pcms/coupler/field_serializer.h b/src/pcms/coupler/field_serializer.h index 723929cf..42d148e6 100644 --- a/src/pcms/coupler/field_serializer.h +++ b/src/pcms/coupler/field_serializer.h @@ -19,9 +19,8 @@ class FieldSerializer Rank1View permutation) const { auto data = field.GetDOFHolderDataHost(); - auto owned = layout.GetOwnedHost(); - // The exchange plan is per DOF holder: owned[i] and permutation[i] are - // indexed by holder. All num_components components of a holder share its + // The exchange plan is per DOF holder: permutation[i] is indexed by holder. + // All num_components components of a holder share its // location, so they occupy one contiguous block permutation[i]*num_comp in // the wire buffer. if (buffer.size() > 0) {