Reputation: 950
I'm new to this technology. I have an application which consists of OpenCL kernel and CUDA kernel. I want to execute OpenCL kernel and CUDA kernel one after another on the same GPU(Tesla M2050). Is it possible to execute.?
If it is possible, do we need to take care of any memory management.? Thanks in advance
Upvotes: 0
Views: 533
Reputation: 587
Yes it is possible to run OpenCL kernels and CUDA Kernels from the same application. Each has its own schedulers. Memory management will be taken care by the GPU Driver.
Upvotes: 2