93 lines
2.9 KiB
C
93 lines
2.9 KiB
C
|
/**
|
||
|
* Copyright (c) 2015-present, Facebook, Inc.
|
||
|
* All rights reserved.
|
||
|
*
|
||
|
* This source code is licensed under the BSD+Patents license found in the
|
||
|
* LICENSE file in the root directory of this source tree.
|
||
|
*/
|
||
|
|
||
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
||
|
// -*- c -*-
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <time.h>
|
||
|
|
||
|
#include "error_c.h"
|
||
|
#include "Index_c.h"
|
||
|
#include "IndexFlat_c.h"
|
||
|
#include "AutoTune_c.h"
|
||
|
|
||
|
#define FAISS_TRY(C) \
|
||
|
{ \
|
||
|
if (C) { \
|
||
|
fprintf(stderr, "%s", faiss_get_last_error()); \
|
||
|
exit(-1); \
|
||
|
} \
|
||
|
}
|
||
|
|
||
|
inline double drand() {
|
||
|
return (double)rand() / (double)RAND_MAX;
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
time_t seed = time(NULL);
|
||
|
srand(seed);
|
||
|
printf("Generating some data...\n");
|
||
|
int d = 128; // dimension
|
||
|
int nb = 100000; // database size
|
||
|
int nq = 10000; // nb of queries
|
||
|
float *xb = malloc(d * nb * sizeof(float));
|
||
|
float *xq = malloc(d * nq * sizeof(float));
|
||
|
|
||
|
for(int i = 0; i < nb; i++) {
|
||
|
for(int j = 0; j < d; j++) xb[d * i + j] = drand();
|
||
|
xb[d * i] += i / 1000.;
|
||
|
}
|
||
|
for(int i = 0; i < nq; i++) {
|
||
|
for(int j = 0; j < d; j++) xq[d * i + j] = drand();
|
||
|
xq[d * i] += i / 1000.;
|
||
|
}
|
||
|
|
||
|
printf("Building an index...\n");
|
||
|
|
||
|
FaissIndex* index = NULL;
|
||
|
FAISS_TRY(faiss_index_factory(&index, d, "Flat", METRIC_L2)); // use factory to create index
|
||
|
printf("is_trained = %s\n", faiss_Index_is_trained(index) ? "true" : "false");
|
||
|
FAISS_TRY(faiss_Index_add(index, nb, xb)); // add vectors to the index
|
||
|
printf("ntotal = %ld\n", faiss_Index_ntotal(index));
|
||
|
|
||
|
printf("Searching...\n");
|
||
|
int k = 5;
|
||
|
|
||
|
{ // sanity check: search 5 first vectors of xb
|
||
|
long *I = malloc(k * 5 * sizeof(long));
|
||
|
float *D = malloc(k * 5 * sizeof(float));
|
||
|
FAISS_TRY(faiss_Index_search(index, 5, xb, k, D, I));
|
||
|
printf("I=\n");
|
||
|
for(int i = 0; i < 5; i++) {
|
||
|
for(int j = 0; j < k; j++) printf("%5ld (d=%2.3f) ", I[i * k + j], D[i * k + j]);
|
||
|
printf("\n");
|
||
|
}
|
||
|
free(I);
|
||
|
free(D);
|
||
|
}
|
||
|
{ // search xq
|
||
|
long *I = malloc(k * nq * sizeof(long));
|
||
|
float *D = malloc(k * nq * sizeof(float));
|
||
|
FAISS_TRY(faiss_Index_search(index, 5, xb, k, D, I));
|
||
|
printf("I=\n");
|
||
|
for(int i = 0; i < 5; i++) {
|
||
|
for(int j = 0; j < k; j++) printf("%5ld (d=%2.3f) ", I[i * k + j], D[i * k + j]);
|
||
|
printf("\n");
|
||
|
}
|
||
|
free(I);
|
||
|
free(D);
|
||
|
}
|
||
|
|
||
|
printf("Freeing index...\n");
|
||
|
faiss_Index_free(index);
|
||
|
printf("Done.\n");
|
||
|
|
||
|
return 0;
|
||
|
}
|