PointMLP/.vscode/launch.json

18 lines
339 B
JSON
Raw Permalink Normal View History

2023-08-03 14:38:02 +00:00
{
"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",
}
}
]
}