Skip to content

Commit

Permalink
Merge pull request #490 from lanl/pgrete/tiling-unit-test-hotfix
Browse files Browse the repository at this point in the history
Hotfix: Adjust block size in OverlappingSpace instance tests
  • Loading branch information
Yurlungur authored Apr 16, 2021
2 parents 2617728 + b228502 commit 6151e40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/...)
Expand Down
2 changes: 1 addition & 1 deletion tst/unit/kokkos_abstraction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ template <class BufferPack>
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
Expand Down

0 comments on commit 6151e40

Please sign in to comment.