Skip to content

Commit 9935d45

Browse files
[CI]Add model basic accuracy test(Qwen2.5-0.5B-Instruct) (#460)
### What this PR does / why we need it? Add model basic accuracy test(Qwen2.5-0.5B-Instruct) Signed-off-by: hfadzxy <starmoon_zhang@163.com>
1 parent c3d1a37 commit 9935d45

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+145
-75
lines changed

.github/workflows/actionlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#
2-
# Adapted from vllm-project/vllm/blob/main/.github
32
# Copyright 2023 The vLLM team.
43
#
54
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,6 +12,7 @@
1312
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1413
# See the License for the specific language governing permissions and
1514
# limitations under the License.
15+
# Adapted from vllm-project/vllm/blob/main/.github
1616
#
1717

1818
name: Lint GitHub Actions workflows

.github/workflows/mypy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#
2-
# Adapted from vllm-project/vllm/blob/main/.github
32
# Copyright 2023 The vLLM team.
43
#
54
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,6 +12,7 @@
1312
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1413
# See the License for the specific language governing permissions and
1514
# limitations under the License.
15+
# Adapted from vllm-project/vllm/blob/main/.github
1616
#
1717

1818
name: mypy

.github/workflows/ruff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#
2-
# Adapted from vllm-project/vllm/blob/main/.github
32
# Copyright 2023 The vLLM team.
43
#
54
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,6 +12,7 @@
1312
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1413
# See the License for the specific language governing permissions and
1514
# limitations under the License.
15+
# Adapted from vllm-project/vllm/blob/main/.github
1616
#
1717

1818
name: ruff

.github/workflows/shellcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#
2-
# Adapted from vllm-project/vllm/blob/main/.github
32
# Copyright 2023 The vLLM team.
43
#
54
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,6 +12,7 @@
1312
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1413
# See the License for the specific language governing permissions and
1514
# limitations under the License.
15+
# Adapted from vllm-project/vllm/blob/main/.github
1616
#
1717

1818
name: Lint shell scripts

.github/workflows/vllm_ascend_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#
22
# Copyright (c) 2025 Huawei Technologies Co., Ltd. All Rights Reserved.
3-
# This file is a part of the vllm-ascend project.
43
#
54
# Licensed under the Apache License, Version 2.0 (the "License");
65
# you may not use this file except in compliance with the License.
@@ -13,6 +12,7 @@
1312
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1413
# See the License for the specific language governing permissions and
1514
# limitations under the License.
15+
# This file is a part of the vllm-ascend project.
1616
#
1717

1818
name: 'e2e test'

.github/workflows/yapf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#
2-
# Adapted from vllm-project/vllm/blob/main/.github
32
# Copyright 2023 The vLLM team.
43
#
54
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,6 +12,7 @@
1312
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1413
# See the License for the specific language governing permissions and
1514
# limitations under the License.
15+
# Adapted from vllm-project/vllm/blob/main/.github
1616
#
1717

1818
name: yapf

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#
22
# Copyright (c) 2025 Huawei Technologies Co., Ltd. All Rights Reserved.
3-
# This file is a part of the vllm-ascend project.
43
#
54
# Licensed under the Apache License, Version 2.0 (the "License");
65
# you may not use this file except in compliance with the License.
@@ -13,6 +12,7 @@
1312
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1413
# See the License for the specific language governing permissions and
1514
# limitations under the License.
15+
# This file is a part of the vllm-ascend project.
1616
#
1717

1818
FROM quay.io/ascend/cann:8.0.0-910b-ubuntu22.04-py3.10

Dockerfile.openEuler

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#
22
# Copyright (c) 2025 Huawei Technologies Co., Ltd. All Rights Reserved.
3-
# This file is a part of the vllm-ascend project.
43
#
54
# Licensed under the Apache License, Version 2.0 (the "License");
65
# you may not use this file except in compliance with the License.
@@ -13,6 +12,7 @@
1312
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1413
# See the License for the specific language governing permissions and
1514
# limitations under the License.
15+
# This file is a part of the vllm-ascend project.
1616
#
1717

1818
FROM quay.io/ascend/cann:8.0.0-910b-openeuler22.03-py3.10

collect_env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#
2-
# Adapted from https://github.com/vllm-project/vllm/blob/main/collect_env.py
32
# Copyright 2023 The vLLM team.
43
#
54
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,6 +12,7 @@
1312
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1413
# See the License for the specific language governing permissions and
1514
# limitations under the License.
15+
# Adapted from https://github.com/vllm-project/vllm/blob/main/collect_env.py
1616
#
1717

1818
import datetime

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#
22
# Copyright (c) 2025 Huawei Technologies Co., Ltd. All Rights Reserved.
3-
# This file is a part of the vllm-ascend project.
4-
# Adapted from vllm-project/vllm/docs/source/conf.py
53
# Copyright 2023 The vLLM team.
64
#
75
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -15,6 +13,8 @@
1513
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1614
# See the License for the specific language governing permissions and
1715
# limitations under the License.
16+
# This file is a part of the vllm-ascend project.
17+
# Adapted from vllm-project/vllm/docs/source/conf.py
1818
#
1919

2020
# -- Path setup --------------------------------------------------------------

0 commit comments

Comments
 (0)