Skip to content
Open
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions examples/rlix/run_miles_dual.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,11 @@ def _build_pipeline(
"TMS_INIT_ENABLE_CPU_BACKUP",
"CUDA_DEVICE_MAX_CONNECTIONS",
"NCCL_NVLS_ENABLE",
# Resize-chain timeout knobs read inside the MilesCoordinator
# actor process (rlops/rlix#35); without explicit forwarding a
# driver-side export never reaches the actor on multi-node.
"RLIX_RESIZE_LOCK_TIMEOUT_S",
"MILES_RESIZE_RPC_TIMEOUT_S",
):
if (_v := os.environ.get(_k)) is not None:
pipeline_runtime_env_vars[_k] = _v
Expand Down
5 changes: 5 additions & 0 deletions examples/rlix/run_miles_rlix.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,11 @@ class MilesPipelineConfig:
"TMS_INIT_ENABLE_CPU_BACKUP",
"CUDA_DEVICE_MAX_CONNECTIONS",
"NCCL_NVLS_ENABLE",
# Resize-chain timeout knobs read inside the MilesCoordinator
# actor process (rlops/rlix#35); without explicit forwarding a
# driver-side export never reaches the actor on multi-node.
"RLIX_RESIZE_LOCK_TIMEOUT_S",
"MILES_RESIZE_RPC_TIMEOUT_S",
):
if (_v := os.environ.get(_k)) is not None:
pipeline_runtime_env_vars[_k] = _v
Expand Down