workarounds for not blocking UI while running kernel? wondering if there are ways to stop cuda from

Hello,

I wonder if there are any ways to stop cuda from consuming the GPU %100 during kernel execution,
just to give a little bit to the OS so other applications and general UI still behave/respond normally.

I know GPU’s don’t have OS kernels on them with finegrained multi-tasking but have people found solutions to work around this ?
maybe by configuring the app to say leave one multiprocessor free to the OS ?

Hoping for a reply and big thanks,
Sando

Can’t be done. All you can do is either reduce the per kernel execution time (either reduce the work done per call or make the code faster), or use a dedicated compute GPU.

Hi,

thanks for your reply.

have you heard of any upcoming stuff like this for newer cuda versions in development ?

Sando

I do not believe this can be solved in software for current cards. The design of the GPU appears to require using all the multiprocessors for the same task.

Fermi hardware is supposed to lift this restriction, but NVIDIA has not said anything about dividing multiprocessors between the GUI and computation. They have only talked about dividing multiprocessors between different CUDA kernels in the same application.

Thanks for your reply, let’s hope that fermi will solve this issue :)

Thanks,

Sando