1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
#!/usr/bin/env python3
"""Run shards of the calibrated-BCI-v2-gated standard-depth panel."""
import argparse
import hashlib
import json
import os
import subprocess
from oral_a_dynamic_scaling import (
DEPTHS,
METHODS,
SEEDS,
existing_matches,
jobs,
)
ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
PROTOCOL_PATH = os.path.join(ROOT, "ORAL_A_RECOVERY_V2.md")
LEGACY_RUNNER_PATH = os.path.join(
ROOT, "experiments", "oral_a_dynamic_scaling.py")
def sha256(path):
digest = hashlib.sha256()
with open(path, "rb") as handle:
for chunk in iter(lambda: handle.read(1024 * 1024), b""):
digest.update(chunk)
return digest.hexdigest()
def git_output(*args):
return subprocess.run(
["git", *args], cwd=ROOT, check=True, capture_output=True,
text=True).stdout.strip()
def require_prerequisites(d4_path, bci_v2_path):
with open(d4_path) as handle:
d4 = json.load(handle)
with open(bci_v2_path) as handle:
bci_v2 = json.load(handle)
if not (
d4.get("protocol") == "kp_dynamic_neutral_projection_confirmation_v1"
and d4.get("status") == "passed"
and d4.get("review_score_after") == 7
):
raise ValueError("oral-A recovery v2 requires the complete D4 pass")
if not (
bci_v2.get("protocol")
== "oral_b_v2_calibrated_recovery_confirmation_v1"
and bci_v2.get("status") == "passed"
and bci_v2.get("complete_grid") is True
and bci_v2.get("oral_b_v2_outcome_surprise_established") is True
and bci_v2.get("review_score_after") == 8
and bci_v2.get("new_oral_a_v2_protocol_may_be_frozen") is True
and bci_v2.get("old_oral_a_gate_remains_closed") is True
and bci_v2.get("all_prior_failures_preserved") is True
):
raise ValueError(
"oral-A recovery v2 requires the complete calibrated BCI-v2 pass")
paths = [
os.path.abspath(__file__),
PROTOCOL_PATH,
LEGACY_RUNNER_PATH,
os.path.abspath(d4_path),
os.path.abspath(bci_v2_path),
os.path.join(ROOT, "experiments", "conv_run.py"),
]
relative = [os.path.relpath(path, ROOT) for path in paths]
tracked = all(
subprocess.run(
["git", "ls-files", "--error-unmatch", path],
cwd=ROOT,
capture_output=True,
).returncode == 0
for path in relative
)
dirty = bool(git_output(
"status", "--porcelain", "--untracked-files=no"))
if dirty or not tracked:
raise RuntimeError(
"oral-A recovery v2 requires a clean tracked source")
return {
"git_commit": git_output("rev-parse", "HEAD"),
"protocol_sha256": sha256(PROTOCOL_PATH),
"d4_gate_sha256": sha256(d4_path),
"bci_v2_gate_sha256": sha256(bci_v2_path),
"legacy_runner_sha256": sha256(LEGACY_RUNNER_PATH),
}
def main():
parser = argparse.ArgumentParser()
parser.add_argument(
"--d4_gate",
default="results/kp_dynamic_projection_confirmation_gate.json",
)
parser.add_argument(
"--bci_v2_gate",
default="results/bci_v2_calibrated_confirmation_gate.json",
)
parser.add_argument("--device", default="cuda")
parser.add_argument("--method", choices=("all",) + METHODS, default="all")
parser.add_argument("--depth", type=int, choices=DEPTHS)
parser.add_argument("--seed", type=int, choices=SEEDS)
parser.add_argument("--shard-index", type=int, default=0)
parser.add_argument("--num-shards", type=int, default=1)
parser.add_argument(
"--outdir", default="results/oral_a_dynamic_scaling_v2")
parser.add_argument("--dry-run", action="store_true")
args = parser.parse_args()
if not 0 <= args.shard_index < args.num_shards:
raise ValueError("invalid shard index")
source = require_prerequisites(args.d4_gate, args.bci_v2_gate)
selected = jobs(args.device, args.outdir)
if args.method != "all":
selected = [job for job in selected if job[0] == args.method]
if args.depth is not None:
selected = [job for job in selected if job[1] == args.depth]
if args.seed is not None:
selected = [job for job in selected if job[2] == args.seed]
selected = [
job
for index, job in enumerate(selected)
if index % args.num_shards == args.shard_index
]
if not selected:
raise ValueError("no oral-A recovery-v2 jobs match the requested shard")
os.makedirs(args.outdir, exist_ok=True)
for method, depth, seed, path, command in selected:
tag = f"{method}_d{depth}_s{seed}"
if os.path.exists(path):
if not existing_matches(
path, method, depth, seed, source["git_commit"]
):
raise RuntimeError(
f"refusing mismatched existing record: {path}")
print(f"preserving {tag}", flush=True)
continue
print(tag, " ".join(command), flush=True)
if not args.dry_run:
subprocess.run(command, cwd=ROOT, check=True)
if __name__ == "__main__":
main()
|