A parallel-in-time Newton's method-based ODE solver
Casian Iacob, Hassan Razavi, Simo Särkkä
TL;DR
The paper develops a parallel-in-time framework for nonlinear ODE solvers by reframing the time-stepping as a root-finding problem and solving it with Newton's method. It exploits parallel prefix-sums to compute the affine components of the Newton step in logarithmic span, achieving significant speedups over traditional Parareal, especially on GPUs. Theoretical results establish quadratic convergence of both explicit and implicit parallel Newton iterations under standard regularity assumptions. Numerical experiments on a suite of explicit and stiff problems demonstrate faster runtimes and favorable scaling compared to sequential solvers and Parareal, indicating practical potential for real-time applications.
Abstract
In this article, we introduce a novel parallel-in-time solver for nonlinear ordinary differential equations (ODEs). We state the numerical solution of an ODE as a root-finding problem that we solve using Newton's method. The affine recursive operations arising in Newton's step are parallelized in time by using parallel prefix sums, that is, parallel scan operations, which leads to a logarithmic span complexity. This yields an improved runtime compared to the previously proposed Parareal method. We demonstrate the computational advantage through numerical simulations of various systems of ODEs.
