Skip to content

Brute force search without an index

Matthijs Douze edited this page Oct 2, 2020 · 11 revisions

In the case of IndexFlat, the added data is just copied to the index without further encoding or organization. Therefore, it may be useful to short-circuit the indexing altogether. This makes it possible to:

  • avoid having two copies of the same data in memory

  • do updates on the data between searches.

Faiss provides low-level functions to do the brute-force search in this context.

The functions take a matrix of database vectors and a matrix of query vectors and return the k-nearest neighbors and their distances.

Brute force search on CPU

On CPU, the relevant function is knn_L2sqr or knn_inner_product.

Example usage in Python: search_without_index.py

Brute force search on GPU

On GPU, the relevant function is bruteForceKnn. An additional advantage is that it takes both CPU and GPU resident data as input or output.

An example usage in python, from pytorch GPU data is here: test_pytorch_faiss.py

Note that on GPU, the synchronization is needed because Faiss uses a non-default CUDA stream. The easiest workaround is to force it to use the default stream. This is done via

res = faiss.StandardGpuResources()
res.setDefaultNullStreamAllDevices()

Also, by default the amount of memory allocated by the resource object is too large for simple brute force. You can set:

res.setTempMemory(64 * 1024 * 1024)

ie. use only 64M (if that is not enough, try a few other values, according to some reports setting to 0 works just fine).

Combining the results from several searches

When the number of query vectors is limited, the best indexing method is to not index at all and use brute force search. This can be problematic when the dataset vectors do not fit in RAM or GPU RAM. In that case, it is efficient to search the xq vectors in slices xb of the database vectors. To maintain the top-k nearest neighbors seen so far, use a ResultHeap structure:

https://github.com/facebookresearch/faiss/blob/master/benchs/bench_all_ivf/datasets.py#L75

Clone this wiki locally