Skip to content

Commit 264fdcb

Browse files
committed
final update
Signed-off-by: Dan Huang <dahuang@redhat.com>
1 parent 625c9db commit 264fdcb

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

tests/e2e/vLLM/e2e-smoke.list

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1+
fp4_nvfp4.yaml
12
fp8_dynamic_per_token.yaml
3+
kv_cache_gptq_tinyllama.yaml
4+
sparse2of4_fp8_dynamic.yaml
5+
w4a16_grouped_quant_asym_awq.yaml
6+
w4a16_actorder_weight.yaml
7+
int8_channel_weight_static_per_tensor_act.yaml

tests/e2e/vLLM/lmeval-smoke.list

Lines changed: 0 additions & 6 deletions
This file was deleted.

tests/e2e/vLLM/test_vllm.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def is_quay_image(url: str) -> bool:
2626
"TEST_DATA_FILE", "tests/e2e/vLLM/configs/int8_dynamic_per_token.yaml"
2727
)
2828
SKIP_HF_UPLOAD = os.environ.get("SKIP_HF_UPLOAD", "")
29-
# vllm environment: image url, deployed runner name, same (default), or the path of vllm virtualenv
29+
# vllm environment: same (default), the path of vllm virtualenv, image url, deployed runner name
3030
VLLM_PYTHON_ENV = os.environ.get("VLLM_PYTHON_ENV", "same")
3131
IS_VLLM_IMAGE = False
3232
IS_VLLM_IMAGE_DEPLOYED=False
@@ -231,6 +231,7 @@ def _run_vllm(self, logger):
231231
logger.info(self.vllm_env)
232232

233233
if IS_VLLM_IMAGE:
234+
# generate python command to run in the vllm image
234235
run_file_path = os.path.join(RUN_SAVE_DIR, "run_vllm.py")
235236
shutil.copy(os.path.join(test_file_dir, "run_vllm.py"),
236237
os.path.join(RUN_SAVE_DIR, "run_vllm.py"))
@@ -257,7 +258,7 @@ def _run_vllm(self, logger):
257258
stderr=subprocess.PIPE,
258259
text=True)
259260
else:
260-
logger.info("vllm image is pulled. Run vllm cmd with podman.")
261+
logger.info("vllm image is pulled locally. Run vllm cmd with podman.")
261262
result = subprocess.Popen(
262263
[
263264
"podman", "run", "--rm",

0 commit comments

Comments
 (0)