Skip to content
Open
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
2 changes: 1 addition & 1 deletion rlix/pipeline/miles_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ def _wait_for_overlap_engines_offloaded(self, allocated_train_gpus, *, timeout_s
# overlap GPU IDs. The train actor will need ~3.7 GB for the
# 0.5B model + a few GB for activations; aim for ≥20 GB free
# before we let _before_training proceed to wake_up.
target_free_gb = 20.0
target_free_gb = float(os.environ.get("MILES_MIN_FREE_GPU_MEM_GB", "20.0"))
deadline2 = time.time() + float(timeout_s)
last_min_free_gb: Optional[float] = None
nvidia_smi_unavail_count = 0
Expand Down