diff options
author | Lionel Landwerlin <[email protected]> | 2017-11-09 16:48:45 +0000 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2017-11-28 13:34:04 +0000 |
commit | a543ae4c2a75b5dfe956309b32f3ece1f0233f5b (patch) | |
tree | 9f778e52ff684c288a600c8580d18d5e1095de79 /src/mesa/drivers/dri/i965/brw_oa_sklgt4.xml | |
parent | 064a4831e322351a0bf53b8e26842c6e819b59c9 (diff) |
i965: fix time elapsed counter equations in VME/Media configs
There was a mistake just in those metric sets. We probably didn't
noticed because they're not really interesting for 3D workloads.
Signed-off-by: Lionel Landwerlin <[email protected]>
Acked-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_oa_sklgt4.xml')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_oa_sklgt4.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_oa_sklgt4.xml b/src/mesa/drivers/dri/i965/brw_oa_sklgt4.xml index e2a0f43c2e2..30a30065ed9 100644 --- a/src/mesa/drivers/dri/i965/brw_oa_sklgt4.xml +++ b/src/mesa/drivers/dri/i965/brw_oa_sklgt4.xml @@ -10139,7 +10139,7 @@ <counter name="GPU Time Elapsed" description="Time elapsed on the GPU during the measurement." data_type="uint64" - equation="GPU_TIME 0 READ 1000000000 UMUL $GpuTimestampFrequency UDIV 1000000000 UMUL $GpuTimestampFrequency UDIV" + equation="GPU_TIME 0 READ 1000000000 UMUL $GpuTimestampFrequency UDIV" underscore_name="gpu_time" units="ns" symbol_name="GpuTime" @@ -10153,7 +10153,7 @@ description="Average GPU Core Frequency in the measurement." data_type="uint64" max_equation="$GpuMaxFrequency" - equation="$GpuCoreClocks 1000000000 UMUL GPU_TIME 0 READ 1000000000 UMUL $GpuTimestampFrequency UDIV UDIV" + equation="$GpuCoreClocks 1000000000 UMUL $GpuTime UDIV" underscore_name="avg_gpu_core_frequency" units="hz" symbol_name="AvgGpuCoreFrequency" |