Creating shared memory segments on the GPU

Hi All,

Is there a way to create a shared memory segment on the GPU’s global memory so that different processes sharing a GPU can access it?

Thanks

I havent used this but you can check the cuIPCxxxx functions. Should give you the
ability to share pointers between different processes.

eyal

Thanks Eyal. IPC API does work but IPC mapping is heavy operation and I was wondering if there were lighter ways of achieving the same thing.