-
Hi guys, is there a way (API) to connect from a local laptop to a remote cluster to execute functions in parallel? Like in Ray - https://docs.ray.io/en/latest/cluster/ray-client.html |
Beta Was this translation helpful? Give feedback.
Answered by
YarShev
Oct 22, 2021
Replies: 1 comment 1 reply
-
Will the following work? # this notebook is in a local laptop
from distributed.client import Client
c = Client(address="node_ip_of_remote_cluster") |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
YarShev
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Will the following work?