2012-03-15 14:36:01 +00:00
|
|
|
#include "perf_precomp.hpp"
|
2013-07-24 12:01:34 +04:00
|
|
|
#include "opencv2/ts/cuda_perf.hpp"
|
2012-03-15 14:36:01 +00:00
|
|
|
|
2013-06-20 15:16:22 +04:00
|
|
|
static const char * impls[] = {
|
2013-06-19 19:16:18 +04:00
|
|
|
#ifdef HAVE_CUDA
|
2013-06-20 15:16:22 +04:00
|
|
|
"cuda",
|
2013-06-19 19:16:18 +04:00
|
|
|
#endif
|
2013-06-20 15:16:22 +04:00
|
|
|
"plain"
|
|
|
|
};
|
|
|
|
|
|
|
|
CV_PERF_TEST_MAIN_WITH_IMPLS(nonfree, impls, perf::printCudaInfo())
|