You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, from the previous issue (#1348), what I saw is that the HNSW is not implemented on GPU.
So, if what I understand is correct, like the previous issue by adding the (faiss.index_cpu_to_gpu, gpu_index_flat.add, etc), we can run the corresponding index on GPUs but does it work on the same in HNSW? If not, is it possible to run the HNSW on GPUs by using faiss library?
The text was updated successfully, but these errors were encountered:
HNSW is not implemented on GPU. If you use index_cpu_to_gpu, it will just copy the index to another CPU index (the default behavior for indexes it does not recognize).
Hi, currently I try to run the HNSW on GPUs.
However, from the previous issue (#1348), what I saw is that the HNSW is not implemented on GPU.
So, if what I understand is correct, like the previous issue by adding the (faiss.index_cpu_to_gpu, gpu_index_flat.add, etc), we can run the corresponding index on GPUs but does it work on the same in HNSW? If not, is it possible to run the HNSW on GPUs by using faiss library?
The text was updated successfully, but these errors were encountered: