I have an AMD w7000 firepro Card installed. When i query its properties, instead of showing its own properties, it just shows the same properties as that of my CPU (Intel Xeon), with the exception of 3 properties, as shown : 1.cl_global_mem_cache_size 2.cl_max_threads_per_block.
the way i query properties is i send the cl_device_id of all devices i find to a function get_prop(cl_device_id id) where i simply print all properties using clGetDeviceinfo.
PLATFORM 1: NAME : Intel(R) OpenCL num of devices in platform : 1 DEVICE=Intel(R) Xeon(R) CPU X5660 @ 2.80GHz
ADDRESS BITS:64
DEVICE GLOBAL MEM CACHE SIZE=262144
DEVICE GLOBAL MEM SIZE IN BYTES=25122017280
LOCAL MEM SIZE=32768
MAX CLOCK FREQUENCY=2800
NO. OF PARALLEL COMPUTE UNITS LIKE SMs=24
MAX THREADS IN ONE BLOCK=8192
MAX THREAD DIMENSIONS=3
OPENCL VERSION=OpenCL C 1.2
MAX THREADS IN EACH DIMENSION=8192 8192 8192
PLATFORM 2:
NAME : AMD Accelerated Parallel Processing
num of devices in platform : 1
DEVICE=Intel(R) Xeon(R) CPU X5660 @ 2.80GHz
ADDRESS BITS:64
DEVICE GLOBAL MEM CACHE SIZE=32768
DEVICE GLOBAL MEM SIZE IN BYTES=25122017280
LOCAL MEM SIZE=32768
MAX CLOCK FREQUENCY=2792
NO. OF PARALLEL COMPUTE UNITS LIKE SMs=24
MAX THREADS IN ONE BLOCK=1024
MAX THREAD DIMENSIONS=3
OPENCL VERSION=OpenCL C 1.2
MAX THREADS IN EACH DIMENSION=1024 1024 1024
Can anyone explain why this is happening? fyk: im using AMDAPP SDK
You might have a mix-up between the device IDs, and possibly across different platforms. Are you sure that you are correctly capturing each device as a unique cl_device_id?
From your listing it appears that you have more than one platform installed; you have listed a "Platform: 2," so there must be a Platform: 1? If your not already handling this, capture the platform IDs into an array as well. Like this:
So with multiple platforms (assuming your using C, I'll set it up with malloc, with C++ you can use "new" to create the platformID_Array):
And then for example, check the names:
Next you will then need two separate device arrays, one for each platform. Using a similar approach as above, loop through each device ID array and query the values for each device, for a given platform.