added --cpu flag (run tests on CPU)

pull/13/merge
Vladislav Vinogradov 13 years ago
parent 00546f24e0
commit 93172bab87
  1. 122
      modules/gpu/perf/main.cpp
  2. 2
      modules/gpu/perf/perf_utility.cpp
  3. 2
      modules/gpu/perf/perf_utility.hpp

@ -1,107 +1,125 @@
#include "perf_precomp.hpp" #include "perf_precomp.hpp"
#ifdef HAVE_CUDA
using namespace std; using namespace std;
using namespace cv; using namespace cv;
using namespace cv::gpu; using namespace cv::gpu;
using namespace cvtest; using namespace cvtest;
using namespace testing; using namespace testing;
void printInfo() void printOsInfo()
{ {
#if defined _WIN32 #if defined _WIN32
# if defined _WIN64 # if defined _WIN64
puts("OS: Windows x64"); cout << "OS: Windows x64 \n" << endl;
# else # else
puts("OS: Windows x32"); cout << "OS: Windows x32 \n" << endl;
# endif # endif
#elif defined linux #elif defined linux
# if defined _LP64 # if defined _LP64
puts("OS: Linux x64"); cout << "OS: Linux x64 \n" << endl;
# else # else
puts("OS: Linux x32"); cout << "OS: Linux x32 \n" << endl;
# endif # endif
#elif defined __APPLE__ #elif defined __APPLE__
# if defined _LP64 # if defined _LP64
puts("OS: Apple x64"); cout << "OS: Apple x64 \n" << endl;
# else # else
puts("OS: Apple x32"); cout << "OS: Apple x32 \n" << endl;
# endif # endif
#endif #endif
}
void printCudaInfo()
{
#ifndef HAVE_CUDA
cout << "OpenCV was built without CUDA support \n" << endl;
#else
int driver; int driver;
cudaDriverGetVersion(&driver); cudaDriverGetVersion(&driver);
printf("CUDA Driver version: %d\n", driver); cout << "CUDA Driver version: " << driver << '\n';
printf("CUDA Runtime version: %d\n", CUDART_VERSION); cout << "CUDA Runtime version: " << CUDART_VERSION << '\n';
puts("GPU module was compiled for the following GPU archs:"); cout << endl;
printf(" BIN: %s\n", CUDA_ARCH_BIN);
printf(" PTX: %s\n\n", CUDA_ARCH_PTX); cout << "GPU module was compiled for the following GPU archs:" << endl;
cout << " BIN: " << CUDA_ARCH_BIN << '\n';
cout << " PTX: " << CUDA_ARCH_PTX << '\n';
cout << endl;
int deviceCount = getCudaEnabledDeviceCount(); int deviceCount = getCudaEnabledDeviceCount();
printf("CUDA device count: %d\n\n", deviceCount); cout << "CUDA device count: " << deviceCount << '\n';
cout << endl;
for (int i = 0; i < deviceCount; ++i) for (int i = 0; i < deviceCount; ++i)
{ {
DeviceInfo info(i); DeviceInfo info(i);
printf("Device %d:\n", i); cout << "Device [" << i << "] \n";
printf(" Name: %s\n", info.name().c_str()); cout << "\t Name: " << info.name() << '\n';
printf(" Compute capability version: %d.%d\n", info.majorVersion(), info.minorVersion()); cout << "\t Compute capability: " << info.majorVersion() << '.' << info.minorVersion()<< '\n';
printf(" Multi Processor Count: %d\n", info.multiProcessorCount()); cout << "\t Multi Processor Count: " << info.multiProcessorCount() << '\n';
printf(" Total memory: %d Mb\n", static_cast<int>(static_cast<int>(info.totalMemory() / 1024.0) / 1024.0)); cout << "\t Total memory: " << static_cast<int>(static_cast<int>(info.totalMemory() / 1024.0) / 1024.0) << " Mb \n";
printf(" Free memory: %d Mb\n", static_cast<int>(static_cast<int>(info.freeMemory() / 1024.0) / 1024.0)); cout << "\t Free memory: " << static_cast<int>(static_cast<int>(info.freeMemory() / 1024.0) / 1024.0) << " Mb \n";
if (!info.isCompatible()) if (!info.isCompatible())
puts(" !!! This device is NOT compatible with current GPU module build\n"); cout << "\t !!! This device is NOT compatible with current GPU module build \n";
printf("\n");
cout << endl;
} }
#endif
} }
int main(int argc, char **argv) int main(int argc, char **argv)
{ {
CommandLineParser parser(argc, (const char**)argv, CommandLineParser cmd(argc, argv,
"{ print_info_only | print_info_only | false | Print information about system and exit }" "{ print_info_only | print_info_only | false | Print information about system and exit }"
"{ device | device | 0 | Device on which tests will be executed }"); "{ device | device | 0 | Device on which tests will be executed }"
"{ cpu | cpu | false | Run tests on cpu }"
);
printInfo(); printOsInfo();
printCudaInfo();
if (parser.get<bool>("print_info_only")) if (cmd.get<bool>("print_info_only"))
return 0; return 0;
int device = parser.get<int>("device"); int device = cmd.get<int>("device");
bool cpu = cmd.get<bool>("cpu");
#ifndef HAVE_CUDA
cpu = true;
#endif
if (device < 0 || device >= getCudaEnabledDeviceCount()) if (cpu)
{ {
cerr << "Incorrect device number - " << device << endl; runOnGpu = false;
return -1;
}
DeviceInfo info(device); cout << "Run tests on CPU \n" << endl;
if (!info.isCompatible())
{
cerr << "Device " << device << " [" << info.name() << "] is NOT compatible with current GPU module build" << endl;
return -1;
} }
else
{
runOnGpu = true;
std::cout << "Run tests on device " << device << '\n' << std::endl; if (device < 0 || device >= getCudaEnabledDeviceCount())
{
cerr << "Incorrect device index - " << device << endl;
return -1;
}
setDevice(device); DeviceInfo info(device);
if (!info.isCompatible())
{
cerr << "Device " << device << " [" << info.name() << "] is NOT compatible with current GPU module build" << endl;
return -1;
}
setDevice(device);
cout << "Run tests on device " << device << " [" << info.name() << "] \n" << endl;
}
testing::InitGoogleTest(&argc, argv); testing::InitGoogleTest(&argc, argv);
perf::TestBase::Init(argc, argv); perf::TestBase::Init(argc, argv);
return RUN_ALL_TESTS(); return RUN_ALL_TESTS();
return 0;
}
#else
int main()
{
printf("OpenCV was built without CUDA support\n");
return 0;
} }
#endif

@ -4,6 +4,8 @@ using namespace std;
using namespace cv; using namespace cv;
using namespace cv::gpu; using namespace cv::gpu;
bool runOnGpu = true;
void fillRandom(Mat& m, double a, double b) void fillRandom(Mat& m, double a, double b)
{ {
RNG rng(123456789); RNG rng(123456789);

@ -6,6 +6,8 @@
#include "opencv2/imgproc/imgproc.hpp" #include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/ts/ts_perf.hpp" #include "opencv2/ts/ts_perf.hpp"
extern bool runOnGpu;
void fillRandom(cv::Mat& m, double a = 0.0, double b = 255.0); void fillRandom(cv::Mat& m, double a = 0.0, double b = 255.0);
cv::Mat readImage(const std::string& fileName, int flags = cv::IMREAD_COLOR); cv::Mat readImage(const std::string& fileName, int flags = cv::IMREAD_COLOR);

Loading…
Cancel
Save