From b2285024266e1dd8d58095826fbb6c5bc0401eb7 Mon Sep 17 00:00:00 2001 From: Philipp Grete Date: Fri, 16 Apr 2021 12:31:41 +0200 Subject: [PATCH] Adjust block size in OverlappingSpace instance tests to remain within Cuda/HIP limits --- CHANGELOG.md | 1 + tst/unit/kokkos_abstraction.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e9932f4a0bb0..b88acdbaf08d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ - [[PR 487]](https://github.com/lanl/parthenon/pull/487) Add default tiling matching `i` index range to MDRange loop pattern. ### Infrastructure (changes irrelevant to downstream codes) +- [[PR 490]](https://github.com/lanl/parthenon/pull/490) Adjust block size in OverlappingSpace instance tests to remain within Cuda/HIP limits - [[PR 488]](https://github.com/lanl/parthenon/pull/488) Update GitLab Dockerfile to use HDF5 version 1.10.7 ### Removed (removing behavior/API/varaibles/...) diff --git a/tst/unit/kokkos_abstraction.cpp b/tst/unit/kokkos_abstraction.cpp index dfaac5f2a454..05ba2ffcc4d5 100644 --- a/tst/unit/kokkos_abstraction.cpp +++ b/tst/unit/kokkos_abstraction.cpp @@ -631,7 +631,7 @@ template void test_wrapper_buffer_pack_overlapping_space_instances(const std::string &test_name) { auto default_exec_space = DevExecSpace(); - const int N = 32; // ~meshblock size + const int N = 24; // ~meshblock size const int M = 5; // ~nhydro const int nspaces = 8; // number of streams const int nghost = 2; // number of ghost zones