From: Aaron Watry Date: Sat, 22 Jul 2017 02:17:50 +0000 (-0500) Subject: clover/device: Move device_version into core and add device_clc_version X-Git-Tag: upstream/18.1.0~6966 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=293b3e0a3f73ef85b446259dc9422932e0b8ff49;p=platform%2Fupstream%2Fmesa.git clover/device: Move device_version into core and add device_clc_version The device version is the maximum CL version that the device supports. device_version and device_clc_version are not necessarily the same for devices that support CL 1.0, but have a 1.1 compiler and the necessary extensions. Eventually, this will be based on the features/extensions of the actual device, but for now move it a bit closer to its eventual destination. Signed-off-by: Aaron Watry Reviewed-by: Jan Vesey --- diff --git a/src/gallium/state_trackers/clover/api/device.cpp b/src/gallium/state_trackers/clover/api/device.cpp index 0b33350..b1b7917 100644 --- a/src/gallium/state_trackers/clover/api/device.cpp +++ b/src/gallium/state_trackers/clover/api/device.cpp @@ -314,7 +314,7 @@ clGetDeviceInfo(cl_device_id d_dev, cl_device_info param, break; case CL_DEVICE_VERSION: - buf.as_string() = "OpenCL 1.1 Mesa " PACKAGE_VERSION + buf.as_string() = "OpenCL " + dev.device_version() + " Mesa " PACKAGE_VERSION #ifdef MESA_GIT_SHA1 " (" MESA_GIT_SHA1 ")" #endif @@ -368,7 +368,7 @@ clGetDeviceInfo(cl_device_id d_dev, cl_device_info param, break; case CL_DEVICE_OPENCL_C_VERSION: - buf.as_string() = "OpenCL C 1.1 "; + buf.as_string() = "OpenCL C " + dev.device_clc_version() + " "; break; case CL_DEVICE_PRINTF_BUFFER_SIZE: diff --git a/src/gallium/state_trackers/clover/core/device.cpp b/src/gallium/state_trackers/clover/core/device.cpp index 8dfba1a..f6bbc38 100644 --- a/src/gallium/state_trackers/clover/core/device.cpp +++ b/src/gallium/state_trackers/clover/core/device.cpp @@ -240,3 +240,13 @@ enum pipe_endian device::endianness() const { return (enum pipe_endian)pipe->get_param(pipe, PIPE_CAP_ENDIANNESS); } + +std::string +device::device_version() const { + return "1.1"; +} + +std::string +device::device_clc_version() const { + return "1.1"; +} diff --git a/src/gallium/state_trackers/clover/core/device.hpp b/src/gallium/state_trackers/clover/core/device.hpp index 7b3353d..efc217a 100644 --- a/src/gallium/state_trackers/clover/core/device.hpp +++ b/src/gallium/state_trackers/clover/core/device.hpp @@ -74,6 +74,8 @@ namespace clover { cl_uint address_bits() const; std::string device_name() const; std::string vendor_name() const; + std::string device_version() const; + std::string device_clc_version() const; enum pipe_shader_ir ir_format() const; std::string ir_target() const; enum pipe_endian endianness() const;