-
-
Notifications
You must be signed in to change notification settings - Fork 7.8k
[Kernel][Build/CI] Bump CUTLASS to 3.8 and add initializers for cutlass epilogues #13797
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
Conversation
👋 Hi! Thank you for contributing to the vLLM project. 💬 Join our developer Slack at https://slack.vllm.ai to discuss your PR in #pr-reviews, coordinate on features in #feat- channels, or join special interest groups in #sig- channels. Just a reminder: PRs would not trigger full CI run by default. Instead, it would only run Once the PR is approved and ready to go, your PR reviewer(s) can run CI to test the changes comprehensively before merging. To run CI, PR reviewers can either: Add 🚀 |
e4735cb
to
16ec63f
Compare
16ec63f
to
9c7ebce
Compare
@LucasWilkinson any idea? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The fix looks good. Exact same change is in #13798, but maybe this one lands first as it's smaller.
Go ahead and update CUTLASS to 3.8 in this PR?
Thanks, it is this one right? Line 250 in 4a8cfc7
btw noob question: why does the order of arguments seem to not matter? For example, for
shouldn't it be
? |
Signed-off-by: henrylhtsang <[email protected]>
9c7ebce
to
631643b
Compare
I think the argument order should matter and needs to be:
In this case argument 0 is |
Thanks Josh. also sharing the source https://github.com/NVIDIA/cutlass/blob/eefa171318b79cbe2e78514d4cce5cd0fe919d0c/include/cutlass/epilogue/fusion/sm90_callbacks_tma_warpspecialized.hpp#L57-L58
|
So I think this should be good to land |
…ss epilogues (vllm-project#13797) Signed-off-by: Louis Ulmer <[email protected]>
The original code was added in #9855. I am seeing errors like
when I moved to cutlass 3.8. I think it is due to https://github.com/NVIDIA/cutlass/blob/main/include/cute/atom/mma_traits_sm100.hpp#L49-L52, which are newly added for 3.8.
From my setup, this change works. Feel free to suggest other changes that can help resolve the errors and/or tests to do before merging.