Replies: 3 comments
-
faiss.index_cpu_to_all_gpus is only for float indexes. faiss/tests/test_index_binary.py Line 341 in 7492d23 |
Beta Was this translation helpful? Give feedback.
-
Just to clarify: "construction should be done manually" means that I cannot train a binary index with a GPU compatible binary clustering index? https://gist.github.com/mdouze/dd11f1ebd2f1c2f3bcd74beee303e513 Is it possible to use GPU-optimized |
Beta Was this translation helpful? Give feedback.
-
Is it possible to perform a search using Using |
Beta Was this translation helpful? Give feedback.
-
I want to use multiple GPUs while using the binary flat index.
When I run
faiss.index_cpu_to_all_gpus(faiss.IndexBinaryFlat(d))
, I get the following error:I don't get this error when using L2 flat index.
faiss.index_cpu_to_all_gpus(faiss.IndexFlatL2(d))
Beta Was this translation helpful? Give feedback.
All reactions