mirror of
https://github.com/facebookresearch/faiss.git
synced 2025-06-03 21:54:02 +08:00
* Facebook sync (2019-09-10) * Fix depends Makefile target. * Add faiss symlink for new include directives. * Fix missing header. * Fix tests. * Fix Makefile. * Update depend. * Fix include directives spacing.
40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
/**
|
|
* 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.
|
|
*/
|
|
|
|
|
|
#pragma once
|
|
|
|
#include <faiss/gpu/impl/GpuScalarQuantizer.cuh>
|
|
#include <faiss/gpu/GpuIndicesOptions.h>
|
|
#include <faiss/gpu/utils/Tensor.cuh>
|
|
#include <faiss/Index.h>
|
|
#include <thrust/device_vector.h>
|
|
|
|
namespace faiss { namespace gpu {
|
|
|
|
class GpuResources;
|
|
|
|
void runIVFFlatScan(Tensor<float, 2, true>& queries,
|
|
Tensor<int, 2, true>& listIds,
|
|
thrust::device_vector<void*>& listData,
|
|
thrust::device_vector<void*>& listIndices,
|
|
IndicesOptions indicesOptions,
|
|
thrust::device_vector<int>& listLengths,
|
|
int maxListLength,
|
|
int k,
|
|
faiss::MetricType metric,
|
|
bool useResidual,
|
|
Tensor<float, 3, true>& residualBase,
|
|
GpuScalarQuantizer* scalarQ,
|
|
// output
|
|
Tensor<float, 2, true>& outDistances,
|
|
// output
|
|
Tensor<long, 2, true>& outIndices,
|
|
GpuResources* res);
|
|
|
|
} } // namespace
|