A library for efficient similarity search and clustering of dense vectors.
 
 
 
 
 
 
Go to file
Jeff Johnson ab13122669 Faiss GPU IVF large query batch fix (#2572)
Summary:
Pull Request resolved: https://github.com/facebookresearch/faiss/pull/2572

This is a fix to https://github.com/facebookresearch/faiss/issues/2561

namely, GpuIndexIVFFlat didn't work for query batch sizes larger than 65536, due to that being the maximum grid Y dimension.

This code fixes the IVFFlat code to instead perform a grid loop over the queries as needed for >65536, and in other cases which are not currently violated by large batch queries but we're simply passing in some array size as a grid Y parameter, I added asserts to catch this for the future.

Added two tests for IVFPQ and IVFFlat for the large batch case. The IVFPQ large batch test passed before, but IVFFlat reproduced the same issue as seen in GH issue 2561.

Reviewed By: alexanderguzhva

Differential Revision: D41184878

fbshipit-source-id: 92a87bd095319d6dcd73c76ba9044c019b8ca71c
2022-11-10 10:14:23 -08:00
.circleci Fix osx nightly (#2559) 2022-11-03 01:57:23 -07:00
.github Change default branch references from master to main. (#2029) 2021-09-01 09:26:20 -07:00
benchs Update docs for benchmarks in benchs/ directory (#2565) 2022-11-08 08:44:42 -08:00
c_api IVF filtering based on IDSelector (no init split) (#2483) 2022-09-30 06:40:03 -07:00
cmake Move from TravisCI to CircleCI (#1315) 2020-08-15 04:00:51 -07:00
conda Fix osx nightly (#2559) 2022-11-03 01:57:23 -07:00
contrib IVF filtering based on IDSelector (no init split) (#2483) 2022-09-30 06:40:03 -07:00
demos Demo of residual quantizer distance computer for LaserKNN (#2283) 2022-04-06 12:42:24 -07:00
faiss Faiss GPU IVF large query batch fix (#2572) 2022-11-10 10:14:23 -08:00
misc Enable clang-format + autofix. 2021-02-25 04:46:10 -08:00
tests Introduce transposed centroid table to speedup ProductQuantizer::compute_codes() (#2562) 2022-11-06 08:32:54 -08:00
tutorial Enable clang-format + autofix. 2021-02-25 04:46:10 -08:00
.clang-format Re-factor factory string parsing (#2134) 2021-12-07 04:35:57 -08:00
.dockerignore
.gitignore AQ fastscan (#2169) 2022-02-22 15:24:31 -08:00
CHANGELOG.md Updated changelog with implemented features for 1.7.3 release (#2564) 2022-11-08 03:44:51 -08:00
CMakeLists.txt Prepare for v1.7.3 release (#2560) 2022-11-04 09:48:11 -07:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md Change default branch references from master to main. (#2029) 2021-09-01 09:26:20 -07:00
Dockerfile
Doxyfile GitHub actions hooks for GitHub pages docs website. (#1599) 2020-12-29 13:46:54 -08:00
INSTALL.md Remove an Outdated Description in INSTALL.md (#2391) 2022-08-31 05:45:17 -07:00
LICENSE
README.md Fix tiny mistakes (#2384) 2022-07-18 06:11:48 -07:00

README.md

Faiss

Faiss is a library for efficient similarity search and clustering of dense vectors. It contains algorithms that search in sets of vectors of any size, up to ones that possibly do not fit in RAM. It also contains supporting code for evaluation and parameter tuning. Faiss is written in C++ with complete wrappers for Python/numpy. Some of the most useful algorithms are implemented on the GPU. It is developed primarily at Facebook AI Research.

News

See CHANGELOG.md for detailed information about latest features.

Introduction

Faiss contains several methods for similarity search. It assumes that the instances are represented as vectors and are identified by an integer, and that the vectors can be compared with L2 (Euclidean) distances or dot products. Vectors that are similar to a query vector are those that have the lowest L2 distance or the highest dot product with the query vector. It also supports cosine similarity, since this is a dot product on normalized vectors.

Some of the methods, like those based on binary vectors and compact quantization codes, solely use a compressed representation of the vectors and do not require to keep the original vectors. This generally comes at the cost of a less precise search but these methods can scale to billions of vectors in main memory on a single server. Other methods, like HNSW and NSG add an indexing structure on top of the raw vectors to make searching more efficient.

The GPU implementation can accept input from either CPU or GPU memory. On a server with GPUs, the GPU indexes can be used a drop-in replacement for the CPU indexes (e.g., replace IndexFlatL2 with GpuIndexFlatL2) and copies to/from GPU memory are handled automatically. Results will be faster however if both input and output remain resident on the GPU. Both single and multi-GPU usage is supported.

Installing

Faiss comes with precompiled libraries for Anaconda in Python, see faiss-cpu and faiss-gpu. The library is mostly implemented in C++, the only dependency is a BLAS implementation. Optional GPU support is provided via CUDA, and the Python interface is also optional. It compiles with cmake. See INSTALL.md for details.

How Faiss works

Faiss is built around an index type that stores a set of vectors, and provides a function to search in them with L2 and/or dot product vector comparison. Some index types are simple baselines, such as exact search. Most of the available indexing structures correspond to various trade-offs with respect to

  • search time
  • search quality
  • memory used per index vector
  • training time
  • adding time
  • need for external data for unsupervised training

The optional GPU implementation provides what is likely (as of March 2017) the fastest exact and approximate (compressed-domain) nearest neighbor search implementation for high-dimensional vectors, fastest Lloyd's k-means, and fastest small k-selection algorithm known. The implementation is detailed here.

Full documentation of Faiss

The following are entry points for documentation:

Authors

The main authors of Faiss are:

Reference

Reference to cite when you use Faiss in a research paper:

@article{johnson2019billion,
  title={Billion-scale similarity search with {GPUs}},
  author={Johnson, Jeff and Douze, Matthijs and J{\'e}gou, Herv{\'e}},
  journal={IEEE Transactions on Big Data},
  volume={7},
  number={3},
  pages={535--547},
  year={2019},
  publisher={IEEE}
}

Join the Faiss community

For public discussion of Faiss or for questions, there is a Facebook group at https://www.facebook.com/groups/faissusers/

We monitor the issues page of the repository. You can report bugs, ask questions, etc.

License

Faiss is MIT-licensed.