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

[cuda] Avoid sorting descriptors in stream command buffer #15437

Merged
merged 2 commits into from
Nov 14, 2023

Commits on Nov 6, 2023

  1. [cuda] Avoid sorting descriptors in stream command buffer

    This commit changes the stream command buffer to keep track of a fixed
    list of descriptor sets. This simplifies the logic of pushing
    descriptors/constants; we only perform kernel parameter serialization at
    the dispatch time. This means we don't pay the overhead if multiple push
    descriptor/constant commands are issued before dispatching. Also we
    don't need to sort descriptors anymore.
    antiagainst committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    127e101 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2023

  1. Configuration menu
    Copy the full SHA
    82e99f6 View commit details
    Browse the repository at this point in the history