2020-10-13 11:14:25 -07:00
|
|
|
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
|
|
#
|
|
|
|
# This source code is licensed under the MIT license found in the
|
|
|
|
# LICENSE file in the root directory of this source tree.
|
2020-08-03 22:15:02 +02:00
|
|
|
|
|
|
|
import faiss
|
|
|
|
import time
|
2020-10-08 17:48:45 -07:00
|
|
|
import numpy as np
|
2020-08-03 22:15:02 +02:00
|
|
|
|
|
|
|
import logging
|
|
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
def knn_ground_truth(xq, db_iterator, k):
|
|
|
|
"""Computes the exact KNN search results for a dataset that possibly
|
|
|
|
does not fit in RAM but for whihch we have an iterator that
|
|
|
|
returns it block by block.
|
|
|
|
"""
|
|
|
|
t0 = time.time()
|
|
|
|
nq, d = xq.shape
|
|
|
|
rh = faiss.ResultHeap(nq, k)
|
|
|
|
|
|
|
|
index = faiss.IndexFlatL2(d)
|
|
|
|
if faiss.get_num_gpus():
|
|
|
|
LOG.info('running on %d GPUs' % faiss.get_num_gpus())
|
|
|
|
index = faiss.index_cpu_to_all_gpus(index)
|
|
|
|
|
|
|
|
# compute ground-truth by blocks of bs, and add to heaps
|
|
|
|
i0 = 0
|
|
|
|
for xbi in db_iterator:
|
|
|
|
ni = xbi.shape[0]
|
|
|
|
index.add(xbi)
|
|
|
|
D, I = index.search(xq, k)
|
|
|
|
I += i0
|
|
|
|
rh.add_result(D, I)
|
|
|
|
index.reset()
|
|
|
|
i0 += ni
|
|
|
|
LOG.info("%d db elements, %.3f s" % (i0, time.time() - t0))
|
|
|
|
|
|
|
|
rh.finalize()
|
|
|
|
LOG.info("GT time: %.3f s (%d vectors)" % (time.time() - t0, i0))
|
|
|
|
|
|
|
|
return rh.D, rh.I
|
2020-10-08 17:48:45 -07:00
|
|
|
|
2020-10-09 07:55:44 -07:00
|
|
|
def knn(xq, xb, k, distance_type=faiss.METRIC_L2):
|
|
|
|
""" wrapper around the faiss knn functions without index """
|
|
|
|
nq, d = xq.shape
|
|
|
|
nb, d2 = xb.shape
|
|
|
|
assert d == d2
|
|
|
|
|
|
|
|
I = np.empty((nq, k), dtype='int64')
|
|
|
|
D = np.empty((nq, k), dtype='float32')
|
|
|
|
|
|
|
|
if distance_type == faiss.METRIC_L2:
|
|
|
|
heaps = faiss.float_maxheap_array_t()
|
|
|
|
heaps.k = k
|
|
|
|
heaps.nh = nq
|
|
|
|
heaps.val = faiss.swig_ptr(D)
|
|
|
|
heaps.ids = faiss.swig_ptr(I)
|
|
|
|
faiss.knn_L2sqr(
|
|
|
|
faiss.swig_ptr(xq), faiss.swig_ptr(xb),
|
|
|
|
d, nq, nb, heaps
|
|
|
|
)
|
|
|
|
elif distance_type == faiss.METRIC_INNER_PRODUCT:
|
|
|
|
heaps = faiss.float_minheap_array_t()
|
|
|
|
heaps.k = k
|
|
|
|
heaps.nh = nq
|
|
|
|
heaps.val = faiss.swig_ptr(D)
|
|
|
|
heaps.ids = faiss.swig_ptr(I)
|
|
|
|
faiss.knn_inner_product(
|
|
|
|
faiss.swig_ptr(xq), faiss.swig_ptr(xb),
|
|
|
|
d, nq, nb, heaps
|
|
|
|
)
|
|
|
|
return D, I
|