auto: hourly snapshot 2026-06-04 15:34

This commit is contained in:
Scruff AI
2026-06-04 15:34:29 +07:00
parent 9adc7bfcc1
commit b16ee760be
74 changed files with 8664 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
#!/bin/bash
# Start CUDA daemon + lattice observer
REPO_ROOT="$(cd "$(dirname "$0")/.." && pwd)"
cd "$REPO_ROOT"
mkdir -p build logs
echo "[LAUNCHER] Starting khra_gixx_1024_v5 daemon..."
nohup ./beast-build/khra_gixx_1024_v5 > logs/v5_stdout.log 2> logs/v5_stderr.log &
DAEMON_PID=$!
echo "[LAUNCHER] Daemon PID: $DAEMON_PID"
# Wait for ZMQ ports to bind
sleep 3
# Verify daemon is running
if kill -0 $DAEMON_PID 2>/dev/null; then
echo "[LAUNCHER] Daemon is running."
else
echo "[LAUNCHER] ERROR: Daemon failed to start. Check logs/v5_stderr.log"
cat logs/v5_stderr.log
exit 1
fi
echo "[LAUNCHER] Starting lattice_observer.py..."
exec python3 navigator/lattice_observer.py 2>&1 | tee logs/observer.log