Skip to content
New issue

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

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

Already on GitHub? # to your account

restore value to mutated input on error #223

Merged
merged 3 commits into from
Jun 7, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
10 changes: 6 additions & 4 deletions src/grad.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,12 @@ function jacobian(fdm, f, x::Vector{<:Real}; len=nothing)
ẏs = map(eachindex(x)) do n
return fdm(zero(eltype(x))) do ε
xn = x[n]
x[n] = xn + ε
ret = copy(first(to_vec(f(x)))) # copy required incase `f(x)` returns something that aliases `x`
x[n] = xn # Can't do `x[n] -= ϵ` as floating-point math is not associative
return ret
try
x[n] = xn + ε
return copy(first(to_vec(f(x)))) # copy required incase `f(x)` returns something that aliases `x`
finally
x[n] = xn # Can't do `x[n] -= ϵ` as floating-point math is not associative
end
end
end
return (reduce(hcat, ẏs), )
Expand Down
13 changes: 13 additions & 0 deletions test/grad.jl
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,19 @@ using FiniteDifferences: grad, jacobian, _jvp, jvp, j′vp, _j′vp, to_vec
@test J ≈ one(Matrix{T}(undef, size(J)))
end

@testset "jacobian that throws errors" begin
# https://github.com/JuliaDiff/FiniteDifferences.jl/issues/221
fdm = central_fdm(5, 1)
x = zeros(5)
try
jacobian(fdm, error, x)
catch err
@assert err isa ErrorException
end
# Make sure state of `x` is restored.
@test x == zeros(5)
end

@testset "multi vars jacobian/grad" begin
rng, fdm = MersenneTwister(123456), central_fdm(5, 1)

Expand Down