opencv/modules/nonfree/perf/perf_main.cpp

15 lines
253 B
C++
Raw Normal View History

#include "perf_precomp.hpp"
2013-03-18 14:42:27 +04:00
#include "opencv2/ts/gpu_perf.hpp"
static const char * impls[] = {
#ifdef HAVE_CUDA
"cuda",
2014-02-02 18:24:21 +04:00
#endif
#ifdef HAVE_OPENCL
"ocl",
#endif
"plain"
};
CV_PERF_TEST_MAIN_WITH_IMPLS(nonfree, impls, perf::printCudaInfo())