diff options
| author | YurenHao0426 <blackhao0426@gmail.com> | 2026-06-29 12:15:51 -0500 |
|---|---|---|
| committer | YurenHao0426 <blackhao0426@gmail.com> | 2026-06-29 12:15:51 -0500 |
| commit | a6ec4288a2232988b130b2f00bb2565f81706966 (patch) | |
| tree | 1bb86e7f0b899b823b9e7fdf383e832d30a181e0 /flossing_suite/status.sh | |
Recursive reasoning dynamics: analysis pipeline, paper drafts, toy models
Failure=more-chaotic (task-general under validity labeling) reduces to convergence/completeness
detection; mechanism (transient chaos vs multistability vs input-induced) under investigation.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Diffstat (limited to 'flossing_suite/status.sh')
| -rwxr-xr-x | flossing_suite/status.sh | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/flossing_suite/status.sh b/flossing_suite/status.sh new file mode 100755 index 0000000..39af2d6 --- /dev/null +++ b/flossing_suite/status.sh @@ -0,0 +1,33 @@ +#!/usr/bin/env bash +set -euo pipefail + +ROOT="/home/yurenh2/rrm" +cd "${ROOT}" + +echo "== GPU ==" +nvidia-smi --query-gpu=index,memory.used,memory.total,utilization.gpu --format=csv,noheader,nounits + +echo +echo "== Active flossing processes ==" +ps -eo pid,ppid,stat,etime,cmd | rg 'engelken_python_flossing.py|step7_interfloss.py' || true + +echo +echo "== Latest logs ==" +for dir in \ + research/flossing/flossing_suite/results/toy_rnn \ + research/flossing/flossing_suite/results/trm_faithful \ + research/flossing/flossing_suite/results/trm_variants \ + research/flossing/flossing_suite/results/smoke +do + [[ -d "${dir}" ]] || continue + for f in "${dir}"/*.log; do + [[ -f "${f}" ]] || continue + echo + echo "-- ${f} --" + tail -n 8 "${f}" + done +done + +echo +echo "== Summary files ==" +ls -lh research/flossing/flossing_suite/results/summary 2>/dev/null || true |
