Skip to content
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

Revert "[serve, vllm] add vllm-example that we can reference to (#36617)" #36663

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .buildkite/pipeline.gpu_large.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
["NO_WHEELS_REQUIRED", "RAY_CI_PYTHON_AFFECTED", "RAY_CI_TUNE_AFFECTED", "RAY_CI_DOC_AFFECTED"]
commands:
- cleanup() { if [ "${BUILDKITE_PULL_REQUEST}" = "false" ]; then ./ci/build/upload_build_info.sh; fi }; trap cleanup EXIT
- DOC_TESTING=1 TRAIN_TESTING=1 TUNE_TESTING=1 INSTALL_VLLM=1 ./ci/env/install-dependencies.sh
- DOC_TESTING=1 TRAIN_TESTING=1 TUNE_TESTING=1 ./ci/env/install-dependencies.sh
- pip install -Ur ./python/requirements/ml/requirements_ml_docker.txt
- ./ci/env/env_info.sh
# Test examples with newer version of `transformers`
Expand Down
5 changes: 0 additions & 5 deletions ci/env/install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -394,11 +394,6 @@ install_pip_packages() {
requirements_packages+=("holidays==0.24") # holidays 0.25 causes `import prophet` to fail.
fi

# Additional dependency for vllm.
if [ "${INSTALL_VLLM-}" = 1 ]; then
requirements_packages+=("vllm")
fi

# Data processing test dependencies.
if [ "${DATA_PROCESSING_TESTING-}" = 1 ] || [ "${DOC_TESTING-}" = 1 ]; then
requirements_files+=("${WORKSPACE_DIR}/python/requirements/data_processing/requirements.txt")
Expand Down
10 changes: 0 additions & 10 deletions doc/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,6 @@ py_test_run_all_subdirectory(
"source/ray-air/doc_code/computer_vision.py",
"source/ray-air/doc_code/hf_trainer.py", # Too large
"source/ray-air/doc_code/predictors.py",
"source/serve/doc_code/vllm_example.py", # Requires GPU
],
extra_srcs = [],
tags = ["exclusive", "team:ml"],
Expand Down Expand Up @@ -280,15 +279,6 @@ py_test_run_all_subdirectory(
tags = ["exclusive", "team:ml", "ray_air", "gpu"],
)

py_test(
name = "vllm_example",
size = "large",
include = ["source/serve/doc_code/vllm_example.py"],
exclude = [],
extra_srcs = [],
tags = ["exclusive", "team:serve", "gpu"],
)

py_test(
name = "pytorch_resnet_finetune",
size = "large",
Expand Down
126 changes: 0 additions & 126 deletions doc/source/serve/doc_code/vllm_example.py

This file was deleted.