diff options
author | Lionel Landwerlin <[email protected]> | 2020-04-17 09:51:22 +0300 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2020-04-18 13:32:27 +0300 |
commit | f27c707585ccca0d61b0b688defb59598f37f8b1 (patch) | |
tree | a306f641b73e0b81bf1614d5c5c6deded7a1cec4 /src/intel | |
parent | 086ea1ac7ee41fbb6bd031bfdf281a7e276cfe7a (diff) |
anv: skip writing perfcntr in results on Gen12+
We were not capturing the register already so don't bother writing the
delta in the results (we were previously doing a delta between two 0
values).
v2: Fix unused function warning
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4586>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/vulkan/genX_query.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/intel/vulkan/genX_query.c b/src/intel/vulkan/genX_query.c index 82b48233c9a..ba7c1e94fe5 100644 --- a/src/intel/vulkan/genX_query.c +++ b/src/intel/vulkan/genX_query.c @@ -200,11 +200,13 @@ intel_perf_rpstart_offset(bool end) return 16 + (end ? sizeof(uint32_t) : 0); } +#if GEN_GEN >= 8 && GEN_GEN <= 11 static uint32_t intel_perf_counter(bool end) { return 24 + (end ? (2 * sizeof(uint64_t)) : 0); } +#endif static uint32_t intel_perf_mi_rpc_offset(bool end) @@ -394,9 +396,11 @@ VkResult genX(GetQueryPoolResults)( &device->info, &result, core_freq[0], core_freq[1]); +#if GEN_GEN >= 8 && GEN_GEN <= 11 gen_perf_query_mdapi_write_perfcntr(pData, stride, &device->info, query_data + intel_perf_counter(false), query_data + intel_perf_counter(true)); +#endif const uint64_t *marker = query_data + intel_perf_marker_offset(); gen_perf_query_mdapi_write_marker(pData, stride, &device->info, *marker); break; |