Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rework shader resource hazard tracking #4691

Merged
merged 18 commits into from
Feb 19, 2025
Merged

Conversation

doitsujin
Copy link
Owner

@doitsujin doitsujin commented Feb 15, 2025

Needs a lot, and I mean a lot of testing both for perf regressions as well as graphical issues, especially in "modern" D3D11 games.

This does a couple of things all at once:

  • There was a bug where some write-after-read scenarios weren't detected properly, this should now be fixed.
  • Graphics shaders writing UAVs no longer force redundant barriers, except for the very first draw where a resource is written.
    This should make things suck a bit less out of the box, especially if a game correctly uses UAV overlap anyway on graphics UAVs but does not write them every draw, e.g. God of War. At the same time, tracking only resources that are known to be used as graphics UAV avoids CPU overhead in games that don't need this.
  • Checking hazards and emitting barriers are now decoupled from each other, this avoids an entire iteration over bound resources and makes this slightly more CPU-efficient, even for compute shaders.
  • The d3d11.ignoreGraphicsBarriers option got replaced with an option to selectively enable UAV overlap only for graphics.
    Behaviour isn't too different from before, but write <-> read-only scenarios will now emit a barrier. The new option is also more robust w.r.t. transform feedback.
  • NVAPI UAVOverlap behaviour should more closely match expected behaviour in that we now also allow read-modify-write operations to be unsynchronized.

@doitsujin doitsujin force-pushed the shader-barrier-rework branch 2 times, most recently from 6276ae0 to 7765b32 Compare February 15, 2025 12:44
@doitsujin doitsujin force-pushed the shader-barrier-rework branch 4 times, most recently from 0e7c233 to 60c341c Compare February 17, 2025 00:37
Avoids having to insert redundant barriers when the app does UAV rendering.
Turns out we've had broken write-after-read checks for a while.
Less nuclear approach that hopefully works just as well in practice.
Not like anybody uses this feature, but we need to both check for
hazards and make sure the SO counter actually gets tracked. Use
the existing draw buffer mechanism for this.
Avoids keeping draw buffers alive when the app stops using indirect
draws. Unlikely to have caused issues in practice, but draw buffers
are not part of the API state to begin with.
If the app explicitly enables UAV overlap, don't synchronize
back-to-back read-modify-write operations to the same UAV either.
@doitsujin doitsujin force-pushed the shader-barrier-rework branch from 60c341c to 73fccba Compare February 18, 2025 14:38
@doitsujin doitsujin merged commit 19361c9 into master Feb 19, 2025
8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant