cl_int clGetPlatformInfo(
| cl_platform_id platform, |
cl_platform_info param_name, | |
size_t param_value_size, | |
void *param_value, | |
size_t *param_value_size_ret) |
platform
The platform ID returned by
clGetPlatformIDs
or can be NULL. If platform
is NULL, the behavior is
implementation-defined.
param_name
An enumeration constant that identifies the platform information being queried. It can be one of the values specified in the table below.
param_value
A pointer to memory location where appropriate values for a
given param_name
will be returned. Possible
param_value
values returned are listed in the table
below. If param_value
is NULL, it is ignored.
param_value_size
Specifies the size in bytes of memory pointed to by
param_value
. This size in bytes must be ≥ size of return
type specified in the table below.
param_value_size_ret
Returns the actual size in bytes of data being queried by
param_value
. If param_value_size_ret
is NULL, it is ignored
cl_platform_info | Return Type | Description |
---|---|---|
CL_PLATFORM_PROFILE
|
char[] |
OpenCL profile string. Returns the profile name supported by the implementation. The profile name returned can be one of the following strings: FULL_PROFILE - if the implementation supports the OpenCL specification (functionality defined as part of the core specification and does not require any extensions to be supported). EMBEDDED_PROFILE - if the implementation supports the OpenCL embedded profile. The embedded profile is defined to be a subset for each version of OpenCL. The embedded profile for OpenCL 2.0 is described in section 10 of the OpenCL Specification. |
CL_PLATFORM_VERSION
|
char[] |
OpenCL version string. Returns the OpenCL version supported by the implementation. This version string has the following format:
The |
CL_PLATFORM_NAME
|
char[] | Platform name string. |
CL_PLATFORM_VENDOR
|
char[] | Platform vendor string. |
CL_PLATFORM_EXTENSIONS
|
char[] |
Returns a space-separated list of extension names (the extension names themselves do not contain any spaces) supported by the platform. Extensions defined here must be supported by all devices associated with this platform. |
CL_PLATFORM_ICD_SUFFIX_KHR
|
char[] |
If the cl_khr_icd extension is enabled, the function name suffix used to identify extension functions to be directed to this platform by the ICD Loader. |
A null terminated string is returned by OpenCL query function calls if the return type of the information being queried is a char[].
Returns CL_SUCCESS if the function is executed successfully. Otherwise, it returns the following: (The OpenCL specification does not describe the order of precedence for error codes returned by API calls)
platform
is not a valid platform.
param_name
is not one of
the supported values or if size in bytes specified by param_value_size
is less than size of return type and param_value
is not a NULL value.