I have a rather complex calculation that maps a vector of floats to a longer vector of floats.
At some inputs, ForwardDiff gives me a Jacobian where some elements are NaN
. Inputs are of course finite, and so is the function value.
When checked with FiniteDifferences and that works fine. I would like to understand what is going on (I am suspecting a numerical issue with a rule or something). I have thought of adding
_finiteD(x::Real) = true
_finiteD(x::ForwardDiff.Dual) = all(isfinite, x.partials)
_finiteD(a::AbstractArray) = all(_finiteD, a)
and then peppering the code with
@assert _finiteD(some_interim_value)
but this will be tedious. Is there a shortcut?