- 
                Notifications
    
You must be signed in to change notification settings  - Fork 615
 
[ci] refactor longtext benchmark #4087
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
| turbomind_chat_model: | ||
| - Qwen/Qwen3-30B-A3B | ||
| - Qwen/Qwen3-235B-A22B | ||
| - Qwen/Qwen3-32B | ||
| - Qwen/Qwen3-8B | ||
| - Qwen/Qwen3-0.6B | 
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.
turbomind doesn't support ascend
| turbomind_vl_model: | ||
| - internlm/Intern-S1 | ||
| - internlm/Intern-S1-mini | ||
| - OpenGVLab/InternVL3_5-2B | ||
| - OpenGVLab/InternVL3_5-8B | ||
| - OpenGVLab/InternVL3_5-38B | ||
| 
               | 
          
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.
turbomind doesn't support ascend
| turbomind_base_model: | ||
| - Qwen/Qwen3-0.6B | ||
| 
               | 
          
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.
turbomind doesn't support ascend
| turbomind_quatization: | ||
| no_awq: | ||
| - Qwen/Qwen3-30B-A3B | ||
| - Qwen/Qwen3-235B-A22B | ||
| - Qwen/Qwen3-32B | ||
| - Qwen/Qwen3-8B | ||
| - Qwen/Qwen3-0.6B | ||
| - internlm/Intern-S1 | ||
| - internlm/Intern-S1-mini | ||
| - OpenGVLab/InternVL3_5-2B | ||
| - OpenGVLab/InternVL3_5-8B | ||
| - OpenGVLab/InternVL3_5-38B | ||
| 
               | 
          ||
| gptq: | ||
| - Empty | ||
| no_kvint4: | ||
| - Qwen/Qwen3-30B-A3B | ||
| - Qwen/Qwen3-235B-A22B | ||
| - Qwen/Qwen3-32B | ||
| - Qwen/Qwen3-8B | ||
| - Qwen/Qwen3-0.6B | ||
| - internlm/Intern-S1 | ||
| - internlm/Intern-S1-mini | ||
| - OpenGVLab/InternVL3_5-2B | ||
| - OpenGVLab/InternVL3_5-8B | ||
| - OpenGVLab/InternVL3_5-38B | ||
| no_kvint8: | ||
| - Qwen/Qwen3-30B-A3B | ||
| - Qwen/Qwen3-235B-A22B | ||
| - Qwen/Qwen3-32B | ||
| - Qwen/Qwen3-8B | ||
| - Qwen/Qwen3-0.6B | ||
| - internlm/Intern-S1 | ||
| - internlm/Intern-S1-mini | ||
| - OpenGVLab/InternVL3_5-2B | ||
| - OpenGVLab/InternVL3_5-8B | ||
| - OpenGVLab/InternVL3_5-38B | ||
| 
               | 
          
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.
turbomind doesn't support ascend
| turbomind_base_model: | ||
| - internlm/Intern-S1-mini | ||
| - Qwen/Qwen3-4B-FP8 | ||
| - openai/gpt-oss-20b | ||
| 
               | 
          
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.
Those models are not base model
| def command_line_test(config, | ||
| case, | ||
| case_info, | ||
| model_case, | ||
| type, | ||
| extra: str = None, | ||
| cuda_prefix: str = None, | ||
| worker_id: str = ''): | ||
| dst_path = config.get('dst_path') | ||
| 
               | 
          ||
| cmd = get_command_with_extra('lmdeploy chat ' + dst_path + '/workspace_' + model_case, | ||
| config, | ||
| model_case, | ||
| cuda_prefix=cuda_prefix) | ||
| if type == 'turbomind': | ||
| if ('w4' in model_case or ('4bits' in model_case or 'awq' in model_case.lower())): | ||
| cmd += ' --model-format awq' | ||
| elif 'gptq' in model_case.lower(): | ||
| cmd += ' --model-format gptq' | ||
| if case == 'base_testcase': | ||
| cmd += ' --chat-template ' + TEMPLATE | ||
| 
               | 
          ||
| # Add device option if specified in environment | ||
| device = os.environ.get('DEVICE', '') | ||
| if device: | ||
| cmd += f' --device {device} ' | ||
| if device == 'ascend': | ||
| cmd += '--eager-mode ' | ||
| 
               | 
          ||
| return command_test(config, [cmd], model_case, case, case_info, type == 'turbomind', worker_id=worker_id) | ||
| 
               | 
          ||
| 
               | 
          
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.
No longer test the chat CLI?
Uh oh!
There was an error while loading. Please reload this page.