Hello
My PC (Windows 10) has two AMD Redion Pro WX8200.
I want to distribute processing to these two GPUs with OpenCL.
clGetPlatformIDs(0, NULL, &num_platforms) can get one platform.
The CL_PLATFORM_NAME that can be obtained with clGetPlatformInfo is "AMD Accelerated Parallel Processing".
When I run clGetDeviceIDs(clSelectedPlatformID, CL_DEVICE_TYPE_DEFAULT, 0, NULL, &num_device) on that platform, I get only one device.
I think I can get two devices, but can I get only one?
I have confirmed that one GPU is working when I run the program on the acquired device.