Summary: | [SKL/BDW GT2] large perf regression in TessMark | ||
---|---|---|---|
Product: | Mesa | Reporter: | Eero Tamminen <eero.t.tamminen> |
Component: | Drivers/DRI/i965 | Assignee: | Kenneth Graunke <kenneth> |
Status: | VERIFIED FIXED | QA Contact: | Intel 3D Bugs Mailing List <intel-3d-bugs> |
Severity: | normal | ||
Priority: | medium | ||
Version: | git | ||
Hardware: | Other | ||
OS: | All | ||
Whiteboard: | |||
i915 platform: | i915 features: |
Description
Eero Tamminen
2016-11-22 12:24:49 UTC
(In reply to Eero Tamminen from comment #0) > With 1/2 FullHD window, the drop is ~27%. Correction, with 13336x768 (HalfHD) it's ~23%, with 1024x576 it's 27% drop. Thank you for catching this! I made a mistake in dividing out the remaining space, causing us to underallocate VS/HS/DS and waste the rest of the URB. Patch to come as soon as Jenkins finishes testing it. Fixed by: commit 5da84a7e120d1df848531c6e7eb60340ac4dc43c Author: Kenneth Graunke <kenneth@whitecape.org> Date: Wed Nov 23 12:24:22 2016 -0800 i965: Fix a mistake from porting the URB allocation code to arrays. Commit 6d416bcd846a49414f210cd761789156c37a7b3e (i965: Use arrays in Gen7+ URB code.) introduced a regression which caused us to fail to allocate all of our URB space. - total_wants -= ds_wants; + total_wants -= additional; The new line should have been total_wants -= wants[i]. Fixes a large performance regression in TessMark. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=98815 Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Matt Turner <mattst88@gmail.com> Thanks, verified! TessMark SKL GT2 perf is back where it was, as are SynMark terrain tessellation tests perf (don't have data yet for BDW GT2). |
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.