Rename fractal-brain to Resonance_Engine: update all paths, docs, scripts, and add experiments/results/src

This commit is contained in:
Scruff AI
2026-03-25 07:34:34 +07:00
parent a3fb27821e
commit 7f04a7d81d
311 changed files with 72910 additions and 172 deletions
@@ -0,0 +1,35 @@
@echo off
echo ========================================
echo COMPILING 1-HOUR REALITY CHECK
echo ========================================
echo.
REM Set up Visual Studio environment
call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x64
echo Compiling reality_check_1hour.cu...
nvcc -O3 -arch=sm_89 -o reality_check.exe reality_check_1hour.cu -lnvml -lcufft
if %errorlevel% neq 0 (
echo ERROR: Compilation failed
pause
exit /b 1
)
echo ✓ Reality check compiled successfully
echo.
echo ========================================
echo READY FOR 1-HOUR REALITY CHECK
echo ========================================
echo.
echo This test will verify:
echo 1. Real FFT entropy calculation (5.8-7.5 bits, not clamped)
echo 2. Power scaling (37W idle -> 290W under load)
echo 3. Performance reality (~5.5k steps/sec, not 300k)
echo 4. Guardian formation (high-density regions)
echo.
echo Expected runtime: ~1 hour for 2M steps
echo Output: reality_check.csv
echo.
echo To run: reality_check.exe
echo.
pause