* [Bug 86969] _drm_intel_gem_bo_references() function takes half the CPU with Witcher2 game
@ 2014-12-03 11:30 bugzilla-daemon
2014-12-03 11:54 ` bugzilla-daemon
2014-12-03 12:13 ` bugzilla-daemon
0 siblings, 2 replies; 3+ messages in thread
From: bugzilla-daemon @ 2014-12-03 11:30 UTC (permalink / raw)
To: dri-devel
[-- Attachment #1.1: Type: text/plain, Size: 3945 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=86969
Bug ID: 86969
Summary: _drm_intel_gem_bo_references() function takes half the
CPU with Witcher2 game
Product: DRI
Version: unspecified
Hardware: Other
OS: All
Status: NEW
Keywords: have-backtrace
Severity: normal
Priority: medium
Component: libdrm
Assignee: dri-devel@lists.freedesktop.org
Reporter: eero.t.tamminen@intel.com
CC: currojerez@riseup.net
Created attachment 110404
--> https://bugs.freedesktop.org/attachment.cgi?id=110404&action=edit
hack/test for alternate drm_intel_gem_bo_references() semantics
Setup:
- HSW GT3e in desktop case
- Ubuntu 14.10 64-bit (kernel 3.16, Xorg 1.16)
- Latest libdrm & Mesa 32-bit builds (2014-11-07)
- Witcher2 game from Steam (32-bit)
Steps:
- Start Witcher2 with latest Mesa
- Select FullHD resolution and highest generic gfx option, then disable
anti-aliasing & ubersampling from the advanced options
- Select "Arena" option from the main menu
- After animation stops, click through "discussion" and pan around with mouse
Results:
- When panning around, some orientations show 100% (single) CPU utilization.
- "perf" reports (nearly) *half* of the CPU consumption to happen in (very
small & recursive) libdrm "_drm_intel_gem_bo_references" function.
Analysis:
Only caller of "_drm_intel_gem_bo_references" is the exported
"drm_intel_gem_bo_references" function. Tracing the calls to that, reveals it
to be called from Mesa gen6_check_query() function. [1]
Removing libdrm _drm_intel_gem_bo_references() CPU bottleneck by doing flushes
unconditionally in gen6_check_query() removed most of the CPU consumption and
verifies the "perf" finding. However, those extra flushes made performance
marginally worse.
Printing statistics from resolving counts showed that for Witcher2, largest
relocation count in _drm_intel_gem_bo_references() was 590, but ~97% of the
calls had zero relocation counts.
Another test was changing the semantics of "drm_intel_gem_bo_references". This
also removed most of the Witcher2 CPU consumption, potentially with speed
improvement. *On the test machine*, Witcher2 isn't CPU bound despite ~100% CPU
load, so CPU usage doesn't directly affect that. *However*, on a temperature
limited machine (e.g. laptop with GT3), this could have clear performance
impact as the lowered CPU consumption may allow GPU to run at higher clock
speed. Power usage should at least be effected.
Attached is patch/hack (by Fransisco Jerez) for testing this.
Conclusion:
There could be two separate functions, with slightly different semantics. One
that is fast and does something similar to what Fransisco proposed and which
can be used by (Mesa) functions that don't need more accurate information, and
the current "libdrm _drm_intel_gem_bo_references" function for those that do
need it.
---
[1] In addition to resource usage tracing, functracer can attach to a running
process and track calls to specified (exported) function:
https://maemo.gitorious.org/maemo-tools/functracer
According to it, the callers were:
194154 calls (for the trace period):
0xf601e722 drm_intel_bo_references() at intel_bufmgr.c:298
0xf63ca55c gen6_check_query() at gen6_queryobj.c:329
0xf6144e8d _mesa_GetQueryObjectiv() at queryobj.c:620
1133 calls:
0xf601e722 drm_intel_bo_references() at intel_bufmgr.c:298
0xf63ca34c gen6_queryobj_get_results() at gen6_queryobj.c:128
0xf63ca583 gen6_check_query() at gen6_queryobj.c:333
0xf6144e8d _mesa_GetQueryObjectiv() at queryobj.c:620
mp.h:17626
62 calls:
0xf601e722 drm_intel_bo_references() at intel_bufmgr.c:298
0xf62fe973 brw_map_buffer_range() at intel_buffer_objects.c:390
0xf60754b6 _mesa_MapBufferRange() at bufferobj.c:2178
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 5783 bytes --]
[-- Attachment #2: Type: text/plain, Size: 159 bytes --]
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Bug 86969] _drm_intel_gem_bo_references() function takes half the CPU with Witcher2 game
2014-12-03 11:30 [Bug 86969] _drm_intel_gem_bo_references() function takes half the CPU with Witcher2 game bugzilla-daemon
@ 2014-12-03 11:54 ` bugzilla-daemon
2014-12-03 12:13 ` bugzilla-daemon
1 sibling, 0 replies; 3+ messages in thread
From: bugzilla-daemon @ 2014-12-03 11:54 UTC (permalink / raw)
To: dri-devel
[-- Attachment #1.1: Type: text/plain, Size: 343 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=86969
--- Comment #1 from Chris Wilson <chris@chris-wilson.co.uk> ---
Created attachment 110405
--> https://bugs.freedesktop.org/attachment.cgi?id=110405&action=edit
Only emit flush the batch once after a pending query
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 1451 bytes --]
[-- Attachment #2: Type: text/plain, Size: 159 bytes --]
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Bug 86969] _drm_intel_gem_bo_references() function takes half the CPU with Witcher2 game
2014-12-03 11:30 [Bug 86969] _drm_intel_gem_bo_references() function takes half the CPU with Witcher2 game bugzilla-daemon
2014-12-03 11:54 ` bugzilla-daemon
@ 2014-12-03 12:13 ` bugzilla-daemon
1 sibling, 0 replies; 3+ messages in thread
From: bugzilla-daemon @ 2014-12-03 12:13 UTC (permalink / raw)
To: dri-devel
[-- Attachment #1.1: Type: text/plain, Size: 856 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=86969
Chris Wilson <chris@chris-wilson.co.uk> changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|libdrm |Drivers/DRI/i965
Version|unspecified |git
Assignee|dri-devel@lists.freedesktop |idr@freedesktop.org
|.org |
Product|DRI |Mesa
QA Contact| |intel-3d-bugs@lists.freedes
| |ktop.org
--- Comment #2 from Chris Wilson <chris@chris-wilson.co.uk> ---
Changing product to one that we have visibility over.
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 2618 bytes --]
[-- Attachment #2: Type: text/plain, Size: 159 bytes --]
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-12-03 12:13 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-03 11:30 [Bug 86969] _drm_intel_gem_bo_references() function takes half the CPU with Witcher2 game bugzilla-daemon
2014-12-03 11:54 ` bugzilla-daemon
2014-12-03 12:13 ` bugzilla-daemon
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.