- The paper introduces a multilevel stochastic gradient method using an MLP to solve second-kind boundary integral equations via residual minimization.
- It leverages warm-starting, grid refinement, and neural tangent kernel analysis to systematically expand the effective tangent space and control spectral bias.
- Empirical results demonstrate 10–100× speedups over GMRES on complex geometries, highlighting the method’s scalability and GPU efficiency.
Multilevel Stochastic-Gradient Neural Solver for Boundary Integral Equations
The paper "A multilevel stochastic-gradient neural solver for boundary integral equations" (2607.00560) introduces an SGD-based, multilevel solver for boundary integral equations (BIEs) of the second kind in two and three dimensions. The unknown boundary density is parametrized by a multilayer perceptron (MLP) and optimized via residual minimization over a sequence of increasingly refined quadrature grids. The residual minimization is performed on each grid, with the neural parameters warm-started from the preceding level.
The BIEs under study arise from elliptic boundary value problems via second-kind Fredholm equations,
Aρ:=21ρ+Kρ=g,(Kρ)(x)=∫Γk(x,y)ρ(y)dS(y),
where K is compact, Γ is a C2 boundary, and g is prescribed data. Solutions are discretized using Nyström quadrature, producing well-conditioned dense linear systems.
Traditional solvers (e.g., GMRES) accelerate matrix-vector products via hierarchical compression but still incur O(N2) cost without FMM. The proposed approach positions itself for computational benefit from GPU-optimized matrix–vector operations and stochastic optimization, circumventing the need for grid-aligned prolongation and restriction schemes.
Neural Parametrization and Loss Landscape
The density ρ is represented as ρθ, an MLP. The discrete residual loss at each level,
L(θ)=21∥ANρθ−gN∥W2,
is minimized by SGD (Adam) over random mini-batches of quadrature points. The chain rule analysis exposes a gradient flow that is preconditioned in density space by the empirical neural tangent kernel (NTK),
Tθ,N=Jθ,NJθ,N∗,
where K0 is the Jacobian of network output w.r.t. K1.
The convergence of the network’s output is governed by the spectral interaction between K2 (associated with the discretized BIE operator) and K3 (reflecting the network’s effective tangent space). The spectrum of K4 is uniformly bounded thanks to the compactness of K5, so the bottleneck for per-mode residual decay is entirely due to the NTK—a point established formally and borne out numerically.
Spectral Bias and the Multilevel Algorithmic Structure
Gradient-based training aligns with the frequency principle: low-frequency residual components are learned first, with high-frequency errors contracting slowly due to spectral decay in the NTK. On a fixed fine grid, this results in training plateaux.
The paper makes two key claims:
- Spectral bias becomes a tool rather than an obstacle in a multilevel training regime: Mini-batch optimization on each coarse grid damps the residual components that are well-represented by the current NTK. Upon grid refinement, additional Fourier modes are exposed and incorporated into the effective tangent space, as the NTK spectrum expands correspondingly.
- Full multigrid analogy: The combination of stochastic-gradient smoothing (SGS) and grid refinement implements a multilevel “band-by-band” error clearance similar to standard geometric multigrid, except prolongation is implicit via the shared neural representation, and the grid schedule is either progressive or cyclic.
This is illustrated in detail through spectral analyses.
Figure 1: Distributions showing the reduction of epoch counts at each training level, comparing the progressive and cyclic grid schedules.
Computational Details and Schedule Design
The paper implements two grid refinement schedules:
- Progressive: Sequential (coarse-to-fine), each finer level only visited once.
- Cyclic (FMG analog): Grids are revisited in non-monotonic order, enabling re-refinement and variance reduction.
For each stage, the MLP is trained to tolerance proportional to the quadrature error. SGD (Adam) is employed with mini-batch gradients; the per-iteration arithmetic is K6 (K7 is batch size), executed efficiently on GPU. The algorithm exploits that, unlike grid-based approaches, the neural density is a function, allowing direct transfer (“warm starting”) between node sets of different levels.
Theoretical and Numerical Analysis of Residual Dynamics
The paper provides explicit modal decomposition of gradient flow and quantifies residual transfer between levels, relying on a uniform network smoothness assumption. This yields a total work estimate matching (up to a constant) the cost of training on the finest grid alone,
K8
where K9 is the number of quadrature points at the finest level. The paper documents that training to matched quadrature error at each stage ensures the newly exposed residual at each grid is dominated by components newly representable by Γ0, making the convergence work nearly optimal (band-by-band contraction).
Numerical Experiments
Spectral Expansion Tracking
Experiments on a 2D flower-shaped domain demonstrate the core spectral mechanism. As training progresses up the quadrature ladder, the leading band of the empirical NTK widens, and cross-level reinitialization ensures each band of the spectrum is addressed efficiently.















Figure 2: NTK spectrum at grid level 1, showing confinement of the effective tangent space.






Figure 3: NTK spectrum one iteration after grid refinement—showing effective tangent space expansion and the inter-level transfer of high-frequency components.
Comparison with GMRES and Scalability
The solver is applied to 3D interior and exterior problems. On the Stanford Bunny and Helmholtz multi-sphere benchmarks, the MLSG achieves target residuals and relative Γ1 errors on large domains (up to Γ2), with Γ3 wall-clock speedups over multi-core GMRES. At higher wavenumbers, MLSG maintains nearly flat scaling with respect to Γ4 while GMRES slows considerably.
Complex geometries and topology (single chart coiled tori, linked tori, genus-3 surfaces) are handled without special grid construction, reflecting the flexibility of the network-based approach.
Schedule Design and Variance Reduction
Experiments demonstrate that cyclic (FMG-type) schedules result in lower variance in convergence epochs and wall-clock time compared to the progressive schedule, due to more robust spectrum refilling and residual smoothing across the grid hierarchy.
Implications and Future Directions
The MLSG validates that the spectral bias phenomenon in neural optimization, typically a barrier for PDE solvers, is rendered beneficial via grid refinement. For smooth-activation networks and quasi-uniform quadrature, neural residual minimization achieves work complexity and accuracy commensurate with the best grid-based multigrid schemes, but with algorithmic simplicity on arbitrary geometries, due to the function-based neural representation.
Practically, the method enables GPU-accelerated (and thus highly parallel) scaling to BIE problems beyond the limits of classical algorithms, especially in high-frequency and complex-geometry regimes. The trained network can furthermore provide a high-quality initialization for conventional iterative solvers when higher numerical accuracy is required.
From a theoretical perspective, the work puts the interplay of spectral bias, neural tangent kernel structure, and residual transfer on a rigorous foundation in the context of second-kind integral equations.
Conclusion
This work establishes the MLSG as an efficient, parallel-friendly alternative for large-scale BIEs, leveraging NTK spectral bias through multilevel quadrature. Both the spectral analysis and the empirical results highlight the importance of adaptive tangent space refilling and warm-started refinement in overcoming the limitations of fixed-grid neural PDE solvers. The synthesis of neural optimization dynamics and classical multilevel discretization points toward future directions in scalable implicit solvers utilizing advanced neural architectures and adaptive schedule designs.