Unverified Commit 431545ee authored by Matthijs Douze's avatar Matthijs Douze Committed by GitHub

delete faiss.h

leftover include file
parent 53876970
/**
* 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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment