diff --git a/.vscode/launch.json b/.vscode/launch.json index ace68c0..c46a97d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,59 +1,59 @@ { // 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.0.1", "configurations": [ { "name": "Python: Current File", "type": "python", "request": "launch", "program": "${file}", "args": [ "/misc/espic2dsimus/openmp/trajectories.h5" ], "console": "integratedTerminal" }, { "name": "Fortran Launch (GDB)", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/src/espic2d", "args": ["${workspaceFolder}/wk/espic2d.in"], "stopAtEntry": false, "cwd": "${workspaceFolder}/wk", //"externalConsole": true, "preLaunchTask": "make debug", "miDebuggerPath": "gdb", }, { "name": "Fortran test.in (GDB)", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/src/espic2d", - "args": ["${workspaceFolder}/wk/job.in"], + "args": ["${workspaceFolder}/wk/test.in"], "stopAtEntry": false, "cwd": "${workspaceFolder}/wk", //"externalConsole": true, "preLaunchTask": "", "miDebuggerPath": "gdb", }, { "name": "Fortran Launch stable.in", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/src/espic2d", "args": ["${workspaceFolder}/wk/stable.in"], "stopAtEntry": false, "cwd": "${workspaceFolder}/wk", //"externalConsole": true, "preLaunchTask": "make debug", "miDebuggerPath": "gdb", }, { "name": "Intel Debug Attach", "type": "cppdbg", "request": "attach", "processId": "${command:pickProcess}", "program": "${workspaceFolder}/espic2d" } ] }