2
0

SWDEV-572676 - adjust tile size to 32 in Unit_hipCGThreadBlockTileType for Navi4x (#2379)

* SWDEV-572676 - adjust tile size to 32 for Navi4x

* SWDEV-572676 - change tile size from fixed value to warp size
Este cometimento está contido em:
cadolphe-amd
2025-12-19 16:43:34 -05:00
cometido por GitHub
ascendente d552491985
cometimento 14c949a827
@@ -366,7 +366,7 @@ TEST_CASE("Unit_hipCGThreadBlockTileType") {
}
SECTION("Nested tile partition") {
unsigned int outer_tile_size = 64; // fixed outer tile size
unsigned int outer_tile_size = getWarpSize();
unsigned int inner_tile_size = GENERATE(2, 4, 8, 16, 32);
test_group_partition_nested(outer_tile_size, inner_tile_size, use_global_mem);
}