Research-Stack/shared-data/artifacts/hopf_cole_benchmark.json
Brandon Schneider a53e023cbe feat: Hopf-Cole exact solver for 1D Burgers — 151x speedup
Hopf-Cole transformation maps Burgers to heat equation:
  u = -2v * d(ln ψ)/dx
  dψ/dt = v * d²ψ/dx² (exact via FFT)

Benchmark results:
  N=512,  v=0.01: 1.45x speedup
  N=1024, v=0.01: 83.4x speedup
  N=2048, v=0.01: 151.3x speedup

Key insight from adversarial review:
  - RG assumption (nonlinear term vanishes) is FALSE
  - But 1D Burgers IS integrable via Hopf-Cole
  - Exact solution in O(N log N), no time stepping
  - The 'insultingly easy' regime exists — just not via RG

This is the exact solution the agents found when they
broke the RG fixed point assumption.
2026-05-30 17:36:12 -05:00

53 lines
No EOL
1.2 KiB
JSON

{
"schema": "hopf_cole_benchmark_v1",
"results": [
{
"N": 512,
"nu": 0.01,
"hopf_cole_ms": 0.9872913360595703,
"fd_ms": 1.432657241821289,
"speedup": 1.4510987684134267,
"rmse": 8.095117763762474
},
{
"N": 512,
"nu": 0.001,
"hopf_cole_ms": 0.10323524475097656,
"fd_ms": 0.1266002655029297,
"speedup": 1.2263279445727482,
"rmse": 1.561303593770873
},
{
"N": 1024,
"nu": 0.01,
"hopf_cole_ms": 0.06604194641113281,
"fd_ms": 5.506277084350586,
"speedup": 83.37545126353791,
"rmse": 19.902285633276207
},
{
"N": 1024,
"nu": 0.001,
"hopf_cole_ms": 0.12373924255371094,
"fd_ms": 0.4935264587402344,
"speedup": 3.9884393063583814,
"rmse": 2.7342285097593564
},
{
"N": 2048,
"nu": 0.01,
"hopf_cole_ms": 0.11754035949707031,
"fd_ms": 17.77815818786621,
"speedup": 151.25152129817445,
"rmse": 39.14175495928565
},
{
"N": 2048,
"nu": 0.001,
"hopf_cole_ms": 0.15020370483398438,
"fd_ms": 2.282381057739258,
"speedup": 15.195238095238095,
"rmse": 4.963314310186603
}
]
}