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
42
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#ifndef INCLUDED_OPENCL_OPENCLCONFIG_HXX
#define INCLUDED_OPENCL_OPENCLCONFIG_HXX
#include <ostream>
#include <set>
#include <opencl/opencldllapi.h>
#include <opencl/platforminfo.hxx>
#include <rtl/ustring.hxx>
struct OPENCL_DLLPUBLIC OpenCLConfig
{
struct ImplMatcher
{
OUString maOS;
OUString maOSVersion;
OUString maPlatformVendor;
OUString maDevice;
OUString maDriverVersion;
ImplMatcher()
{
}
ImplMatcher(const OUString& rOS,
const OUString& rOSVersion,
const OUString& rPlatformVendor,
const OUString& rDevice,
const OUString& rDriverVersion)
: maOS(rOS),
maOSVersion(rOSVersion),
maPlatformVendor(rPlatformVendor),
maDevice(rDevice),
maDriverVersion(rDriverVersion)
{
}
bool operator==(const ImplMatcher& r) const
{
return maOS == r.maOS &&
maOSVersion == r.maOSVersion &&
maPlatformVendor == r.maPlatformVendor &&
maDevice == r.maDevice &&
maDriverVersion == r.maDriverVersion;
}
bool operator!=(const ImplMatcher& r) const
{
return !operator==(r);
}
bool operator<(const ImplMatcher& r) const
{
return (maOS < r.maOS ||
(maOS == r.maOS &&
(maOSVersion < r.maOSVersion ||
(maOSVersion == r.maOSVersion &&
(maPlatformVendor < r.maPlatformVendor ||
(maPlatformVendor == r.maPlatformVendor &&
(maDevice < r.maDevice ||
(maDevice == r.maDevice &&
(maDriverVersion < r.maDriverVersion)))))))));
}
};
bool mbUseOpenCL;
typedef std::set<ImplMatcher> ImplMatcherSet;
ImplMatcherSet maBlackList;
ImplMatcherSet maWhiteList;
OpenCLConfig();
bool operator== (const OpenCLConfig& r) const;
bool operator!= (const OpenCLConfig& r) const;
static OpenCLConfig get();
void set();
bool checkImplementation(const OpenCLPlatformInfo& rPlatform, const OpenCLDeviceInfo& rDevice) const;
};
OPENCL_DLLPUBLIC std::ostream& operator<<(std::ostream& rStream, const OpenCLConfig& rConfig);
OPENCL_DLLPUBLIC std::ostream& operator<<(std::ostream& rStream, const OpenCLConfig::ImplMatcher& rImpl);
OPENCL_DLLPUBLIC std::ostream& operator<<(std::ostream& rStream, const OpenCLConfig::ImplMatcherSet& rSet);
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|