mirror of
https://github.com/opencv/opencv.git
synced 2024-12-14 17:29:17 +08:00
21 lines
315 B
C++
21 lines
315 B
C++
#include "perf_cpu_precomp.hpp"
|
|
|
|
#ifdef HAVE_CUDA
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
testing::InitGoogleTest(&argc, argv);
|
|
perf::TestBase::Init(argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|
|
|
|
#else
|
|
|
|
int main()
|
|
{
|
|
printf("OpenCV was built without CUDA support\n");
|
|
return 0;
|
|
}
|
|
|
|
#endif
|