forked from facebookresearch/faiss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
faiss.h
46 lines (34 loc) · 1.08 KB
/
faiss.h
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
/**
* 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. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
// Copyright 2004-present Facebook. All Rights Reserved
// -*- c++ -*-
// This is the main internal include file for Faiss. It defines
// macros and some machine-specific functions shared across .cpp files
#ifndef FAISS_h
#define FAISS_h
#include <stdint.h>
#include <stdlib.h>
#include <stddef.h>
#ifndef __SSE2__
#error "SSE optimized distance computations not set"
#endif
#ifdef _OPENMP
#include <omp.h>
#define SET_NT(ntlim) \
size_t nt = omp_get_max_threads(); \
if (nt > ntlim) nt = ntlim;
#else
#warning "OpenMP is NOT activated"
#define SET_NT(ntlim) size_t nt = 0; nt++;
#endif
/* This is to prevent warning by the linter (FINTEGER is defined externally) */
#ifndef FINTEGER
#define FINTEGER long
#endif
#endif