Skip to content

Commit

Permalink
minor fix to dist precondition
Browse files Browse the repository at this point in the history
  • Loading branch information
albestro committed Sep 29, 2023
1 parent 0a71bee commit 4abd8d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/dlaf/matrix/distribution.h
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ class Distribution {

template <Coord rc>
SizeType tileSize(SizeType global_tile) const noexcept {
DLAF_ASSERT_HEAVY(0 <= global_tile && global_tile <= global_nr_tiles_.get<rc>(), global_tile,
DLAF_ASSERT_HEAVY(0 <= global_tile && global_tile < global_nr_tiles_.get<rc>(), global_tile,
global_nr_tiles_.get<rc>());
SizeType n = size_.get<rc>();
SizeType nb = tile_size_.get<rc>();
Expand Down

0 comments on commit 4abd8d7

Please sign in to comment.