Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
9fa4bdde
Unverified
Commit
9fa4bdde
authored
Nov 09, 2024
by
youkaichao
Committed by
GitHub
Nov 09, 2024
Browse files
[ci][build] limit cmake version (#10188)
Signed-off-by:
youkaichao
<
youkaichao@gmail.com
>
parent
51c2e1fc
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 deletions
+7
-7
Dockerfile.neuron
Dockerfile.neuron
+1
-1
Dockerfile.ppc64le
Dockerfile.ppc64le
+1
-1
docs/source/getting_started/cpu-installation.rst
docs/source/getting_started/cpu-installation.rst
+1
-1
pyproject.toml
pyproject.toml
+1
-1
requirements-build.txt
requirements-build.txt
+1
-1
requirements-tpu.txt
requirements-tpu.txt
+1
-1
requirements-xpu.txt
requirements-xpu.txt
+1
-1
No files found.
Dockerfile.neuron
View file @
9fa4bdde
...
...
@@ -31,7 +31,7 @@ RUN --mount=type=bind,source=.git,target=.git \
if [ "$GIT_REPO_CHECK" != 0 ]; then bash tools/check_repo.sh ; fi
RUN python3 -m pip install -U \
'cmake>=3.26' ninja packaging 'setuptools-scm>=8' wheel jinja2 \
'cmake>=3.26
,<=3.30
' ninja packaging 'setuptools-scm>=8' wheel jinja2 \
-r requirements-neuron.txt
ENV VLLM_TARGET_DEVICE neuron
...
...
Dockerfile.ppc64le
View file @
9fa4bdde
...
...
@@ -21,7 +21,7 @@ RUN --mount=type=bind,source=.git,target=.git \
# These packages will be in rocketce eventually
RUN --mount=type=cache,target=/root/.cache/pip \
pip install -v --prefer-binary --extra-index-url https://repo.fury.io/mgiessing \
'cmake>=3.26' ninja packaging 'setuptools-scm>=8' wheel jinja2 \
'cmake>=3.26
,<=3.30
' ninja packaging 'setuptools-scm>=8' wheel jinja2 \
torch==2.3.1 \
-r requirements-cpu.txt \
xformers uvloop==0.20.0
...
...
docs/source/getting_started/cpu-installation.rst
View file @
9fa4bdde
...
...
@@ -62,7 +62,7 @@ Build from source
.. code-block:: console
$ pip install --upgrade pip
$ pip install cmake>=3.26 wheel packaging ninja "setuptools-scm>=8" numpy
$ pip install cmake>=3.26
,<=3.30
wheel packaging ninja "setuptools-scm>=8" numpy
$ pip install -v -r requirements-cpu.txt --extra-index-url https://download.pytorch.org/whl/cpu
- Finally, build and install vLLM CPU backend:
...
...
pyproject.toml
View file @
9fa4bdde
[build-system]
# Should be mirrored in requirements-build.txt
requires
=
[
"cmake>=3.26"
,
"cmake>=3.26
,<=3.30
"
,
"ninja"
,
"packaging"
,
"setuptools>=61"
,
...
...
requirements-build.txt
View file @
9fa4bdde
# Should be mirrored in pyproject.toml
cmake>=3.26
cmake>=3.26
,<=3.30
ninja
packaging
setuptools>=61
...
...
requirements-tpu.txt
View file @
9fa4bdde
...
...
@@ -2,7 +2,7 @@
-r requirements-common.txt
# Dependencies for TPU
cmake>=3.26
cmake>=3.26
,<=3.30
ninja
packaging
setuptools-scm>=8
...
...
requirements-xpu.txt
View file @
9fa4bdde
...
...
@@ -2,7 +2,7 @@
-r requirements-common.txt
ray >= 2.9
cmake>=3.26
cmake>=3.26
,<=3.30
ninja
packaging
setuptools-scm>=8
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment