Created
July 15, 2025 21:24
-
-
Save vanbasten23/faace1695e7b60f6cbe633407f9bad59 to your computer and use it in GitHub Desktop.
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
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "vllm", | |
"type": "debugpy", | |
"request": "launch", | |
"program": "/home/xiowei/miniconda3/envs/vllm/bin/pytest", | |
"console": "integratedTerminal", | |
"env": { | |
"VLLM_USE_V1": "1", | |
"MODEL_IMPL_TYPE": "vllm", | |
"TPU_BACKEND_TYPE": "jax", | |
}, | |
"args": [ | |
"-s", | |
"-vv", | |
"/mnt/disks/persist/tpu_commons/tests/test_lora.py", | |
"-k", | |
"test_single_lora", | |
// "/mnt/disks/persist/vllm/tests/v1/entrypoints/llm/test_struct_output_generate.py", | |
// "-k", | |
// "test_structured_output_auto_mode", | |
// "--port", | |
// "8003", | |
// "--gpu-memory-utilization", | |
// "0.98", | |
// "--max-num-batched-tokens", | |
// "8192", | |
// "--num-scheduler-steps", | |
// "8", | |
// "--tensor-parallel-size", | |
// "1", | |
// "--max-model-len", | |
// "2048" | |
] | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment