Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for JFNK #201

Merged
merged 6 commits into from
Aug 22, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,12 @@ julia = "1.6"
[extras]
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
LinearSolve = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["BenchmarkTools", "SafeTestsets", "Pkg", "Test", "ForwardDiff", "StaticArrays", "Symbolics"]
test = ["BenchmarkTools", "SafeTestsets", "Pkg", "Test", "ForwardDiff", "StaticArrays", "Symbolics", "LinearSolve"]
2 changes: 2 additions & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[deps]
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
LinearSolve = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae"
NonlinearSolve = "8913a72c-1f9b-4ce2-8d82-65094dcecaec"
NonlinearSolveMINPACK = "c100e077-885d-495a-a2ea-599e143bf69d"
SciMLNLSolve = "e9a6253c-8580-4d32-9898-8661bb511710"
Expand All @@ -12,6 +13,7 @@ Sundials = "c3572dad-4567-51f8-b174-8c6c989267f4"
[compat]
BenchmarkTools = "1"
Documenter = "0.27"
LinearSolve = "2"
NonlinearSolve = "1"
NonlinearSolveMINPACK = "0.1"
SciMLNLSolve = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/solvers/BracketingSolvers.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Solves for ``f(t)=0`` in the problem defined by `prob` using the algorithm

## Recommended Methods

`ITP()` is the recommended method for the scalar interval root-finding problems. It is particularly well-suited for cases where the function is smooth and well-behaved; and achieved superlinear convergence while retaining the optimal worst-case performance of the Bisection method. For more details, consult the detailed solver API docs.
`ITP()` is the recommended method for the scalar interval root-finding problems. It is particularly well-suited for cases where the function is smooth and well-behaved; and achieved superlinear convergence while retaining the optimal worst-case performance of the Bisection method. For more details, consult the detailed solver API docs.
`Ridder` is a hybrid method that uses the value of function at the midpoint of the interval to perform an exponential interpolation to the root. This gives a fast convergence with a guaranteed convergence of at most twice the number of iterations as the bisection method.
`Brent` is a combination of the bisection method, the secant method and inverse quadratic interpolation. At every iteration, Brent's method decides which method out of these three is likely to do best, and proceeds by doing a step according to that method. This gives a robust and fast method, which therefore enjoys considerable popularity.

Expand Down
18 changes: 18 additions & 0 deletions docs/src/tutorials/nonlinear.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,21 @@ uspan = (1.0, 2.0) # brackets
probB = IntervalNonlinearProblem(f, uspan)
sol = solve(probB, Falsi())
```

## Using Jacobian Free Newton Krylov (JNFK) Methods

If we want to solve the first example, without constructing the entire Jacobian

```@example
using NonlinearSolve, LinearSolve

function f!(res, u, p)
@. res = u * u - p
end
u0 = [1.0, 1.0]
p = 2.0
probN = NonlinearProblem(f!, u0, p)

linsolve = LinearSolve.KrylovJL_GMRES()
sol = solve(probN, NewtonRaphson(; linsolve), reltol = 1e-9)
```
45 changes: 29 additions & 16 deletions src/jacobian.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ function jacobian_finitediff!(J, f, x, jac_config, cache)
2 * maximum(jac_config.colorvec))
end

# NoOp for Jacobian if it is not a Abstract Array -- For eg, JacVec Operator
jacobian!(J, cache) = J
function jacobian!(J::AbstractMatrix{<:Number}, cache)
f = cache.f
uf = cache.uf
Expand Down Expand Up @@ -52,14 +54,16 @@ function jacobian!(J::AbstractMatrix{<:Number}, cache)
nothing
end

function build_jac_config(alg, f::F1, uf::F2, du1, u, tmp, du2) where {F1, F2}
function build_jac_and_jac_config(alg, f::F1, uf::F2, du1, u, tmp, du2) where {F1, F2}
haslinsolve = hasfield(typeof(alg), :linsolve)

if !SciMLBase.has_jac(f) && # No Jacobian if has analytical solution
((concrete_jac(alg) === nothing && (!haslinsolve || (haslinsolve && # No Jacobian if linsolve doesn't want it
(alg.linsolve === nothing || LinearSolve.needs_concrete_A(alg.linsolve))))) ||
(concrete_jac(alg) !== nothing && concrete_jac(alg))) # Jacobian if explicitly asked for
jac_prototype = f.jac_prototype
has_analytic_jac = SciMLBase.has_jac(f)
linsolve_needs_jac = (concrete_jac(alg) === nothing &&
(!haslinsolve || (haslinsolve && (alg.linsolve === nothing ||
LinearSolve.needs_concrete_A(alg.linsolve)))))
alg_wants_jac = (concrete_jac(alg) !== nothing && concrete_jac(alg))

if !has_analytic_jac && (linsolve_needs_jac || alg_wants_jac)
sparsity, colorvec = sparsity_colorvec(f, u)

if alg_autodiff(alg)
Expand All @@ -70,25 +74,34 @@ function build_jac_config(alg, f::F1, uf::F2, du1, u, tmp, du2) where {F1, F2}
else
typeof(ForwardDiff.Tag(uf, eltype(u)))
end
jac_config = ForwardColorJacCache(uf, u, _chunksize; colorvec = colorvec,
sparsity = sparsity, tag = T)
jac_config = ForwardColorJacCache(uf, u, _chunksize; colorvec, sparsity,
tag = T)
else
if alg_difftype(alg) !== Val{:complex}
jac_config = FiniteDiff.JacobianCache(tmp, du1, du2, alg_difftype(alg),
colorvec = colorvec,
sparsity = sparsity)
jac_config = FiniteDiff.JacobianCache(tmp, du1, du2, alg_difftype(alg);
colorvec, sparsity)
else
jac_config = FiniteDiff.JacobianCache(Complex{eltype(tmp)}.(tmp),
Complex{eltype(du1)}.(du1), nothing,
alg_difftype(alg), eltype(u),
colorvec = colorvec,
sparsity = sparsity)
Complex{eltype(du1)}.(du1), nothing, alg_difftype(alg), eltype(u);
colorvec, sparsity)
end
end
else
jac_config = nothing
end
jac_config

J = if !linsolve_needs_jac
# We don't need to construct the Jacobian
JacVec(uf, u; autodiff = AutoFiniteDiff())
avik-pal marked this conversation as resolved.
Show resolved Hide resolved
else
if f.jac_prototype === nothing
ArrayInterface.undefmatrix(u)
else
f.jac_prototype
end
end

return J, jac_config
end

function get_chunksize(jac_config::ForwardDiff.JacobianConfig{
Expand Down
17 changes: 8 additions & 9 deletions src/levenberg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -228,21 +228,20 @@ end

function jacobian_caches(alg::LevenbergMarquardt, f, u, p, ::Val{true})
uf = JacobianWrapper(f, p)
J = ArrayInterface.undefmatrix(u)

du1 = zero(u)
du2 = zero(u)
tmp = zero(u)
J, jac_config = build_jac_and_jac_config(alg, f, uf, du1, u, tmp, du2)

linprob = LinearProblem(J, _vec(zero(u)); u0 = _vec(zero(u)))
weight = similar(u)
recursivefill!(weight, false)
# Q: Setting this to false leads to residual = 0 in GMRES?
recursivefill!(weight, true)
avik-pal marked this conversation as resolved.
Show resolved Hide resolved

Pl, Pr = wrapprecs(alg.precs(J, nothing, u, p, nothing, nothing, nothing, nothing,
nothing)..., weight)
linsolve = init(linprob, alg.linsolve, alias_A = true, alias_b = true,
Pl = Pl, Pr = Pr)

du1 = zero(u)
du2 = zero(u)
tmp = zero(u)
jac_config = build_jac_config(alg, f, uf, du1, u, tmp, du2)
linsolve = init(linprob, alg.linsolve; alias_A = true, alias_b = true, Pl, Pr)

uf, linsolve, J, du1, jac_config
end
Expand Down
21 changes: 8 additions & 13 deletions src/raphson.jl
Original file line number Diff line number Diff line change
Expand Up @@ -106,25 +106,20 @@ end

function jacobian_caches(alg::NewtonRaphson, f, u, p, ::Val{true})
uf = JacobianWrapper(f, p)
J = if f.jac_prototype === nothing
ArrayInterface.undefmatrix(u)
else
f.jac_prototype
end

du1 = zero(u)
du2 = zero(u)
tmp = zero(u)
J, jac_config = build_jac_and_jac_config(alg, f, uf, du1, u, tmp, du2)

linprob = LinearProblem(J, _vec(zero(u)); u0 = _vec(zero(u)))
weight = similar(u)
recursivefill!(weight, false)
# Q: Setting this to false leads to residual = 0 in GMRES?
recursivefill!(weight, true)
avik-pal marked this conversation as resolved.
Show resolved Hide resolved

Pl, Pr = wrapprecs(alg.precs(J, nothing, u, p, nothing, nothing, nothing, nothing,
nothing)..., weight)
linsolve = init(linprob, alg.linsolve, alias_A = true, alias_b = true,
Pl = Pl, Pr = Pr)

du1 = zero(u)
du2 = zero(u)
tmp = zero(u)
jac_config = build_jac_config(alg, f, uf, du1, u, tmp, du2)
linsolve = init(linprob, alg.linsolve; alias_A = true, alias_b = true, Pl, Pr)

uf, linsolve, J, du1, jac_config
end
Expand Down
17 changes: 8 additions & 9 deletions src/trustRegion.jl
Original file line number Diff line number Diff line change
Expand Up @@ -280,21 +280,20 @@ end

function jacobian_caches(alg::TrustRegion, f, u, p, ::Val{true})
avik-pal marked this conversation as resolved.
Show resolved Hide resolved
uf = JacobianWrapper(f, p)
J = ArrayInterface.undefmatrix(u)

du1 = zero(u)
du2 = zero(u)
tmp = zero(u)
J, jac_config = build_jac_and_jac_config(alg, f, uf, du1, u, tmp, du2)

linprob = LinearProblem(J, _vec(zero(u)); u0 = _vec(zero(u)))
weight = similar(u)
recursivefill!(weight, false)
# Q: Setting this to false leads to residual = 0 in GMRES?
recursivefill!(weight, true)
avik-pal marked this conversation as resolved.
Show resolved Hide resolved

Pl, Pr = wrapprecs(alg.precs(J, nothing, u, p, nothing, nothing, nothing, nothing,
nothing)..., weight)
linsolve = init(linprob, alg.linsolve, alias_A = true, alias_b = true,
Pl = Pl, Pr = Pr)

du1 = zero(u)
du2 = zero(u)
tmp = zero(u)
jac_config = build_jac_config(alg, f, uf, du1, u, tmp, du2)
linsolve = init(linprob, alg.linsolve; alias_A = true, alias_b = true, Pl, Pr)

uf, linsolve, J, du1, jac_config
end
Expand Down
18 changes: 6 additions & 12 deletions src/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ function alg_difftype(alg::AbstractNewtonAlgorithm{
FDT,
ST,
CJ,
}) where {CS, AD, FDT,
ST, CJ}
}) where {CS, AD, FDT, ST, CJ}
FDT
end

Expand All @@ -62,8 +61,7 @@ function concrete_jac(alg::AbstractNewtonAlgorithm{
FDT,
ST,
CJ,
}) where {CS, AD, FDT,
ST, CJ}
}) where {CS, AD, FDT, ST, CJ}
CJ
end

Expand All @@ -73,9 +71,7 @@ function get_chunksize(alg::AbstractNewtonAlgorithm{
FDT,
ST,
CJ,
}) where {CS, AD,
FDT,
ST, CJ}
}) where {CS, AD, FDT, ST, CJ}
Val(CS)
end

Expand All @@ -85,17 +81,15 @@ function standardtag(alg::AbstractNewtonAlgorithm{
FDT,
ST,
CJ,
}) where {CS, AD, FDT,
ST, CJ}
}) where {CS, AD, FDT, ST, CJ}
ST
end

DEFAULT_PRECS(W, du, u, p, t, newW, Plprev, Prprev, cachedata) = nothing, nothing

function dolinsolve(precs::P, linsolve; A = nothing, linu = nothing, b = nothing,
du = nothing, u = nothing, p = nothing, t = nothing,
weight = nothing, cachedata = nothing,
reltol = nothing) where {P}
du = nothing, u = nothing, p = nothing, t = nothing, weight = nothing,
cachedata = nothing, reltol = nothing) where {P}
A !== nothing && (linsolve.A = A)
b !== nothing && (linsolve.b = b)
linu !== nothing && (linsolve.u = linu)
Expand Down
16 changes: 9 additions & 7 deletions test/basictests.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using NonlinearSolve
using StaticArrays
using BenchmarkTools
using LinearSolve
using Test

# --- NewtonRaphson tests ---
Expand Down Expand Up @@ -46,9 +47,9 @@ sol = benchmark_scalar(sf, csu0)
# @test (@ballocated benchmark_mutable(ff, cu0)) < 200
# @test (@ballocated benchmark_scalar(sf, csu0)) < 400

function benchmark_inplace(f, u0)
function benchmark_inplace(f, u0, linsolve)
probN = NonlinearProblem{true}(f, u0)
solver = init(probN, NewtonRaphson(), abstol = 1e-9)
solver = init(probN, NewtonRaphson(; linsolve), abstol = 1e-9)
sol = solve!(solver)
end

Expand All @@ -57,9 +58,11 @@ function ffiip(du, u, p)
end
u0 = [1.0, 1.0]

sol = benchmark_inplace(ffiip, u0)
@test sol.retcode === ReturnCode.Success
@test all(abs.(sol.u .* sol.u .- 2) .< 1e-9)
for linsolve in (nothing, KrylovJL_GMRES())
avik-pal marked this conversation as resolved.
Show resolved Hide resolved
sol = benchmark_inplace(ffiip, u0, linsolve)
@test sol.retcode === ReturnCode.Success
@test all(abs.(sol.u .* sol.u .- 2) .< 1e-9)
end

u0 = [1.0, 1.0]
probN = NonlinearProblem{true}(ffiip, u0)
Expand Down Expand Up @@ -209,8 +212,7 @@ end

function benchmark_inplace(f, u0, radius_update_scheme)
probN = NonlinearProblem{true}(f, u0)
solver = init(probN, TrustRegion(radius_update_scheme = radius_update_scheme),
abstol = 1e-9)
solver = init(probN, TrustRegion(; radius_update_scheme), abstol = 1e-9)
sol = solve!(solver)
end

Expand Down
Loading