numpy.
shares_memory
Determine if two arrays share memory
Input arrays
Effort to spend on solving the overlap problem (maximum number of candidate solutions to consider). The following special values are recognized:
The problem is solved exactly. In this case, the function returns True only if there is an element shared between the arrays.
Only the memory bounds of a and b are checked.
Exceeded max_work.
See also
may_share_memory
Examples
>>> np.may_share_memory(np.array([1,2]), np.array([5,8,9])) False