Global Memory Shared between Multiprocessors

Suppose I allocate a certain amount of global memory which contains data that is intended to be shared across all multiprocessors, is it guaranteed that whenever the data is updated in global memory the data will be ready and available immediately across all multiprocessors. If this is not the case what is the best way to share data between multiprocessors via global memory?

Hi,

What kind of memory do you want to share between processors?
CPU buffer or GPU buffer?

Thanks.

Hi AastaLLL,

A GPU buffer.

Hi,

The IPC library will handle the synchronization for you.
So you can assume the data will reflash immediately.

There are some possible IPC mechanisms on the Orin:

Thanks.

Thank you for this information.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.