-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.code-workspace
More file actions
58 lines (58 loc) · 1.2 KB
/
project.code-workspace
File metadata and controls
58 lines (58 loc) · 1.2 KB
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"search.exclude": {
"target": true,
},
"files.exclude": {
"target": true,
},
"rust-analyzer.linkedProjects": [
".\\vector\\Cargo.toml",
".\\vector\\Cargo.toml",
".\\vector\\Cargo.toml",
".\\diskann\\Cargo.toml"
],
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer",
"editor.formatOnSave": true,
}
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Build memory index",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceRoot}\\target\\debug\\build_memory_index.exe",
"args": [
"--data_type",
"float",
"--dist_fn",
"l2",
"--data_path",
".\\base1m.fbin",
"--index_path_prefix",
".\\rust_index_sift_base_R32_L50_A1.2_T1",
"-R",
"64",
"-L",
"100",
"--alpha",
"1.2",
"-T",
"1"
],
"stopAtEntry": false,
"cwd": "c:\\data",
"environment": [],
"externalConsole": true
},
]
}
}