Merge pull request #1030 from SpecLad:ts-impl-variants

This commit is contained in:
Roman Donchenko
2013-06-24 18:28:13 +04:00
committed by OpenCV Buildbot
5 changed files with 134 additions and 50 deletions

View File

@@ -44,4 +44,11 @@
using namespace perf;
CV_PERF_TEST_MAIN(gpu, printCudaInfo())
static const char * impls[] = {
#ifdef HAVE_CUDA
"cuda",
#endif
"plain"
};
CV_PERF_TEST_MAIN_WITH_IMPLS(gpu, impls, printCudaInfo())