2 Commits

Author SHA1 Message Date
浮梦
d1f585f80a [test] update test cmd (#9544)
Co-authored-by: frozenleaves <frozen@Mac.local>
Co-authored-by: Yaowei Zheng <hiyouga@buaa.edu.cn>
2025-11-27 17:59:42 +08:00
xvxuopop
955396e8a5 [example] correct the parameter errors in the examples file. (#9543) 2025-11-27 17:38:38 +08:00
4 changed files with 5 additions and 2 deletions

View File

@@ -8,6 +8,7 @@ on:
paths: paths:
- "**/*.py" - "**/*.py"
- "requirements.txt" - "requirements.txt"
- "Makefile"
- ".github/workflows/*.yml" - ".github/workflows/*.yml"
pull_request: pull_request:
branches: branches:
@@ -15,6 +16,7 @@ on:
paths: paths:
- "**/*.py" - "**/*.py"
- "requirements.txt" - "requirements.txt"
- "Makefile"
- ".github/workflows/*.yml" - ".github/workflows/*.yml"
jobs: jobs:

View File

@@ -21,4 +21,4 @@ style:
ruff format $(check_dirs) ruff format $(check_dirs)
test: test:
CUDA_VISIBLE_DEVICES= WANDB_DISABLED=true pytest -vv tests/ CUDA_VISIBLE_DEVICES= ASCEND_RT_VISIBLE_DEVICES=0 WANDB_DISABLED=true pytest -vv --import-mode=importlib tests/ tests_v1/

View File

@@ -3,7 +3,7 @@ model_name_or_path: Qwen/Qwen3-VL-30B-A3B-Instruct
image_max_pixels: 262144 image_max_pixels: 262144
video_max_pixels: 16384 video_max_pixels: 16384
trust_remote_code: true trust_remote_code: true
use_kernels: true # replaced kernels: [NpuRMSNormKernel, NpuRoPEKernel, NpuQwen3VLMoEFusedMoEKernel] use_v1_kernels: true # replaced kernels: [NpuRMSNormKernel, NpuRoPEKernel, NpuQwen3VLMoEFusedMoEKernel]
### method ### method
stage: sft stage: sft

View File

@@ -0,0 +1 @@