-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathextra_launch.json
50 lines (50 loc) · 1.53 KB
/
extra_launch.json
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
{
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "[MUOPDB] Debug executable 'index_server'",
"cargo": {
"args": [
"build",
"--bin=index_server",
"--package=index_server"
],
"filter": {
"name": "index_server",
"kind": "bin"
}
},
"args": [
"--node-id=0",
"--index-config-path=/mnt/muopdb/indices",
"--index-data-path=/mnt/muopdb/data"
],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "[MUOPDB] Debug executable 'index_writer'",
"cargo": {
"args": [
"build",
"--bin=index_writer",
"--package=index_writer"
],
"filter": {
"name": "index_writer",
"kind": "bin"
}
},
"args": [
"--input-path=/Users/hieu/muopdb/input/sift-128-euclidean.hdf5",
"--output-path=/Users/hieu/muopdb/data/hieu-reindex-1",
"--index-type=hnsw-ivf",
"--dataset-name=/train",
"--config-path=/tmp/index_writer_config.yaml"
],
"cwd": "${workspaceFolder}"
}
]
}