Accessing a GPU tensor via different processes?

Hi, is it possible to access a tensor on the GPU from different processes? Passing via mp.Queue() is not possible. I know that model weights can be shared, but can I specify a tensor at the beginning and share it across all processes? I’d like to populate the GPU tensor from one process, and access it from another (and DataLoader is not an option for my situation).

Thank you