使用vscode去debug学习pytorch源码

在VS Code的launch.json文件中将justMyCode属性设置为false。这样就不会跳过torch的源码,可以进行打断点学习pytorch源码

{
    "name": "Python: Current File",
    "type": "python",
    "request": "launch",
    "program": "${file}",
    "justMyCode": false,
    "cwd": "${fileDirname}"
}


 

你可能感兴趣的:(vscode,ide,visual,studio,code)