38 lines
1.2 KiB
JSON
Raw Normal View History

2024-01-07 11:28:12 +00:00
{
// 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": [
{
2024-07-13 09:22:02 +00:00
"name": "Python Debugger: Current File",
"type": "python",
2024-01-07 11:28:12 +00:00
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": false,
2024-07-13 09:56:21 +00:00
"env": {
"CUDA_VISIBLE_DEVICES": "1",
"LD_LIBRARY_PATH": "/home/karl/faster-auto-subtitle/venv/lib/python3.11/site-packages/nvidia/cublas/lib:/home/karl/faster-auto-subtitle/venv/lib/python3.11/site-packages/nvidia/cudnn/lib"
2024-07-13 09:56:21 +00:00
},
2024-01-07 11:28:12 +00:00
"args": [
2024-01-08 09:20:36 +00:00
"--model",
"base"
]
},
{
"name": "Current (withenv)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/run_with_env.sh",
"console": "integratedTerminal",
"justMyCode": false,
"args": [
"${file}",
"--model",
"base"
2024-07-13 09:56:21 +00:00
]
2024-01-07 11:28:12 +00:00
}
]
2024-07-13 09:56:21 +00:00
}