From the paper, page 14:
Since the derivative and Laplacian operators are sparse matrices, and since the maximum
allowable time step scales with the resolution h and thus with the linear problem size N due to the Courant-Friedrichs-Lewy (CFL) criterion, the overall cost to calculate a solution
scales as O(N^2 log^(D−1)(N)), which is significantly more efficient than the
O(N^(D+1)) scaling for a full grid. Here D is the number of spatial dimensions. In principle it is possible to employ a
sparse space-time discretisation as well, reducing the cost further to O(N log^D (N)). However,this will require a more complex time evolution algorithm instead of
the ODE solver we employ, and we thus do not investigate this approach in this paper.
But the paper doesn't go into what the ODE solvers would need to satisfy so be able to get the optimization. Is there any chance this could be implemented with DifferentialEquations.jl internals?
From the paper, page 14:
But the paper doesn't go into what the ODE solvers would need to satisfy so be able to get the optimization. Is there any chance this could be implemented with DifferentialEquations.jl internals?