mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 20:18:12 +02:00
tu: Remove use of fd_perfcntr_type
At some point everything became "UINT64, AVERAGE". So no need to get this from the table. Signed-off-by: Rob Clark <rob.clark@oss.qualcomm.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40522>
This commit is contained in:
parent
965e28ff8a
commit
7ceb8dcef4
1 changed files with 3 additions and 8 deletions
|
|
@ -698,10 +698,7 @@ get_query_pool_results(struct tu_device *device,
|
|||
}
|
||||
|
||||
if (is_perf_query_raw(pool)) {
|
||||
struct tu_perf_query_raw *perf_query = &pool->perf_query.raw;
|
||||
struct tu_perf_query_raw_data *data = &perf_query->data[k];
|
||||
VkPerformanceCounterStorageKHR storage =
|
||||
fd_perfcntr_type_to_vk_storage[perf_query->perf_group[data->gid].countables[data->cid].query_type];
|
||||
VkPerformanceCounterStorageKHR storage = VK_PERFORMANCE_COUNTER_STORAGE_UINT64_KHR;
|
||||
write_performance_query_value_cpu(result_base, k, storage, result);
|
||||
} else if (is_perf_query_derived(pool)) {
|
||||
struct tu_perf_query_derived *perf_query = &pool->perf_query.derived;
|
||||
|
|
@ -2243,10 +2240,8 @@ tu_EnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR(
|
|||
for (int j = 0; j < group[i].num_countables; j++) {
|
||||
vk_outarray_append_typed(VkPerformanceCounterKHR, &out, counter) {
|
||||
counter->scope = VK_PERFORMANCE_COUNTER_SCOPE_COMMAND_BUFFER_KHR;
|
||||
counter->unit =
|
||||
fd_perfcntr_type_to_vk_unit[group[i].countables[j].query_type];
|
||||
counter->storage =
|
||||
fd_perfcntr_type_to_vk_storage[group[i].countables[j].query_type];
|
||||
counter->unit = VK_PERFORMANCE_COUNTER_UNIT_GENERIC_KHR;
|
||||
counter->storage = VK_PERFORMANCE_COUNTER_STORAGE_UINT64_KHR;
|
||||
|
||||
unsigned char blake3_result[BLAKE3_KEY_LEN];
|
||||
_mesa_blake3_compute(group[i].countables[j].name,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue