perf_main.cpp 277 B

123456789101112131415
  1. #include "perf_precomp.hpp"
  2. #include "opencv2/ts/cuda_perf.hpp"
  3. static const char * impls[] = {
  4. #ifdef HAVE_CUDA
  5. "cuda",
  6. #endif
  7. "plain"
  8. };
  9. #if defined(HAVE_HPX)
  10. #include <hpx/hpx_main.hpp>
  11. #endif
  12. CV_PERF_TEST_MAIN_WITH_IMPLS(photo, impls, perf::printCudaInfo())