-
Notifications
You must be signed in to change notification settings - Fork 3
Description
Hi,
first of all, thank you for the packages, it appears really useful and seems to provide noticeable speedups for some of my codes!
However, when playing around with the package today, I ran into the following issue when trying to use FastInterpolations.jl with ForwardDiff: While differentiating with respect to function values y and query points xq works as promise, I receive an error when also the grid points x are dual, which could happen when the interpolant is embedded inside a larger differentiable function. I include a nonsensical minimal example below.
using FastInterpolations, ForwardDiff
function finterp_tester(x,y,z)
litp = linear_interp(x,y; extrap=ExtendExtrap())
return litp.(z)
end
x = collect(1:0.1:10)
xq = collect(1:0.1:10) .+ 0.01
y = log.(x)
#this works
ForwardDiff.derivative(t -> finterp_tester(x,y,t*xq),1.0)
#this works
ForwardDiff.derivative(t -> finterp_tester(x,t*y,xq),1.0)
#this doesn't work
ForwardDiff.derivative(t -> finterp_tester(t*x,y,xq),1.0)
When I run ForwardDiff.derivative(t -> finterp_tester(t*x,y,xq),1.0), I receive an error message as below:
MethodError: no method matching _to_float(::Vector{ForwardDiff.Dual{Nothing, Float64, 1}}, ::Type{ForwardDiff.Dual{Nothing, Float64, 1}})
The function `_to_float` exists, but no method is defined for this combination of argument types.
Closest candidates are:
_to_float(::AbstractVector, ::Type{FT}) where FT<:AbstractFloat
@ FastInterpolations C:\Users\au790070\.julia\packages\FastInterpolations\Y9IZE\src\core\utils.jl:42
_to_float(::AbstractRange{FT}, ::Type{FT}) where FT<:AbstractFloat
@ FastInterpolations C:\Users\au790070\.julia\packages\FastInterpolations\Y9IZE\src\core\utils.jl:26
_to_float(::AbstractRange, ::Type{FT}) where FT<:AbstractFloat
@ FastInterpolations C:\Users\au790070\.julia\packages\FastInterpolations\Y9IZE\src\core\utils.jl:22
...
This seems to suggest that FastInterpolations doesn't accept duals as inputs for the grid points x. Doing the respective operation with the interpolators of other packages, e.g., BasicInterpolators.jl, work.
Now, I can see good reasons to not allow dual inputs for the grids, but the package documentation says it specifically aims to support auto-diff and specifically ForwardDiff.jl. Hence, I am wondering whether the above behaviour may not be intentional? If it in fact is, perhaps it could warrant a note in the documentation?