mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-31 12:00:12 +01:00
ac/rgp: Only report double the prims per clock on GFX10.
Misinterpreted review comment.
Fixes: 4ded99f99d ("ac/rgp: report the number of primitives per clock")
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9312>
This commit is contained in:
parent
f66a7240f9
commit
5acc115bd8
1 changed files with 1 additions and 1 deletions
|
|
@ -487,7 +487,7 @@ static void ac_fill_sqtt_asic_info(struct radeon_info *rad_info,
|
|||
chunk->alu_per_clock = 0.0;
|
||||
chunk->texture_per_clock = 0.0;
|
||||
chunk->prims_per_clock = rad_info->max_se;
|
||||
if (rad_info->chip_class >= GFX10)
|
||||
if (rad_info->chip_class == GFX10)
|
||||
chunk->prims_per_clock *= 2;
|
||||
chunk->pixels_per_clock = 0.0;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue