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

[DO NOT MERGE] cudagraph: use cuda dynamic parallelism to dispatch kernels #288

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

yzh119
Copy link
Collaborator

@yzh119 yzh119 commented Jun 7, 2024

Background

FlashInfer will dispatch to different kernels depending on input shapes, which is not cuda-graph friendly at the moment.
CUDA 12.4 announced conditional nodes in CUDA Graphs, and it will take some time for PyTorch to fully support this feature (capture conditional nodes).

Dynamic Parallelism

In #187 , @AgrawalAmey propose to use CUDA's Dynamic Parallelism feature to dispatch to different child kernels from a parent launcher kernel. We don't need to capture conditional nodes in this way.

Discussion

This PR implements the dynamic parallelism launcher, however, we need to enable -rdc(relocatable-device-code) in compiler options to support dynamic parallelism, which introduce some non-negligible runtime overhead for small kernels (there are some discussions in nvidia forum).

Considering the potential negative consequence of enabling rdc (e.g. performance degradation), I'll hold this PR and turn to use alternative approach (which do not require dispatching) to support CUDA Graph. We won't merge this PR at the moment and we welcome discussions.

@AgrawalAmey
Copy link

This is really fascinating! Curious to know about the alternate approach. Let me know if I can help in anyway. Thanks!

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.

None yet

2 participants