cancel
Showing results for 
Search instead for 
Did you mean: 

Archives Discussions

spectral
Adept II

OpenGL interop & Multi-GPU

Hi,

Imagine I have multiples GPU (imagine 2), can I ask to each GPU to draw in 50% of a PBO using OpenGL Interop ?

I think that there is no sample in the SDK 😛

If yes, what is the best way ?

My goal is to share the processing and draw in the same image (shared buffer).

 

Thanks

0 Likes
1 Reply
nou
Exemplar

OpenGL interoperability work only with one GPU and that GPU must be also used for OpenGL drawing.

it can work with multiple GPUs but in fact it do copy so i recomend using manual copying.

and of course you need buffer per GPU as write to same buffer from multiple queues at the same time is undefined.

0 Likes