Skip to content

Commit fe7195d

Browse files
test vllm x86
1 parent 32d4d18 commit fe7195d

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

dlc_developer_config.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ deep_canary_mode = false
3737
[build]
3838
# Add in frameworks you would like to build. By default, builds are disabled unless you specify building an image.
3939
# available frameworks - ["base", "vllm", "autogluon", "huggingface_tensorflow", "huggingface_pytorch", "huggingface_tensorflow_trcomp", "huggingface_pytorch_trcomp", "pytorch_trcomp", "tensorflow", "pytorch", "stabilityai_pytorch"]
40-
build_frameworks = []
40+
build_frameworks = ["vllm"]
4141

4242

4343
# By default we build both training and inference containers. Set true/false values to determine which to build.
@@ -182,4 +182,4 @@ dlc-pr-pytorch-eia-inference = ""
182182
dlc-pr-tensorflow-2-eia-inference = ""
183183

184184
# vllm
185-
dlc-pr-vllm = ""
185+
dlc-pr-vllm = "vllm/buildspec.yml"

test/vllm/ec2/test_artifacts/test_ec2.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,7 @@
88
from contextlib import contextmanager
99
from typing import Optional, Tuple
1010

11-
from test.test_utils.ec2 import (
12-
get_account_id_from_image_uri,
13-
login_to_ecr_registry,
14-
get_ec2_client,
15-
install_python_in_instance,
16-
)
11+
from test.test_utils.ec2 import get_account_id_from_image_uri, login_to_ecr_registry, get_ec2_client
1712

1813
from test.vllm.ec2.utils.fsx_utils import FsxSetup
1914
from test.vllm.ec2.infra.setup_ec2 import cleanup_resources, TEST_ID
@@ -122,7 +117,6 @@ def test_vllm_benchmark_on_multi_node(head_connection, worker_connection, image_
122117
raise Exception("Failed to get HF token")
123118

124119
for conn in [head_connection, worker_connection]:
125-
install_python_in_instance(conn, "3.10")
126120
setup_docker_image(conn, image_uri)
127121
setup_env(conn)
128122

@@ -257,8 +251,6 @@ def run_single_node_test(head_conn, image_uri):
257251
raise Exception(f"GPU setup verification failed for head node")
258252

259253
try:
260-
install_python_in_instance(head_conn, python_version="3.10")
261-
262254
response = get_secret_hf_token()
263255
hf_token = response.get("HF_TOKEN")
264256

0 commit comments

Comments
 (0)