mirror of
https://github.com/facebookresearch/faiss.git
synced 2025-06-03 01:06:07 +08:00
Summary: IndexPQ and IndexIVFPQ implementations with AVX shuffle instructions. The training and computing of the codes does not change wrt. the original PQ versions but the code layout is "packed" so that it can be used efficiently by the SIMD computation kernels. The main changes are: - new IndexPQFastScan and IndexIVFPQFastScan objects - simdib.h for an abstraction above the AVX2 intrinsics - BlockInvertedLists for invlists that are 32-byte aligned and where codes are not sequential - pq4_fast_scan.h/.cpp: for packing codes and look-up tables + optmized distance comptuation kernels - simd_result_hander.h: SIMD version of result collection in heaps / reservoirs Misc changes: - added contrib.inspect_tools to access fields in C++ objects - moved .h and .cpp code for inverted lists to an invlists/ subdirectory, and made a .h/.cpp for InvertedListsIOHook - added a new inverted lists type with 32-byte aligned codes (for consumption by SIMD) - moved Windows-specific intrinsics to platfrom_macros.h Pull Request resolved: https://github.com/facebookresearch/faiss/pull/1542 Test Plan: ``` buck test mode/opt -j 4 //faiss/tests/:test_fast_scan_ivf //faiss/tests/:test_fast_scan buck test mode/opt //faiss/manifold/... ``` Reviewed By: wickedfoo Differential Revision: D25175439 Pulled By: mdouze fbshipit-source-id: ad1a40c0df8c10f4b364bdec7172e43d71b56c34
37 lines
782 B
Python
37 lines
782 B
Python
#! /usr/bin/env python3
|
|
|
|
# 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.
|
|
|
|
"""small test script to benchmark the SIMD implementation of the
|
|
distance computations for the additional metrics. Call eg. with L1 to
|
|
get L1 distance computations.
|
|
"""
|
|
|
|
import faiss
|
|
|
|
import sys
|
|
import time
|
|
|
|
d = 64
|
|
nq = 4096
|
|
nb = 16384
|
|
|
|
print("sample")
|
|
|
|
xq = faiss.randn((nq, d), 123)
|
|
xb = faiss.randn((nb, d), 123)
|
|
|
|
mt_name = "L2" if len(sys.argv) < 2 else sys.argv[1]
|
|
|
|
mt = getattr(faiss, "METRIC_" + mt_name)
|
|
|
|
print("distances")
|
|
t0 = time.time()
|
|
dis = faiss.pairwise_distances(xq, xb, mt)
|
|
t1 = time.time()
|
|
|
|
print("nq=%d nb=%d d=%d %s: %.3f s" % (nq, nb, d, mt_name, t1 - t0))
|