-
Notifications
You must be signed in to change notification settings - Fork 197
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add FAISS with RAFT enabled Benchmarking to raft-ann-bench #2026
Changes from 163 commits
cc9cbd3
28484ef
e39ee56
68bf927
78d6380
49a8834
897338e
c1d80f5
2a2ee51
834dd2c
6013429
ab6345a
ed80d1a
cdff9e1
7412272
700ea82
27451c6
9d742ef
d1ef8a1
e187147
4f233a6
4ee99e3
22f4f80
9f4e22c
c95d1e0
da78c66
5cc6dc9
15db0c6
154dc6d
47d6421
0f1d106
e2e1308
3f470c8
41a49b2
1d2a5b0
8ce8115
171215b
135d973
d7a9b4e
5738cca
62b39cf
8702b92
5b2a7e0
4139c7e
e846352
2ab3da2
eb493a7
28b7125
4b3b3bb
3da5265
d546d89
b6e3de9
4b94c45
ec11fd8
8a41330
86f1aa4
0baee4a
9d66a8f
3be7afd
fd01442
1b4fd0e
7d760e9
aaff0bf
c4bc220
6a5443a
bca8f40
8edc7a1
93eebab
140701e
0b88ca4
d67fe8d
a68d7a7
41ac27f
5073ea3
889bbdd
3dbf3a7
30bdee5
55fa0ef
8eb07f8
f8956d5
228e997
bdd75cf
6adcb98
1893963
91e17c2
a2d4575
1efd28f
9841e6c
3f8baaa
11a681f
3cd2d4a
633ad86
09bcbd8
ab442b3
a3acb5d
8bc00aa
e539fd2
2b089bb
87b3eb5
5057525
bdf7196
a045f8e
72b7e00
3bbf67a
22b6754
9d9a078
1385cf8
651ea18
5847a09
77f9366
31f444d
dfb2c2c
9be5ecc
02bdc23
27bf943
9012267
0c714d5
df10536
395402c
4b8843d
b1e7495
95dcd10
e25acf1
8975a81
8188767
f697549
f0aa1db
7a429e5
a54408f
757e07a
65f096f
d472c06
dbb773d
66baf65
ccc8056
2d223dd
092b9b9
b9c64be
981a730
507ce25
dc14d8b
af37e68
e5170a8
9df0d73
bd1fe4c
7295308
f2f2e3b
1838102
fe389db
9c5cf50
09d2422
d56089d
ba2cdd8
921eadd
c91a94b
29e08cb
cca3927
b0ce3ee
fc5c2b3
0fa20a9
a2c1d7f
bd6d5b5
36c97e8
04a3342
60d5927
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,6 +55,7 @@ function(find_and_configure_faiss) | |
EXCLUDE_FROM_ALL ${exclude} | ||
OPTIONS | ||
"FAISS_ENABLE_GPU ${PKG_ENABLE_GPU}" | ||
"FAISS_ENABLE_RAFT ${PKG_ENABLE_GPU}" | ||
"FAISS_ENABLE_PYTHON OFF" | ||
"FAISS_OPT_LEVEL ${RAFT_FAISS_OPT_LEVEL}" | ||
"FAISS_USE_CUDA_TOOLKIT_STATIC ${CUDA_STATIC_RUNTIME}" | ||
|
@@ -115,4 +116,4 @@ endfunction() | |
find_and_configure_faiss( | ||
BUILD_STATIC_LIBS ${RAFT_USE_FAISS_STATIC} | ||
ENABLE_GPU ${RAFT_FAISS_ENABLE_GPU} | ||
) | ||
) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I noticed several files in this PR that do not end with a newline. In practice I've found that this rarely matters, but it can occasionally cause issues for tools doing line-by-line parsing of files. In a future PR, you may want to consider automatically fixing these with |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are you changing this?
max_ppc
was defined to be consistent with raftkmeans_trainset_fraction
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes these were all parts of debugging experiments. Changed it back.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you change this back to
max_ppc
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you change it back to
max_ppc
?