Files
resonance-engine/archive/misc/compile_khra_1024.sh
T
Scruff AI 56c71c87b2 restructure: proper project layout, README, kill training
- cuda/ — main LBM kernel (khra_gixx_1024_v5.cu)
- navigator/ — lattice_observer, golden_weave, bridges, mock daemon
- scripts/ — compile, start, launch, setup (paths updated)
- docs/ — system manual
- archive/ — everything else (old kernels, inquiries, experiments)
- README.md — full setup guide: requirements, quick start, use your own LLM
- removed training/ entirely (broken LoRA scripts + datasets)
- .gitignore: exclude build/ logs/ training/ *.jsonl
2026-03-24 12:58:19 +07:00

29 lines
694 B
Bash

#!/bin/bash
# compile_khra_1024.sh — Build script for Khra'gixx 1024x1024 daemon
export PATH=/usr/local/cuda-12.6/bin:$PATH
export LD_LIBRARY_PATH=/usr/local/cuda-12.6/lib64:$LD_LIBRARY_PATH
cd /mnt/d/fractal-brain/beast-build
echo "=== COMPILING Khra'gixx 1024x1024 Daemon ==="
echo "nvcc: $(nvcc --version 2>&1 | grep release)"
echo "Target: sm_89 (RTX 4090)"
echo ""
nvcc -o khra_gixx_1024_stable khra_gixx_1024_stable.cu \
-lzmq \
-O3 -arch=sm_89 \
2>&1
if [ $? -eq 0 ]; then
echo ""
echo "=== BUILD SUCCESS ==="
ls -la khra_gixx_1024_stable
echo ""
echo "To run: ./khra_gixx_1024_stable"
else
echo ""
echo "=== BUILD FAILED ==="
exit 1
fi