Skip to content

Commit

Permalink
Fix block dim limit in gpu_kernel_tiling_test
Browse files Browse the repository at this point in the history
  • Loading branch information
mmakevic-amd committed Nov 14, 2024
1 parent 3ac1ead commit ed3e40f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ TEST_F(GpuKernelTilingTest, ReductionInputTooLarge) {
EXPECT_THAT(status.message(),
::testing::ContainsRegex(
"Kernel '.*' launch needs more blocks [(]4294967296, 1[)] "
"than allowed by hardware [(]2147483647, 65535[)]"));
"than allowed by hardware [(]2147483647, 65536[)]"));
}

} // namespace
Expand Down

0 comments on commit ed3e40f

Please sign in to comment.