Hi,
I have a 2.5GB Flat Binary Index.
I want to put it in GPU to search,
I tried this
res = faiss.StandardGpuResources()
self.index = faiss.GpuIndexBinaryFlat(res, binary_index)
It loads in GPU, but while searching the GPU becomes 100% and dies.
Any idea how to load it and search.
I have a Tesla V100 16GB.