Using multiple CUDA GPUs

I am using NVIDIA Grid K2 to program CUDA. It has two GPUs, each of which has 1536 cores. Can I use both GPUs in one or more kernel calls?

+5
source share
1 answer

No, It is Immpossible. Each GPU on a card with multiple GPUs, such as the Grid K2, is a separate CUDA device with its own memory. Thus, each GPU gets its own CUDA context and must be explicitly programmed. The CUDA driver or runtime will not automatically use both devices as a single virtual device to start the kernel.

+8
source

Source: https://habr.com/ru/post/1242482/


All Articles