SWDEV-420989 - Initialize tiled_info meta_group_rank and meta_group_size

Change-Id: I6792e928702d0fef81f18e74eaead3ad3a8fbb7b
This commit is contained in:
Ioannis Assiouras
2023-09-11 10:47:38 +01:00
committed by Maneesh Gupta
szülő f64ead62be
commit 43126bc19b
@@ -390,6 +390,8 @@ class coalesced_group : public thread_group {
coalesced_info.member_mask = member_mask; // Which threads are active
coalesced_info.size = __popcll(coalesced_info.member_mask); // How many threads are active
coalesced_info.tiled_info.is_tiled = false; // Not a partitioned group
coalesced_info.tiled_info.meta_group_rank = 0;
coalesced_info.tiled_info.meta_group_size = 1;
}
public: