-
Notifications
You must be signed in to change notification settings - Fork 0
/
vscode.txt
72 lines (69 loc) · 2.98 KB
/
vscode.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
// 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.2.0",
"configurations": [
{
"name": "(gdb) NGRAPH_CUSTOM Launch",
"type": "cppdbg",
"request": "launch",
"program": "/usr/bin/python2.7",
"args": ["/nvm/dyshape/ngraph-paddle/tools/test_runner.py", "test_matmul_ngraph_op"],
"stopAtEntry": false,
"cwd": "/nvm/dyshape/ngraph-paddle/build/python/paddle/fluid/tests/unittests/ngraph",
"environment": [{ "name" : "NGRAPH_CUSTOM_MATMUL" , "value" : "true"}, { "name" : "PYTHONPATH" , "value" : "/nvm/dyshape/ngraph-paddle/build/python"} , { "name" : "FLAGS_use_ngraph" , "value" :"true" }],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
{
"name": "(gdb) NGRAPH_DEFAULT Launch",
"type": "cppdbg",
"request": "launch",
"program": "/usr/bin/python2.7",
"args": ["/nvm/dyshape/ngraph-paddle/tools/test_runner.py", "test_matmul_ngraph_op"],
"stopAtEntry": false,
"cwd": "/nvm/dyshape/ngraph-paddle/build/python/paddle/fluid/tests/unittests/ngraph",
"environment": [ { "name" : "PYTHONPATH" , "value" : "/nvm/dyshape/ngraph-paddle/build/python"} , { "name" : "FLAGS_use_ngraph" , "value" :"true" }],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
{
"name": "python matmul_grad",
"type": "cppdbg",
"request": "launch",
"program": "/usr/bin/python2.7",
"args": ["/nvm/dyshape/ngraph-paddle/tools/test_runner.py", "test_matmul_ngraph_op"
],
"stopAtEntry": false,
"cwd": "/nvm/dyshape/ngraph-paddle/build/python/paddle/fluid/tests/unittests/ngraph",
"environment": [ {"PYTHONPATH" : "/nvm/dyshape/ngraph-paddle/build/python", "FLAGS_use_ngraph" : "true" }
],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "g++ build active file",
"miDebuggerPath": "/usr/bin/gdb"
}
]
}