Initial commit - fractal brain source code (CUDA kernels, training pipeline, adaptive systems)

This commit is contained in:
Scruff AI
2026-03-24 12:10:43 +07:00
commit 57f6d86a65
409 changed files with 41875 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#!/bin/bash
# Start CUDA daemon + lattice observer
cd /mnt/d/fractal-brain/beast-build
echo "[LAUNCHER] Starting khra_gixx_1024_v5 daemon..."
nohup ./khra_gixx_1024_v5 > v5_stdout.log 2> 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 v5_stderr.log"
cat v5_stderr.log
exit 1
fi
echo "[LAUNCHER] Starting lattice_observer.py..."
exec python3 lattice_observer.py 2>&1 | tee observer.log