mirror of
https://github.com/ostris/ai-toolkit.git
synced 2026-02-08 14:39:58 +00:00
28 lines
738 B
JSON
28 lines
738 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Run current config",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/run.py",
|
|
"args": [
|
|
"${file}"
|
|
],
|
|
"env": {
|
|
"CUDA_LAUNCH_BLOCKING": "1",
|
|
"DEBUG_TOOLKIT": "1"
|
|
},
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false
|
|
},
|
|
{
|
|
"name": "Python: Debug Current File",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "${file}",
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false
|
|
},
|
|
]
|
|
} |