From 14c949a827eddc8064c5f4c85adadc7772653f61 Mon Sep 17 00:00:00 2001 From: cadolphe-amd Date: Fri, 19 Dec 2025 16:43:34 -0500 Subject: [PATCH] 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 --- .../catch/unit/cooperativeGrps/hipCGTiledPartitionType_old.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/hip-tests/catch/unit/cooperativeGrps/hipCGTiledPartitionType_old.cc b/projects/hip-tests/catch/unit/cooperativeGrps/hipCGTiledPartitionType_old.cc index 071f5e1443..1818c12f7c 100644 --- a/projects/hip-tests/catch/unit/cooperativeGrps/hipCGTiledPartitionType_old.cc +++ b/projects/hip-tests/catch/unit/cooperativeGrps/hipCGTiledPartitionType_old.cc @@ -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); }