mirror of
https://github.com/opencv/opencv.git
synced 2024-11-29 22:00:25 +08:00
15 lines
253 B
C++
15 lines
253 B
C++
#include "perf_precomp.hpp"
|
|
#include "opencv2/ts/gpu_perf.hpp"
|
|
|
|
static const char * impls[] = {
|
|
#ifdef HAVE_CUDA
|
|
"cuda",
|
|
#endif
|
|
#ifdef HAVE_OPENCL
|
|
"ocl",
|
|
#endif
|
|
"plain"
|
|
};
|
|
|
|
CV_PERF_TEST_MAIN_WITH_IMPLS(nonfree, impls, perf::printCudaInfo())
|