Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion test/base/kernel_launch_generic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,9 @@ void run2d_col_reduction(std::shared_ptr<gko::EXEC_TYPE> exec)
for (auto num_rows : {0, 10, 100, 1000, 10000}) {
// check different edge cases: subwarp sizes, blocked mode
for (auto num_cols :
{0, 1, 2, 3, 4, 5, 7, 8, 9, 16, 31, 32, 63, 127, 128, 129}) {
{0, 1, 2, 3, 4, 5, 7, 8, 9, 16, 31, 32, 63, 127, 128, 129,
65535 * 128 +
1 /* check we do not exceed the gridDim.y limit */}) {
SCOPED_TRACE(std::to_string(num_rows) + " rows, " +
std::to_string(num_cols) + " cols");
gko::array<int64> host_ref{exec->get_master(),
Expand Down
Loading