-
- Notifications
You must be signed in to change notification settings - Fork 11k
[Bugfix] Handle process_weights_after_loading for QKVCrossParallelLinear #15328
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
Signed-off-by: Isotr0py <2037008807@qq.com>
| 👋 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 🚀 |
Signed-off-by: Isotr0py <2037008807@qq.com>
| @gshtras Can you check if this PR can fix the Mllama FP8 regression issue? I can generate reasonable outputs with neuralmagic/Llama-3.2-11B-Vision-Instruct-FP8-dynamic, but not amd/Llama-3.2-11B-Vision-Instruct-FP8-KV. I'm not sure if it's due to hardware difference or something other, because I can't generate reasonable outputs from this checkpoint with an earlier commit (ec79b67) before |
Signed-off-by: Isotr0py <2037008807@qq.com>
| Thanks for the fix! |
This fixes the weight loading, but there are also runtime issues in attention now, since 77a318b |
Hmmm, that's weird. I can run this model without any errors, but the problem is that the output hidden states will contain NaN, causing model outputs all "!". |
Possibly hardware related, to clarify, I'm checking with V0 on a MI300X machine. |
So that is due to an issue with the graph mode, which shouldn't be used on ROCm and is addressed in #15413 |
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.
I generally think this looks fine, but I'd like someone with more experience in this part of the codebase to take a look. @robertgshaw2-redhat @tlrmchlsmth @mgoin
…Linear` (vllm-project#15328) Signed-off-by: Isotr0py <2037008807@qq.com> Signed-off-by: Yang Wang <elainewy@meta.com>
…Linear` (vllm-project#15328) Signed-off-by: Isotr0py <2037008807@qq.com>
…Linear` (vllm-project#15328) Signed-off-by: Isotr0py <2037008807@qq.com>
…Linear` (vllm-project#15328) Signed-off-by: Isotr0py <2037008807@qq.com> Signed-off-by: Mu Huai <tianbowen.tbw@antgroup.com>
FIX #14545 (comment)