Skip to content

Commit

Permalink
Adjust block size in OverlappingSpace instance tests to remain within…
Browse files Browse the repository at this point in the history
… Cuda/HIP limits
  • Loading branch information
pgrete committed Apr 16, 2021
1 parent 2617728 commit b228502
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 b228502

Please sign in to comment.