Host-side output directory for a named task/run. Does *not* include a timestamp; use :func:`new_run_dir` for fresh runs and :func:`find_latest_run_dir` for resume.
(task_name: str)
| 46 | |
| 47 | |
| 48 | def task_output_dir(task_name: str) -> Path: |
| 49 | """Host-side output directory for a named task/run. |
| 50 | |
| 51 | Does *not* include a timestamp; use :func:`new_run_dir` for fresh runs and |
| 52 | :func:`find_latest_run_dir` for resume. |
| 53 | """ |
| 54 | return outputs_root() / task_name |
| 55 | |
| 56 | |
| 57 | def new_run_dir(task_name: str, timestamp: Optional[str] = None) -> Path: |
nothing calls this directly
no test coverage detected