Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How does CUDA synchronise two graphic cards? How do they communicate? I have two tesla cards but I don't know how to perform communication between them.

I need to store 5 gb matrix in RAM. Ihave two tesla cards 3gb RAM each. Can I force sync by dividing kernel into smaller ones?

share|improve this question
Can you describe what your goal is? What computation do you want to perform? – accelereyes Sep 3 '12 at 13:19
There is a good presentation from one of nVidia's webinars about using multiple GPUs. I recommend reading it, since for now your question is, in my opinion, slightly too vague and broad. – aland Sep 3 '12 at 14:52

1 Answer

up vote 3 down vote accepted

This tutorial on multi-GPU programming by NVIDIA Developer Technology Engineer Paulius Micikevicius provides a thorough overview of programming in CUDA on multiple GPUs, including communication and synchronization between GPUs.

In summary, the CUDA Runtime API (v4.x and later) provides cudaMemcpy* functions providing peer-to-peer copy functionality, and synchronization can be achieved by using the Stream and Event API (e.g. cudaStreamWaitEvent()).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.