From b83947778e2c776f757a07d4719b7ce961d7ed55 Mon Sep 17 00:00:00 2001 From: Yuren Hao Date: Fri, 3 Jul 2026 05:56:50 -0500 Subject: =?UTF-8?q?Initial=20commit:=20ept=20=E2=80=94=20backprop-free=20e?= =?UTF-8?q?quilibrium=20transformer=20(EP)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Code (ep_run/), organized docs (docs/{method,campaign,hardware,outreach,paper}), analysis scripts (scripts/), ONBOARDING.md entry point. Large data/checkpoints git-ignored (share separately). Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_014FAPDWQ49M5Ye3NpTndTpn --- ep_run/watch_all.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 ep_run/watch_all.sh (limited to 'ep_run/watch_all.sh') diff --git a/ep_run/watch_all.sh b/ep_run/watch_all.sh new file mode 100755 index 0000000..a1baec7 --- /dev/null +++ b/ep_run/watch_all.sh @@ -0,0 +1,15 @@ +#!/bin/bash +# Consolidated watcher for the 3 live C512 EP runs. nohup'd so it survives session events. +# Logs each run's latest val-CE line + alive/dead every 10 min to runs/watch_all.log. +R=/home/yurenh2/ept/ep_run/runs +LOG=$R/watch_all.log +while true; do + TS=$(date '+%m-%d %H:%M') + for f in ep_resreg_warm ep_jacreg ep_rr_ajr; do + if pgrep -f "ckpt runs/$f.pt" >/dev/null; then a=ALIVE; else a=DEAD; fi + line=$(grep -iE "val CE" "$R/$f.log" 2>/dev/null | tail -1) + echo "$TS [$a] $f | $line" >> "$LOG" + done + echo "----" >> "$LOG" + sleep 600 +done -- cgit v1.2.3