diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-09-13 21:28:09 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-09-19 17:03:19 +0200 |
commit | 783179c1534e6382a064bd9005157b77e2a6efbb (patch) | |
tree | 754e99fb33c1f557eccdc45239b902f897a8eda2 /sc/inc | |
parent | 8fa1a8b41ef59e1b3582f1ff1f1cca89edbd5acc (diff) |
show compute units, frequency and memory for opencl devices
Change-Id: Ib322a429a3d29ed985702dc1b5cb9d1cb0a1ac07
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/platforminfo.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sc/inc/platforminfo.hxx b/sc/inc/platforminfo.hxx index bae6e41d9949..d848525bf543 100644 --- a/sc/inc/platforminfo.hxx +++ b/sc/inc/platforminfo.hxx @@ -23,6 +23,9 @@ struct SC_DLLPUBLIC OpenclDeviceInfo size_t mnId; OUString maName; OUString maVendor; + size_t mnMemory; + size_t mnComputeUnits; + size_t mnFrequency; }; struct SC_DLLPUBLIC OpenclPlatformInfo |