]> rtime.felk.cvut.cz Git - hercules2020/kcf.git/blobdiff - Makefile
Merge branch 'cuda-streams'
[hercules2020/kcf.git] / Makefile
index fe0f1608200bd4466a5811e94494834cf780a00f..82912b3655abf0e0553f8d9b69e23900e5690b78 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 # Makefile to build all the available variants
 
-BUILDS = opencvfft-st opencvfft-async fftw fftw_openmp fftw_async fftw_big fftw_big_openmp cufftw cufftw_big cufftw_big_openmp cufft cufft_big cufft_big_openmp
+BUILDS = opencvfft-st opencvfft-async opencvfft-openmp fftw fftw-async fftw-openmp fftw-big fftw-big-openmp cufftw cufftw-big cufftw-big-openmp cufft cufft-openmp cufft-big cufft-big-openmp
 
 all: $(foreach build,$(BUILDS),build-$(build)/kcf_vot)
 
@@ -9,17 +9,19 @@ CMAKE_OPTS += -G Ninja
 
 CMAKE_OTPS_opencvfft-st      = -DFFT=OpenCV
 CMAKE_OTPS_opencvfft-async   = -DFFT=OpenCV -DASYNC=ON
+CMAKE_OTPS_opencvfft-openmp  = -DFFT=OpenCV -DOPENMP=ON
 CMAKE_OTPS_fftw              = -DFFT=fftw
-CMAKE_OTPS_fftw_openmp       = -DFFT=fftw -DOPENMP=ON
-CMAKE_OTPS_fftw_async        = -DFFT=fftw -DASYNC=ON
-CMAKE_OTPS_fftw_big          = -DFFT=fftw -DBIG_BATCH=ON
-CMAKE_OTPS_fftw_big_openmp   = -DFFT=fftw -DBIG_BATCH=ON -DOPENMP=ON
+CMAKE_OTPS_fftw-openmp       = -DFFT=fftw -DOPENMP=ON
+CMAKE_OTPS_fftw-async        = -DFFT=fftw -DASYNC=ON
+CMAKE_OTPS_fftw-big          = -DFFT=fftw -DBIG_BATCH=ON
+CMAKE_OTPS_fftw-big-openmp   = -DFFT=fftw -DBIG_BATCH=ON -DOPENMP=ON
 CMAKE_OTPS_cufftw            = -DFFT=cuFFTW
-CMAKE_OTPS_cufftw_big        = -DFFT=cuFFTW -DBIG_BATCH=ON
-CMAKE_OTPS_cufftw_big_openmp = -DFFT=cuFFTW -DBIG_BATCH=ON -DOPENMP=ON
+CMAKE_OTPS_cufftw-big        = -DFFT=cuFFTW -DBIG_BATCH=ON
+CMAKE_OTPS_cufftw-big-openmp = -DFFT=cuFFTW -DBIG_BATCH=ON -DOPENMP=ON
 CMAKE_OTPS_cufft             = -DFFT=cuFFT
-CMAKE_OTPS_cufft_big         = -DFFT=cuFFT -DBIG_BATCH=ON
-CMAKE_OTPS_cufft_big_openmp  = -DFFT=cuFFT -DBIG_BATCH=ON -DOPENMP=ON
+CMAKE_OTPS_cufft-openmp             = -DFFT=cuFFT -DOPENMP=ON
+CMAKE_OTPS_cufft-big         = -DFFT=cuFFT -DBIG_BATCH=ON
+CMAKE_OTPS_cufft-big-openmp  = -DFFT=cuFFT -DBIG_BATCH=ON -DOPENMP=ON
 
 .SECONDARY: $(BUILDS:%=build-%/build.ninja)