From fcf2649f98224ac3f12d4dca30742156ed038424 Mon Sep 17 00:00:00 2001 From: Jonah Miller Date: Wed, 22 May 2024 11:33:11 -0600 Subject: [PATCH 1/3] create tag manually --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 1f6b7b72a594..112f13ce4322 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -78,7 +78,7 @@ else() endif() if (${PAR_LOOP_INNER_LAYOUT} STREQUAL "TVR_INNER_LOOP") - set(PAR_LOOP_INNER_LAYOUT_TAG inner_loop_pattern_tvr_tag) + set(PAR_LOOP_INNER_LAYOUT_TAG InnerLoopPatternTVR()) elseif (${PAR_LOOP_INNER_LAYOUT} STREQUAL "SIMDFOR_INNER_LOOP") set(PAR_LOOP_INNER_LAYOUT_TAG inner_loop_pattern_simdfor_tag) else() From f37852c32cad8dc2e3d9062afe872b0b675914a8 Mon Sep 17 00:00:00 2001 From: Jonah Miller Date: Wed, 22 May 2024 11:37:41 -0600 Subject: [PATCH 2/3] CHANGELOG --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2775c9a4dea9..4d000f0ffda3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ - [[PR 1004]](https://github.com/parthenon-hpc-lab/parthenon/pull/1004) Allow parameter modification from an input file for restarts ### Fixed (not changing behavior/API/variables/...) +- [[PR 1087]](https://github.com/parthenon-hpc-lab/parthenon/pull/1087) Make sure InnerLoopPatternTVR is resolved on device properly when it is the default loop pattern - [[PR 1071]](https://github.com/parthenon-hpc-lab/parthenon/pull/1070) Fix bug in static mesh refinement related to redefinition of Mesh::root_level - [[PR 1073]](https://github.com/parthenon-hpc-lab/parthenon/pull/1073) Fix bug in AMR and sparse restarts - [[PR 1070]](https://github.com/parthenon-hpc-lab/parthenon/pull/1070) Correctly exclude flux vars from searches by default From 4225d1b11d27a2df49185a870e1f98e9d8afcf11 Mon Sep 17 00:00:00 2001 From: Jonah Miller Date: Wed, 22 May 2024 11:40:43 -0600 Subject: [PATCH 3/3] need quotes --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 112f13ce4322..988a1ebc5a1f 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -78,7 +78,7 @@ else() endif() if (${PAR_LOOP_INNER_LAYOUT} STREQUAL "TVR_INNER_LOOP") - set(PAR_LOOP_INNER_LAYOUT_TAG InnerLoopPatternTVR()) + set(PAR_LOOP_INNER_LAYOUT_TAG "InnerLoopPatternTVR()") elseif (${PAR_LOOP_INNER_LAYOUT} STREQUAL "SIMDFOR_INNER_LOOP") set(PAR_LOOP_INNER_LAYOUT_TAG inner_loop_pattern_simdfor_tag) else()