summaryrefslogtreecommitdiff
path: root/src/clpp11.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/clpp11.hpp')
-rw-r--r--src/clpp11.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/clpp11.hpp b/src/clpp11.hpp
index 82fc44fd..0db64ad9 100644
--- a/src/clpp11.hpp
+++ b/src/clpp11.hpp
@@ -352,6 +352,13 @@ class Device {
std::string{"."} + std::to_string(GetInfo<cl_uint>(CL_DEVICE_COMPUTE_CAPABILITY_MINOR_NV));
}
+ // Retrieves the above extra information (if present)
+ std::string GetExtraInfo() const {
+ if (HasExtension("cl_amd_device_attribute_query")) { return AMDBoardName(); }
+ if (HasExtension("cl_nv_device_attribute_query")) { return NVIDIAComputeCapability(); }
+ else { return std::string{""}; }
+ }
+
// Accessor to the private data-member
const RawDeviceID& operator()() const { return device_; }
private: