main.cpp 4.06 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
/*M///////////////////////////////////////////////////////////////////////////////////////
//
//  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
//  By downloading, copying, installing or using the software you agree to this license.
//  If you do not agree to this license, do not download, install,
//  copy or use the software.
//
//
//                        Intel License Agreement
//                For Open Source Computer Vision Library
//
// Copyright (C) 2000, Intel Corporation, all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
//   * Redistribution's of source code must retain the above copyright notice,
//     this list of conditions and the following disclaimer.
//
//   * Redistribution's in binary form must reproduce the above copyright notice,
//     this list of conditions and the following disclaimer in the documentation
//     and/or other materials provided with the distribution.
//
//   * The name of Intel Corporation may not be used to endorse or promote products
//     derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/

42
#include "test_precomp.hpp"
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77

#ifdef HAVE_OPENCL

using namespace std;
using namespace cv;
using namespace cv::ocl;
using namespace cvtest;
using namespace testing;

void print_info()
{
    printf("\n");
#if defined _WIN32
#   if defined _WIN64
    puts("OS: Windows 64");
#   else
    puts("OS: Windows 32");
#   endif
#elif defined linux
#   if defined _LP64
    puts("OS: Linux 64");
#   else
    puts("OS: Linux 32");
#   endif
#elif defined __APPLE__
#   if defined _LP64
    puts("OS: Apple 64");
#   else
    puts("OS: Apple 32");
#   endif
#endif

}
int main(int argc, char **argv)
{
78
    TS::ptr()->init(".");
79
    InitGoogleTest(&argc, argv);
Niko's avatar
Niko committed
80 81 82 83 84
    const char *keys =
        "{ h | help     | false              | print help message }"
        "{ t | type     | gpu                | set device type:cpu or gpu}"
        "{ p | platform | 0                  | set platform id }"
        "{ d | device   | 0                  | set device id }";
85

Niko's avatar
Niko committed
86 87 88 89 90 91 92 93 94 95
    CommandLineParser cmd(argc, argv, keys);
    if (cmd.get<bool>("help"))
    {
        cout << "Avaible options besides goole test option:" << endl;
        cmd.printParams();
        return 0;
    }
    string type = cmd.get<string>("type");
    unsigned int pid = cmd.get<unsigned int>("platform");
    int device = cmd.get<int>("device");
96

Niko's avatar
Niko committed
97 98 99 100 101 102
    print_info();
    int flag = CVCL_DEVICE_TYPE_GPU;
    if(type == "cpu")
    {
        flag = CVCL_DEVICE_TYPE_CPU;
    }
103
    std::vector<cv::ocl::Info> oclinfo;
Niko's avatar
Niko committed
104 105 106 107 108 109 110
    int devnums = getDevice(oclinfo, flag);
    if(devnums <= device || device < 0)
    {
        std::cout << "device invalid\n";
        return -1;
    }
    if(pid >= oclinfo.size())
111
    {
Niko's avatar
Niko committed
112
        std::cout << "platform invalid\n";
113 114
        return -1;
    }
115 116 117

    setDevice(oclinfo[pid], device);

yao's avatar
yao committed
118 119
    setBinaryDiskCache(CACHE_UPDATE);

Niko's avatar
Niko committed
120
    cout << "Device type:" << type << endl << "Device name:" << oclinfo[pid].DeviceName[device] << endl;
121 122 123
    return RUN_ALL_TESTS();
}

niko's avatar
niko committed
124
#else // DON'T HAVE_OPENCL
125 126 127 128 129 130 131 132 133

int main()
{
    printf("OpenCV was built without OpenCL support\n");
    return 0;
}


#endif // HAVE_OPENCL