cancel
Showing results for 
Search instead for 
Did you mean: 

Archives Discussions

pradyotsn
Journeyman III

Extracting GPU Core Info using OPENCL

Hi,

I am using OPENCL for last two months and pretty much understood the basics of it. I am working on NVIDIA QUADRO 410 card. At this point I can write simple kernels and good host programs.

Now I wanted to know if it is possible to fetch the core details of my card when I am executing my kernel. I want to map a particular thread to that core where it has performed the operation. The card I am using  has 192 CUDA core (cuda core coz its NVIDIA) when I define the total number of thread and the number of threads in the group , and when these threads perform any operation say matrix multiplication , is it possible to  to see which thread gets executed in which cuda core. If yes how?

It would be very helpful if u can come up wih this answer as i have searched in internet and came up with nothing.

Regards

Pradyot

0 Likes
2 Replies
cgrant78
Adept III

I would suggest you take a look more into how OpenCL function ( the specification is available at the Khronos website). The gist of OpenCL is to have parallelization seamless to developer or at least, specified at a higher level. One does not manually assign work item to specific threads, instead your workspace is divided into workgroups which are then divided into work items. The driver manages kernel execution and work item scheduling. What is the need to map specific work item to specific thread ? OpenCL can run on a lot of different platform, whose underlying memory subsystem and processing cores cannot be explicitly accessed.

0 Likes

Hi,

Here's something I managed to figure out. I used a feature called inline PTX to return the particular details of the thread . In this case i used it to get the warp ID, warp lane ID and the streaming multiprocessor ID. However the warp id and warp lane id is coming out as expected(ie warp lane from 0-31 and each warp getting executing) the SM ID is 0 (zero) for all the threads. When i checked the clinfo , the Max compute units: 1. So does this mean that the SM ID is zero for all the threads is zero because of that?

Also how can my nvidia quadro 410 have Max compute units as 1 when there are 192 cuda cores?

edit: apparently inline ptx doesnt work on AMD GPU's . So gathering info of the core  is still unsolved  on the AMD GPU's. fyi: i have another system with AMD R9 290x GPU in which I run code parallel with my NVIDIA card.

0 Likes