mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 07:18:17 +02:00
i965: Add Gen8+ sys_vars for generated OA code
In preparation for adding XML OA metric set descriptions for Gen 8 and 9 which will result in auto generated code that depends on a number of new system variables ($EuSubslicesTotalCount, $EuThreadsCount and $SliceMask) this adds corresponding members to brw->perf.sys_vars. Signed-off-by: Robert Bragg <robert@sixbynine.org> Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
7dd20bc3ee
commit
e74972a3a6
1 changed files with 3 additions and 0 deletions
|
|
@ -1097,6 +1097,9 @@ struct brw_context
|
|||
uint64_t timestamp_frequency; /** $GpuTimestampFrequency */
|
||||
uint64_t n_eus; /** $EuCoresTotalCount */
|
||||
uint64_t n_eu_slices; /** $EuSlicesTotalCount */
|
||||
uint64_t n_eu_sub_slices; /** $EuSubslicesTotalCount */
|
||||
uint64_t eu_threads_count; /** $EuThreadsCount */
|
||||
uint64_t slice_mask; /** $SliceMask */
|
||||
uint64_t subslice_mask; /** $SubsliceMask */
|
||||
uint64_t gt_min_freq; /** $GpuMinFrequency */
|
||||
uint64_t gt_max_freq; /** $GpuMaxFrequency */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue