@ray.remote
def my_function():
... ...
return xxx
my_function.remote()
I have various PCs that I want to run my distributed setup on. 192.168.0.100 is the head node. 192.168.0.101, 192.168.0.102 are the worker nodes.
When calling my_function.remote(), can I specify the IP address of the PC to execute the function on? My objective is to ensure that I run this function on all nodes exactly once.