i965: perf: fix a counter return type on hsw

The equation code computes a float (percentage) yet the return type
was an uint64_t.

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Lionel Landwerlin 2018-03-13 11:45:12 +00:00
parent 604cac9f73
commit e9a9e85948

View file

@ -1669,7 +1669,7 @@
/>
<counter name="VS EU Stall"
description="The percentage of time in which vertex shaders were stalled on the EUs."
data_type="uint64"
data_type="float"
max_equation="100"
equation="A 3 READ $EuCoresTotalCount UDIV 100 UMUL $GpuCoreClocks FDIV"
underscore_name="vs_eu_stall"