I am aware that if you call a function in a remote actor right now with a numpy array, you are going to ray.put the array in local object store, and the remote actor will call ray.get on this array which will fetch it.
Is there a way to directly push the object to the remote actor without using local object store memory?