mirror of
https://github.com/facebookresearch/faiss.git
synced 2025-06-03 21:54:02 +08:00
* Refactors Makefiles and add configure script. * Give MKL higher priority in configure script. * Clean up Linux example makefile.inc. * Cleanup makefile.inc examples. * Fix python clean Makefile target. * Regen swig wrappers. * Remove useless CUDAFLAGS variable. * Fix python linking flags. * Separate compile and link phase in python makefile. * Add macro to look for swig. * Add CUDA check in configure script. * Cleanup make depend targets. * Cleanup CUDA flags. * Fix linking flags. * Fix python GPU linking. * Remove useless flags from python gpu module linking. * Add check for cuda libs. * Cleanup GPU targets. * Clean up test target. * Add cpu/gpu targets to python makefile. * Clean up tutorial Makefile. * Remove stale OS var from example makefiles. * Clean up cuda example flags.
30 lines
695 B
Makefile
30 lines
695 B
Makefile
# 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.
|
|
|
|
-include ../../makefile.inc
|
|
|
|
CPU_TARGETS = 1-Flat 2-IVFFlat 3-IVFPQ
|
|
GPU_TARGETS = 4-GPU 5-Multiple-GPUs
|
|
|
|
default: cpu
|
|
|
|
all: cpu gpu
|
|
|
|
cpu: $(CPU_TARGETS)
|
|
|
|
gpu: $(GPU_TARGETS)
|
|
|
|
$(CPU_TARGETS): %: %.cpp ../../libfaiss.a
|
|
$(CXX) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -I../../.. $(LIBS)
|
|
|
|
$(GPU_TARGETS): %: %.cpp ../../libfaiss.a ../../gpu/libgpufaiss.a
|
|
$(NVCC) $(NVCCFLAGS) -o $@ $^ $(NVCCLDFLAGS) -I../../.. $(NVCCLIBS)
|
|
|
|
clean:
|
|
rm -f $(CPU_TARGETS) $(GPU_TARGETS)
|
|
|
|
.PHONY: all cpu default gpu clean
|