-
-
Notifications
You must be signed in to change notification settings - Fork 6.2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
[Bugfix][Build/CI] Fix sparse CUTLASS compilation on CUDA [12.0, 12.2) #11311
[Bugfix][Build/CI] Fix sparse CUTLASS compilation on CUDA [12.0, 12.2) #11311
Conversation
👋 Hi! Thank you for contributing to the vLLM project. 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 do one of these:
🚀 |
Signed-off-by: Tyler Michael Smith <tyler@neuralmagic.com>
4b8652d
to
fbc974d
Compare
Signed-off-by: Tyler Michael Smith <tyler@neuralmagic.com>
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.
Nice work with clear messages and comments, thanks
vllm-project#11311) Signed-off-by: Tyler Michael Smith <tyler@neuralmagic.com>
vllm-project#11311) Signed-off-by: Tyler Michael Smith <tyler@neuralmagic.com>
vllm-project#11311) Signed-off-by: Tyler Michael Smith <tyler@neuralmagic.com>
vllm-project#11311) Signed-off-by: Tyler Michael Smith <tyler@neuralmagic.com> Signed-off-by: Bowen Wang <abmfy@icloud.com>
vllm-project#11311) Signed-off-by: Tyler Michael Smith <tyler@neuralmagic.com>
vllm-project#11311) Signed-off-by: Tyler Michael Smith <tyler@neuralmagic.com>
We were checking against CUDA 12.0 when we should have been checking for 12.2
https://github.com/NVIDIA/cutlass/blob/e1cd8c7866dd6de02b66a89879795e7d7301aacc/examples/62_hopper_sparse_gemm/62_hopper_sparse_gemm.cu#L553-L559
I also plumbed up a
cutlass_sparse_scaled_mm_supported
function so we can fail more gracefully if the kernel is not supported.