1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
|
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
// -*- c++ -*-
#include "Index_c.h"
#include <faiss/Index.h>
#include <faiss/impl/IDSelector.h>
#include "macros_impl.h"
extern "C" {
DEFINE_DESTRUCTOR(SearchParameters)
int faiss_SearchParameters_new(
FaissSearchParameters** p_sp,
FaissIDSelector* sel) {
try {
faiss::SearchParameters* params = new faiss::SearchParameters;
params->sel = reinterpret_cast<faiss::IDSelector*>(sel);
*p_sp = reinterpret_cast<FaissSearchParameters*>(params);
return 0;
}
CATCH_AND_HANDLE
}
DEFINE_DESTRUCTOR(Index)
DEFINE_GETTER(Index, int, d)
DEFINE_GETTER(Index, int, is_trained)
DEFINE_GETTER(Index, idx_t, ntotal)
DEFINE_GETTER(Index, FaissMetricType, metric_type)
DEFINE_GETTER(Index, int, verbose);
DEFINE_SETTER(Index, int, verbose);
int faiss_Index_train(FaissIndex* index, idx_t n, const float* x) {
try {
reinterpret_cast<faiss::Index*>(index)->train(n, x);
}
CATCH_AND_HANDLE
}
int faiss_Index_add(FaissIndex* index, idx_t n, const float* x) {
try {
reinterpret_cast<faiss::Index*>(index)->add(n, x);
}
CATCH_AND_HANDLE
}
int faiss_Index_add_with_ids(
FaissIndex* index,
idx_t n,
const float* x,
const idx_t* xids) {
try {
reinterpret_cast<faiss::Index*>(index)->add_with_ids(n, x, xids);
}
CATCH_AND_HANDLE
}
int faiss_Index_search(
const FaissIndex* index,
idx_t n,
const float* x,
idx_t k,
float* distances,
idx_t* labels) {
try {
reinterpret_cast<const faiss::Index*>(index)->search(
n, x, k, distances, labels);
}
CATCH_AND_HANDLE
}
int faiss_Index_search_with_params(
const FaissIndex* index,
idx_t n,
const float* x,
idx_t k,
const FaissSearchParameters* params,
float* distances,
idx_t* labels) {
try {
reinterpret_cast<const faiss::Index*>(index)->search(
n,
x,
k,
distances,
labels,
reinterpret_cast<const faiss::SearchParameters*>(params));
}
CATCH_AND_HANDLE
}
int faiss_Index_range_search(
const FaissIndex* index,
idx_t n,
const float* x,
float radius,
FaissRangeSearchResult* result) {
try {
reinterpret_cast<const faiss::Index*>(index)->range_search(
n,
x,
radius,
reinterpret_cast<faiss::RangeSearchResult*>(result));
}
CATCH_AND_HANDLE
}
int faiss_Index_assign(
FaissIndex* index,
idx_t n,
const float* x,
idx_t* labels,
idx_t k) {
try {
reinterpret_cast<faiss::Index*>(index)->assign(n, x, labels, k);
}
CATCH_AND_HANDLE
}
int faiss_Index_reset(FaissIndex* index) {
try {
reinterpret_cast<faiss::Index*>(index)->reset();
}
CATCH_AND_HANDLE
}
int faiss_Index_remove_ids(
FaissIndex* index,
const FaissIDSelector* sel,
size_t* n_removed) {
try {
size_t n{reinterpret_cast<faiss::Index*>(index)->remove_ids(
*reinterpret_cast<const faiss::IDSelector*>(sel))};
if (n_removed) {
*n_removed = n;
}
}
CATCH_AND_HANDLE
}
int faiss_Index_reconstruct(const FaissIndex* index, idx_t key, float* recons) {
try {
reinterpret_cast<const faiss::Index*>(index)->reconstruct(key, recons);
}
CATCH_AND_HANDLE
}
int faiss_Index_reconstruct_n(
const FaissIndex* index,
idx_t i0,
idx_t ni,
float* recons) {
try {
reinterpret_cast<const faiss::Index*>(index)->reconstruct_n(
i0, ni, recons);
}
CATCH_AND_HANDLE
}
int faiss_Index_compute_residual(
const FaissIndex* index,
const float* x,
float* residual,
idx_t key) {
try {
reinterpret_cast<const faiss::Index*>(index)->compute_residual(
x, residual, key);
}
CATCH_AND_HANDLE
}
int faiss_Index_compute_residual_n(
const FaissIndex* index,
idx_t n,
const float* x,
float* residuals,
const idx_t* keys) {
try {
reinterpret_cast<const faiss::Index*>(index)->compute_residual_n(
n, x, residuals, keys);
}
CATCH_AND_HANDLE
}
int faiss_Index_sa_code_size(const FaissIndex* index, size_t* size) {
try {
*size = reinterpret_cast<const faiss::Index*>(index)->sa_code_size();
}
CATCH_AND_HANDLE
}
int faiss_Index_sa_encode(
const FaissIndex* index,
idx_t n,
const float* x,
uint8_t* bytes) {
try {
reinterpret_cast<const faiss::Index*>(index)->sa_encode(n, x, bytes);
}
CATCH_AND_HANDLE
}
int faiss_Index_sa_decode(
const FaissIndex* index,
idx_t n,
const uint8_t* bytes,
float* x) {
try {
reinterpret_cast<const faiss::Index*>(index)->sa_decode(n, bytes, x);
}
CATCH_AND_HANDLE
}
}
|