Skip to content

Conversation

@zhulinJulia24
Copy link
Collaborator

@zhulinJulia24 zhulinJulia24 commented Oct 30, 2025

  1. Add test configuration for H cluster
  2. Add benchmark for longtext processing
  3. Remove unused workspace test cases
  4. Add workflow start time and final status tracking
  5. Adjust volume settings for the new machine

Comment on lines +21 to +26
turbomind_chat_model:
- Qwen/Qwen3-30B-A3B
- Qwen/Qwen3-235B-A22B
- Qwen/Qwen3-32B
- Qwen/Qwen3-8B
- Qwen/Qwen3-0.6B
Copy link
Collaborator

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

Comment on lines +36 to +42
turbomind_vl_model:
- internlm/Intern-S1
- internlm/Intern-S1-mini
- OpenGVLab/InternVL3_5-2B
- OpenGVLab/InternVL3_5-8B
- OpenGVLab/InternVL3_5-38B

Copy link
Collaborator

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

Comment on lines +51 to +53
turbomind_base_model:
- Qwen/Qwen3-0.6B

Copy link
Collaborator

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

Comment on lines +57 to +94
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

Copy link
Collaborator

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

Comment on lines +65 to +69
turbomind_base_model:
- internlm/Intern-S1-mini
- Qwen/Qwen3-4B-FP8
- openai/gpt-oss-20b

Copy link
Collaborator

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

Comment on lines -11 to -42
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)


Copy link
Collaborator

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants