/** * 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. */ #include "../utils/DeviceTensor.cuh" namespace faiss { namespace gpu { // Performs brute-force k-NN comparison between `vecs` and `query`, where they // are encoded as binary vectors void runBinaryDistance(Tensor& vecs, Tensor& query, Tensor& outK, Tensor& outV, int k, cudaStream_t stream); } } // namespace