Alvin
Alvin

Reputation: 950

OpenCL and CUDA kernels on same GPU

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

Answers (1)

Chanakya.sun
Chanakya.sun

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

Related Questions