55 lines
844 B
Markdown
55 lines
844 B
Markdown
# Workflow
|
|
|
|
## Daily Use
|
|
|
|
Initialize local state:
|
|
|
|
```bash
|
|
make init
|
|
```
|
|
|
|
Check paths:
|
|
|
|
```bash
|
|
make doctor
|
|
```
|
|
|
|
Run one local Track 1 simulation through the in-repo runner:
|
|
|
|
```bash
|
|
make track1-sim-smoke
|
|
```
|
|
|
|
Submit a Figure 1 treatment:
|
|
|
|
```bash
|
|
make submit-figure1-m10
|
|
```
|
|
|
|
Run jobs:
|
|
|
|
```bash
|
|
make run-loop
|
|
```
|
|
|
|
Collate completed results:
|
|
|
|
```bash
|
|
make collate-figure1
|
|
```
|
|
|
|
Inspect current status:
|
|
|
|
```bash
|
|
make status
|
|
```
|
|
|
|
## Current Assumption
|
|
|
|
The Makefile now drives the local orchestration code in `renunney`, while the
|
|
Track 1 runner/API boundary and analysis layer are also local to `renunney`.
|
|
The simulation kernel is still imported from the legacy `cost_of_substitution`
|
|
directory through the compatibility layer in `src/renunney/legacy.py`. The
|
|
paper-scale Figure 1 configs used for submission are now local to
|
|
`renunney/config`.
|