Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions nemo_run/core/execution/skypilot.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
Executor,
ExecutorMacros,
)
from nemo_run.core.execution.launcher import FaultTolerance, Torchrun
from nemo_run.core.packaging.base import Packager
from nemo_run.core.packaging.git import GitArchivePackager

Expand Down Expand Up @@ -330,18 +329,6 @@ def macro_values(self) -> Optional[ExecutorMacros]:
het_group_host_var=self.HET_GROUP_HOST_VAR,
)

def _setup_launcher(self):
super()._setup_launcher()
launcher = self.launcher
# Dynamic rendezvous has an error in Skypilot Kubernetes currently
if (
launcher
and isinstance(launcher, (Torchrun, FaultTolerance))
and self.cloud == "kubernetes"
):
launcher.rdzv_backend = "static"
launcher.rdzv_port = 49500

def to_task(
self,
name: str,
Expand Down
Loading