PETSc SNES Example 2
This implements src/snes/examples/tutorials/ex2.c from PETSc and examples/SNES_ex2.jl from PETSc.jl using automatic sparsity detection and automatic differentiation using NonlinearSolve.jl.
This solves the equations sequentially. Newton method to solve u'' + u^{2} = f, sequentially.
import NonlinearSolve as NLS
import PETSc
import LinearAlgebra
import SparseConnectivityTracer
import BenchmarkTools
u0 = fill(0.5, 128)
function form_residual!(resid, x, _)
n = length(x)
xp = LinRange(0.0, 1.0, n)
F = 6xp .+ (xp .+ 1e-12) .^ 6
dx = 1 / (n - 1)
resid[1] = x[1]
for i in 2:(n - 1)
resid[i] = (x[i - 1] - 2x[i] + x[i + 1]) / dx^2 + x[i] * x[i] - F[i]
end
resid[n] = x[n] - 1
return
endform_residual! (generic function with 1 method)To use automatic sparsity detection, we need to specify sparsity keyword argument to NonlinearFunction. See Automatic Sparsity Detection for more details.
nlfunc_dense = NLS.NonlinearFunction(form_residual!)
nlfunc_sparse = NLS.NonlinearFunction(
form_residual!; sparsity = SparseConnectivityTracer.TracerSparsityDetector())
nlprob_dense = NLS.NonlinearProblem(nlfunc_dense, u0)
nlprob_sparse = NLS.NonlinearProblem(nlfunc_sparse, u0)NonlinearProblem with uType Vector{Float64}. In-place: true
u0: 128-element Vector{Float64}:
0.5
0.5
0.5
0.5
0.5
0.5
0.5
0.5
0.5
0.5
⋮
0.5
0.5
0.5
0.5
0.5
0.5
0.5
0.5
0.5Now we can solve the problem using PETScSNES or with one of the native NonlinearSolve.jl solvers.
sol_dense_nr = NLS.solve(nlprob_dense, NLS.NewtonRaphson(); abstol = 1e-8)
sol_dense_snes = NLS.solve(nlprob_dense, NLS.PETScSNES(); abstol = 1e-8)
sol_dense_nr .- sol_dense_snes128-element Vector{Float64}:
-3.3683470657097324e-18
-2.4763537608571504e-17
-4.615821342767584e-17
-6.755426567531947e-17
-8.89520119888576e-17
-1.1034467610471221e-16
-1.3174411648414486e-16
-1.5311645180926536e-16
-1.7450233966154194e-16
-1.9591533256813065e-16
⋮
-6.661338147750939e-16
-6.661338147750939e-16
-5.551115123125783e-16
-4.440892098500626e-16
-3.3306690738754696e-16
-2.220446049250313e-16
-1.1102230246251565e-16
-1.1102230246251565e-16
0.0sol_sparse_nr = NLS.solve(nlprob_sparse, NLS.NewtonRaphson(); abstol = 1e-8)
sol_sparse_snes = NLS.solve(nlprob_sparse, NLS.PETScSNES(); abstol = 1e-8)
sol_sparse_nr .- sol_sparse_snes128-element Vector{Float64}:
-2.0178697886277366e-42
-1.8943680107105614e-17
-3.7887783730684854e-17
-5.683252262897454e-17
-7.577895559315873e-17
-9.471861229376488e-17
-1.1366504525794907e-16
-1.325979256949772e-16
-1.5157146371347352e-16
-1.7049079162334557e-16
⋮
-9.992007221626409e-16
-7.771561172376096e-16
-6.661338147750939e-16
-5.551115123125783e-16
-4.440892098500626e-16
-3.3306690738754696e-16
-2.220446049250313e-16
-1.1102230246251565e-16
0.0As expected the solutions are the same (upto floating point error). Now let's compare the runtimes.
Runtimes
Dense Jacobian
BenchmarkTools.@benchmark NLS.solve($(nlprob_dense), $(NLS.NewtonRaphson()); abstol = 1e-8)BenchmarkTools.Trial: 4987 samples with 1 evaluation per sample.
Range (min … max): 887.532 μs … 18.484 ms ┊ GC (min … max): 0.00% … 92.87%
Time (median): 923.479 μs ┊ GC (median): 0.00%
Time (mean ± σ): 990.910 μs ± 477.909 μs ┊ GC (mean ± σ): 4.02% ± 7.64%
▁█▂
▂▃███▅▃▃▂▂▂▂▂▂▂▂▂▂▂▂▁▁▂▁▁▁▁▁▁▂▁▂▂▃▃▃▂▂▂▂▂▂▂▂▂▂▁▂▂▂▁▁▁▁▁▁▁▁▂▁▂ ▂
888 μs Histogram: frequency by time 1.46 ms <
Memory estimate: 741.07 KiB, allocs estimate: 180.BenchmarkTools.@benchmark NLS.solve($(nlprob_dense), $(NLS.PETScSNES()); abstol = 1e-8)BenchmarkTools.Trial: 1182 samples with 1 evaluation per sample.
Range (min … max): 3.959 ms … 50.581 ms ┊ GC (min … max): 0.00% … 14.15%
Time (median): 4.158 ms ┊ GC (median): 0.00%
Time (mean ± σ): 4.226 ms ± 1.353 ms ┊ GC (mean ± σ): 0.14% ± 0.41%
▃▄▆█▆▇▁▃ ▁
▂▂▃▃▃▃▃▃▃▃▄▂▃▃▅▇██████████▇▆▅▄▄▅▄▄▅▄▇███▇▅▄▄▃▄▃▃▂▃▂▂▂▂▁▂▂▂ ▄
3.96 ms Histogram: frequency by time 4.47 ms <
Memory estimate: 351.95 KiB, allocs estimate: 276.Sparse Jacobian
BenchmarkTools.@benchmark NLS.solve($(nlprob_sparse), $(NLS.NewtonRaphson()); abstol = 1e-8)BenchmarkTools.Trial: 10000 samples with 1 evaluation per sample.
Range (min … max): 319.885 μs … 62.678 ms ┊ GC (min … max): 0.00% … 60.59%
Time (median): 352.907 μs ┊ GC (median): 0.00%
Time (mean ± σ): 413.837 μs ± 1.039 ms ┊ GC (mean ± σ): 8.76% ± 4.66%
▃▆█▇▆▄▂▃▃▃▂▁
▂▃▃▄▅▇█████████████▇▅▅▅▅▅▄▄▃▃▃▃▃▃▃▃▂▃▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▁▂▂▂▁▁▂ ▄
320 μs Histogram: frequency by time 471 μs <
Memory estimate: 523.31 KiB, allocs estimate: 2672.BenchmarkTools.@benchmark NLS.solve($(nlprob_sparse), $(NLS.PETScSNES()); abstol = 1e-8)BenchmarkTools.Trial: 8856 samples with 1 evaluation per sample.
Range (min … max): 339.892 μs … 496.367 ms ┊ GC (min … max): 0.00% … 28.50%
Time (median): 484.616 μs ┊ GC (median): 0.00%
Time (mean ± σ): 577.124 μs ± 6.042 ms ┊ GC (mean ± σ): 4.01% ± 0.39%
▁▁▂▅█▆▆▃▁▁
▂▅██████████▅▃▂▂▂▂▂▃▄▆▆▇▇▆▆▇▇▇▆▆▅▅▅▆▇▆▆▇▆▆▅▄▄▃▄▄▅▅▆▆▆▆▅▄▃▂▂▂▂ ▄
340 μs Histogram: frequency by time 693 μs <
Memory estimate: 180.09 KiB, allocs estimate: 2224.