I have bitcoin miner which is using OpenCL kernel. Windows and Linux implementations of ATI SDK has comparable performance while Apple's native OpenCL implementation works too bad. I want to know if I can profile opencl kernel somehow to optimize it for Lion's OpenCL implementation

link|improve this question

80% accept rate
What GPU is in your Lion machine? – vocaro Sep 19 '11 at 20:42
I think that you can't optimize kernel for Lion's OpenCL - the kernel is just some machine code deployed directly to the GPU and processed there independently from the OS. There are two reasons why it is slow (if you mean works bad as being slow): a) the OpenCL kernel compiler sucks b) the deployment functions (reading or writing buffers to the device, deploying kernels...) suck If it is the a) case, there's probably no hope for you. With b) case there maybe can be a little improvement (e.g. small buffers are deployed fast enough), but this has nothing to do with the kernel. – Flavius Sep 20 '11 at 19:59
I have Radeon HD5850. I belive source (kernel) I have somehow compiled before deployment to GPU. Maybe Apple's OpenCL compiler sucks... – Dmytro Leonenko Sep 20 '11 at 21:18
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.