Created
July 8, 2025 17:46
-
-
Save vanbasten23/41ece835f92ebde3449a97a07d7ccfb2 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", | |
}, | |
"args": [ | |
"-s", | |
"-vv", | |
"/home/xiowei/vllm/tests/tpu/lora/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