-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
[PERF] Speedup of MRoPE prepare inputs #19939
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
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Vadim Gimpelson <[email protected]>
👋 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 🚀 |
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.
Summary of Changes
Hello @vadiklyutiy, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!
This pull request focuses on a targeted performance enhancement for the MRoPE input preparation within the model executor. By transitioning a critical position calculation from a PyTorch-based approach to a more efficient NumPy implementation, it aims to reduce latency in the _prepare_inputs
stage, thereby contributing to overall system throughput and responsiveness. The changes are designed to be minimally invasive while delivering substantial speedups in a key computational bottleneck.
Highlights
- Performance Optimization: This pull request introduces a significant performance optimization for the Multi-Query Rotary Positional Embedding (MRoPE) input preparation, specifically targeting the
get_next_input_positions_tensor
function which was identified as a bottleneck. - NumPy Integration: The core of the optimization involves refactoring the position calculation logic to leverage NumPy for improved efficiency. A new static method,
mrope_assign_next_input_positions
, has been added toMRotaryEmbedding
to perform these calculations directly using NumPy arrays. - GPU Model Runner Update: The
GPUModelRunner
has been updated to utilize this new NumPy-based method. This includes creating a NumPy view of the existing CPU-bound position tensor (self.mrope_positions_cpu.numpy()
) to allow direct, efficient assignment of calculated positions. - Measured Speedup: Performance benchmarks show a 2.59x speedup for the
_prepare_inputs
average time (from 3.869 ms to 1.496 ms) and an overall E2E performance improvement of approximately 1.5% on the Qwen2.5-VL-3B-Instruct model under high load.
Using Gemini Code Assist
The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.
Invoking Gemini
You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command>
or @gemini-code-assist <command>
. Below is a summary of the supported commands.
Feature | Command | Description |
---|---|---|
Code Review | /gemini review |
Performs a code review for the current pull request in its current state. |
Pull Request Summary | /gemini summary |
Provides a summary of the current pull request in its current state. |
Comment | @gemini-code-assist | Responds in comments when explicitly tagged, both in issue comments and review comments. |
Help | /gemini help |
Displays a list of available commands. |
Customization
To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/
folder in the base of the repository. Detailed instructions can be found here.
Limitations & Feedback
Gemini Code Assist is currently in preview and may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments to provide feedback.
You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.
Footnotes
-
Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution. ↩
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.
Code Review
This pull request aims to speed up the MRoPE
input preparation by leveraging numpy for calculations on CPU-pinned memory, which is a great approach. The changes look solid and the performance improvement is significant.
I have one suggestion to further optimize the new numpy-based function by using vectorized operations instead of nested Python loops. This should provide an additional performance boost and make the code more idiomatic.
Signed-off-by: Vadim Gimpelson <[email protected]>
# Faster version of `get_next_input_positions_tensor` | ||
@staticmethod | ||
def mrope_assign_next_input_positions(out: np.ndarray, out_offset: int, |
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.
Can we just replace get_next_input_positions_tensor
with this method?
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.
@WoosukKwon yes, sure. One small clarification. Do you mean just remove get_next_input_positions_tensor
or use the same name get_next_input_positions_tensor
for new function?
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.
@vadiklyutiy Yes. I think that will cause the minimal change to the codebase?
Essential Elements of an Effective PR Description Checklist
Purpose
Speedup of MRoPE prepare inputs.
#16881 got stuck for a while. I combined parts of #16881 and #17617 to minimize changes and brings sufficient speedup.
MRotaryEmbedding.get_next_input_positions_tensor
takes a lot of time. Use numpy to speedup it.Performance Test Result
I used
vllm serve Qwen/Qwen2.5-VL-3B-Instruct --disable-log-requests --no-enable-prefix-caching
as a server and
fib benchmark -rps 50 --input-token-distribution uniform 250 300 --output-token-distribution uniform 150 250 --num-of-imgs-per-req 1 --img-ratios-per-req 512x512 -n 1000 --base-url http://localhost:8000 --endpoint v1/chat/completions --backend openai-chat
to make workload (send 50 requests per sec with one 512x512 image per request).
I decorated
GPUModelRunner._prepare_inputs
with nvtx to measure the time._prepare_inputs
average timeBefore: 3.869 ms
With this PR: 1.487 ms (speedup 2.6x)
For info, with #17617: 2.511 ms
E2E performance improvement on Qwen2.5-VL-3B-Instruct with high load is around 1.5%.
cc @imkero @ywang96 @simon-mo