-
Notifications
You must be signed in to change notification settings - Fork 257
[Build] Move numba/quart to requirments and update DS baseline and sync graph typo fix #1121
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Signed-off-by: Yikun Jiang <yikunkero@gmail.com>
It's ready when all CI passed |
Signed-off-by: Yikun Jiang <yikunkero@gmail.com>
wangxiyuan
approved these changes
Jun 8, 2025
Yikun
commented
Jun 8, 2025
@@ -205,7 +205,7 @@ def __call__(self, *args) -> Any: | |||
entry.output = weak_ref_tensors(output) | |||
entry.aclgraph = aclgraph | |||
|
|||
compilation_counter.num_cudagraph_caputured += 1 | |||
compilation_counter.num_cudagraph_captured += 1 |
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.
if 0.9.0...
@@ -97,7 +97,7 @@ def test_simple_piecewise_compile(): | |||
num_piecewise_graphs_seen=5, # 2 * num_layers + 1 | |||
num_piecewise_capturable_graphs_seen=3, # 1 + num_layers | |||
num_backend_compilations=3, # num_piecewise_capturable_graphs_seen | |||
num_cudagraph_caputured= | |||
num_cudagraph_captured= |
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.
if 0.9.0
c786501
to
a18d381
Compare
Signed-off-by: Yikun Jiang <yikunkero@gmail.com>
wangxiyuan
approved these changes
Jun 8, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
long-term-test
enable long term test for PR
module:tests
ready
read for review
ready-for-test
start test by label for PR
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What this PR does / why we need it?
This patch also fix deepseek accuracy baseline which [bugfix] fix deeepseek accuracy #1118 was not addressed. According to https://huggingface.co/deepseek-ai/DeepSeek-V2-Lite the gsm8k is about
41.1
This also sync the vLLM upstream changes: vllm-project/vllm@eaa2e51
Does this PR introduce any user-facing change?
No
How was this patch tested?
CI passed
vllm ascend test (basic workflow)
vllm longterm test (spec decode)
Closes: #1120