File tree Expand file tree Collapse file tree 5 files changed +7
-19
lines changed Expand file tree Collapse file tree 5 files changed +7
-19
lines changed Original file line number Diff line number Diff line change @@ -82,21 +82,15 @@ jobs:
82
82
run : |
83
83
apt-get update -y
84
84
apt-get -y install `cat packages.txt`
85
+ apt-get -y install gcc g++ cmake libnuma-dev
85
86
86
87
- name : Install dependencies
87
88
run : |
88
89
pip install -r requirements-dev.txt
89
90
90
- - name : Checkout vllm-project/vllm repo
91
- uses : actions/checkout@v4
92
- with :
93
- repository : vllm-project/vllm
94
- path : ./vllm-empty
95
-
96
- - name : Install vllm-project/vllm from source
97
- working-directory : ./vllm-empty
91
+ - name : Install vllm-project/vllm from pypi
98
92
run : |
99
- VLLM_TARGET_DEVICE=empty pip install -e .
93
+ pip install vllm==0.7.3
100
94
101
95
- name : Install vllm-project/vllm-ascend
102
96
run : |
Original file line number Diff line number Diff line change 70
70
'vllm_ascend_version' : 'main' ,
71
71
# the newest release version of vllm-ascend and matched vLLM, used in pip install.
72
72
# This value should be updated when cut down release.
73
- 'pip_vllm_ascend_version' : "v0.7.1rc1 " ,
74
- 'pip_vllm_version' : "v0.7.1 " ,
73
+ 'pip_vllm_ascend_version' : "v0.7.3rc1 " ,
74
+ 'pip_vllm_version' : "v0.7.3 " ,
75
75
}
76
76
77
77
# Add any paths that contain templates here, relative to this directory.
Original file line number Diff line number Diff line change @@ -117,13 +117,6 @@ You can install `vllm` and `vllm-ascend` from **pre-built wheel**:
117
117
``` {code-block} bash
118
118
:substitutions:
119
119
120
- # Install vllm from source, since `pip install vllm` doesn't work on CPU currently.
121
- # It'll be fixed in the next vllm release, e.g. v0.7.3.
122
- git clone --branch |pip_vllm_version| https://github.com/vllm-project/vllm
123
-
124
- cd vllm
125
- VLLM_TARGET_DEVICE=empty pip install . --extra-index https://download.pytorch.org/whl/cpu/
126
-
127
120
# Install vllm-ascend from pypi.
128
121
pip install vllm-ascend==|pip_vllm_ascend_version| --extra-index https://download.pytorch.org/whl/cpu/
129
122
Original file line number Diff line number Diff line change @@ -6,6 +6,6 @@ requires = [
6
6
" decorator" ,
7
7
" pyyaml" ,
8
8
" scipy" ,
9
- " torch-npu >= 2.5.1rc1 "
9
+ " vllm==0.7.3 " ,
10
10
]
11
11
build-backend = " setuptools.build_meta"
Original file line number Diff line number Diff line change 3
3
scipy
4
4
setuptools
5
5
setuptools-scm
6
+ vllm == 0.7.3
You can’t perform that action at this time.
0 commit comments