Skip to content

Commit

Permalink
try fixing LM for banded jacobian
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal committed Nov 2, 2023
1 parent b07360f commit 2c4b9d3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/levenberg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ function perform_step!(cache::LevenbergMarquardtCache{true, fastls}) where {fast
# Usual Levenberg-Marquardt step ("velocity").
# The following lines do: cache.v = -cache.mat_tmp \ cache.u_tmp
if fastls
cache.mat_tmp[1:length(fu1), :] .= cache.J
copyto!(@view(cache.mat_tmp[1:length(fu1), :]), cache.J)
cache.mat_tmp[(length(fu1) + 1):end, :] .= λ .* cache.DᵀD
cache.rhs_tmp[1:length(fu1)] .= _vec(fu1)
linres = dolinsolve(alg.precs, linsolve; A = cache.mat_tmp,
Expand Down Expand Up @@ -299,8 +299,8 @@ function perform_step!(cache::LevenbergMarquardtCache{true, fastls}) where {fast
cache.stats.nfactors += 2

# Require acceptable steps to satisfy the following condition.
norm_v = norm(v)
if 2 * norm(cache.a) α_geodesic * norm_v
norm_v = cache.internalnorm(v)
if 2 * cache.internalnorm(cache.a) α_geodesic * norm_v
_vec(cache.δ) .= _vec(v) .+ _vec(cache.a) ./ 2
@unpack δ, loss_old, norm_v_old, v_old, b_uphill = cache
f(cache.fu_tmp, u .+ δ, p)
Expand Down Expand Up @@ -356,7 +356,7 @@ function perform_step!(cache::LevenbergMarquardtCache{false, fastls}) where {fas

# Usual Levenberg-Marquardt step ("velocity").
if fastls
cache.mat_tmp = vcat(J, λ .* cache.DᵀD)
cache.mat_tmp = _vcat(J, λ .* cache.DᵀD)
cache.rhs_tmp[1:length(fu1)] .= -_vec(fu1)
linres = dolinsolve(alg.precs, linsolve; A = cache.mat_tmp,
b = cache.rhs_tmp, linu = _vec(cache.v), p = p, reltol = cache.abstol)
Expand Down Expand Up @@ -392,8 +392,8 @@ function perform_step!(cache::LevenbergMarquardtCache{false, fastls}) where {fas
cache.stats.nfactors += 1

# Require acceptable steps to satisfy the following condition.
norm_v = norm(v)
if 2 * norm(cache.a) α_geodesic * norm_v
norm_v = cache.internalnorm(v)
if 2 * cache.internalnorm(cache.a) α_geodesic * norm_v
cache.δ = _restructure(cache.δ, _vec(v) .+ _vec(cache.a) ./ 2)
@unpack δ, loss_old, norm_v_old, v_old, b_uphill = cache
fu_new = f(u .+ δ, p)
Expand Down

0 comments on commit 2c4b9d3

Please sign in to comment.