Removed unused field (#774)

* Removed unused field

* Formatting
This commit is contained in:
Giovanni Lenzi Baraldi
2024-04-16 23:34:47 -03:00
zatwierdzone przez GitHub
rodzic 87d549c8a9
commit fed296daed
2 zmienionych plików z 4 dodań i 4 usunięć
@@ -86,9 +86,9 @@ typedef union
{
uint8_t valid : 1;
uint8_t type : 4; // 0=reserved, 1=hosttrap, 2=stochastic, 3=perfcounter, >=4 possible v2?
uint8_t has_stall_reason : 1;
uint8_t has_wave_cnt : 1;
uint8_t has_memory_counter : 1;
uint8_t has_stall_reason : 1;
uint8_t has_wave_cnt : 1;
uint8_t reserved : 1;
};
uint8_t raw;
} pcsample_header_v1_t;
@@ -343,7 +343,7 @@ class WaveOtherFieldsTest : public WaveSnapTest
{
assert(parsed[0][i].flags.has_stall_reason == true);
assert(parsed[0][i].flags.has_wave_cnt == true);
assert(parsed[0][i].flags.has_memory_counter == false);
assert(parsed[0][i].flags.reserved == false);
assert(compare[i].exec_mask == parsed[0][i].exec_mask);
assert(compare[i].workgroup_id_x == parsed[0][i].workgroup_id_x);