-
-
Notifications
You must be signed in to change notification settings - Fork 7.7k
[CI/BUILD] enable intel queue for longer CPU tests #4113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
ed82c25
[CI] enable intel queue for longer CPU tests
zhouyuan e6d9507
enable more tests
zhouyuan b04c6b1
ignore models
zhouyuan 2520dbf
adding big model test
zhouyuan 06a5eae
disable big model
zhouyuan 997f32b
add device check in conftest
zhouyuan e9fd4cb
Fix corner case in pos_encoding.
bigPYJ1151 fb00ea2
enable stabilityai model
zhouyuan 3ed0ede
using torch.cuda.is_available() to check the device type
zhouyuan 0ec2b79
fix format
zhouyuan 9de3c52
ignore failed tests firstly
zhouyuan 0bda6d9
ignore embedding test
zhouyuan a93ad94
fix test dir
zhouyuan 774eba0
fix tests with cuda device only
zhouyuan 913eb24
add local develop
zhouyuan 9f299d5
fix format
zhouyuan 22d5228
soft link tests folder
zhouyuan 3208d4e
enable big model test
zhouyuan 1be1f1f
addning hf token
zhouyuan ffb647f
enable test mistral
zhouyuan e019d21
use float dtype for big model tests with CPU backend
zhouyuan a7e25a3
fix failed CI on CUDA spawn issue
zhouyuan eca1baf
fix rebase issue
zhouyuan 7f0a344
fix rebase
zhouyuan 1eeb09d
Trigger CI
zhouyuan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# This vLLM Dockerfile is used to construct image that can build and run vLLM on x86 CPU platform. | ||
|
||
FROM ubuntu:22.04 | ||
FROM ubuntu:22.04 AS cpu-test-1 | ||
|
||
RUN apt-get update -y \ | ||
&& apt-get install -y git wget vim numactl gcc-12 g++-12 python3 python3-pip \ | ||
|
@@ -9,6 +9,8 @@ RUN apt-get update -y \ | |
RUN pip install --upgrade pip \ | ||
&& pip install wheel packaging ninja setuptools>=49.4.0 numpy | ||
|
||
FROM cpu-test-1 AS build | ||
|
||
COPY ./ /workspace/vllm | ||
|
||
WORKDIR /workspace/vllm | ||
|
@@ -19,4 +21,6 @@ RUN VLLM_TARGET_DEVICE=cpu python3 setup.py install | |
|
||
WORKDIR /workspace/ | ||
|
||
RUN ln -s /workspace/vllm/tests && ln -s /workspace/vllm/examples && ln -s /workspace/vllm/benchmarks | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
CMD ["/bin/bash"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.