From c779a4ba090cf595f0d3b51f044e9cfc27096e6c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 20 Oct 2025 09:08:22 +0000 Subject: [PATCH 1/3] Update dependencies.json --- dependencies.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dependencies.json b/dependencies.json index ddaa752b40a..394d25f1639 100644 --- a/dependencies.json +++ b/dependencies.json @@ -3,7 +3,7 @@ "version_amrex": "25.10", "version_pyamrex": "25.10", "version_picsar": "25.06", - "commit_amrex": "546a888ef0417648b5086a13b3eb3cd13f185070", - "commit_pyamrex": "7aedc2500a155229bd0953bef857960302c93ac3", + "commit_amrex": "807c7a26649b386be243fd8dfb3c1fec481183ca", + "commit_pyamrex": "de24942c76ebc61ffaa184204c2491aebc357a07", "commit_picsar": "0c329e66010267662a82219f7de7abbd231463f4" } \ No newline at end of file From 84a0d1163d7caf8a11d85b0911332876cd2db3bc Mon Sep 17 00:00:00 2001 From: Edoardo Zoni Date: Mon, 20 Oct 2025 10:59:58 -0700 Subject: [PATCH 2/3] Pull pyAMReX bug fix --- dependencies.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dependencies.json b/dependencies.json index 394d25f1639..1ca54b1becd 100644 --- a/dependencies.json +++ b/dependencies.json @@ -4,6 +4,6 @@ "version_pyamrex": "25.10", "version_picsar": "25.06", "commit_amrex": "807c7a26649b386be243fd8dfb3c1fec481183ca", - "commit_pyamrex": "de24942c76ebc61ffaa184204c2491aebc357a07", + "commit_pyamrex": "01b3d520bfe6d35d42abf5e7fb16f08e47be6adc", "commit_picsar": "0c329e66010267662a82219f7de7abbd231463f4" } \ No newline at end of file From 4251fe3df6ef31b9f57778aaef296fa16a4f59da Mon Sep 17 00:00:00 2001 From: Edoardo Zoni Date: Tue, 21 Oct 2025 16:55:31 -0700 Subject: [PATCH 3/3] Fix uninitialized variable warning --- Source/Diagnostics/ReducedDiags/FieldProbe.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Diagnostics/ReducedDiags/FieldProbe.cpp b/Source/Diagnostics/ReducedDiags/FieldProbe.cpp index 281f9c2afa2..658dec3b4b3 100644 --- a/Source/Diagnostics/ReducedDiags/FieldProbe.cpp +++ b/Source/Diagnostics/ReducedDiags/FieldProbe.cpp @@ -161,7 +161,7 @@ FieldProbe::FieldProbe (const std::string& rd_name) // ensure assumption holds: we read the fields in the interpolation kernel as they are, // without further communication of guard/ghost/halo regions - int particle_shape; + int particle_shape = 0; const ParmParse pp_algo("algo"); utils::parser::getWithParser(pp_algo, "particle_shape", particle_shape); WARPX_ALWAYS_ASSERT_WITH_MESSAGE(interp_order <= particle_shape ,