- 
                Notifications
    You must be signed in to change notification settings 
- Fork 530
[Test] Add nightly test for DeepSeek-V3.2-Exp #3908
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
| 👋 Hi! Thank you for contributing to the vLLM Ascend project. The following points will speed up your PR merge: 
 If CI fails, you can run linting and testing checks locally according Contributing and Testing. | 
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 adds nightly tests for the DeepSeek-V3.2-Exp model. The changes include a new single-node e2e test, a multi-node test configuration, and updates to the multi-node test runner script. My review identifies a critical issue in the multi-node YAML configuration where an incorrect model version is served without the necessary quantization flag, which would invalidate the test results. Additionally, I've pointed out several high-severity issues related to maintainability and potential for confusion, such as hardcoded values and typos in scripts and test files.
be74728    to
    da61f4f      
    Compare
  
    | This pull request has conflicts, please resolve those before we can evaluate the pull request. | 
Signed-off-by: hfadzxy <[email protected]>
da61f4f    to
    7156cbf      
    Compare
  
    Signed-off-by: hfadzxy <[email protected]>
7156cbf    to
    50d965b      
    Compare
  
    | OMP_NUM_THREADS: 100 | ||
| HCCL_BUFFSIZE: 1024 | ||
| SERVER_PORT: 8080 | ||
| disaggregated_prefill: | 
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 think you want to add multi-dp test cross 2 nodes for deepseekv3.2 right? so we should not pass disaggregated_prefill related config
| --data-parallel-rpc-port 13389 | ||
| --tensor-parallel-size 16 | ||
| --seed 1024 | ||
| --served-model-name deepseek_v3.2 | 
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.
| --served-model-name deepseek_v3.2 | 
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.
Since we use the model name instead of this short tag when checking if the service is running, passing this parameter will result in a timeout.
| --data-parallel-rpc-port 13389 | ||
| --tensor-parallel-size 16 | ||
| --seed 1024 | ||
| --served-model-name deepseek_v3.2 | 
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.
same
What this PR does / why we need it?
Add nightly test for DeepSeek-V3.2-Exp
Does this PR introduce any user-facing change?
How was this patch tested?