PointMLP/.vscode/launch.json
2023-08-03 16:38:02 +02:00

18 lines
339 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": false,
"env": {
"OMP_NUM_THREADS": "1",
"CUDA_VISIBLE_DEVICES": "1",
}
}
]
}