We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97153ff commit c53e70bCopy full SHA for c53e70b
src/highlevel/common.jl
@@ -170,8 +170,9 @@ If `fx` is not specified, it will be computed by calling `f(x)`.
170
171
A cache for computing the Jacobian of type `AbstractMaybeSparseJacobianCache`.
172
"""
173
-function sparse_jacobian_cache(ad::AbstractADType, sd::AbstractSparsityDetection, args...)
174
- return sparse_jacobian_cache_aux(mode(ad), ad, sd, args...)
+function sparse_jacobian_cache(
+ ad::AbstractADType, sd::AbstractSparsityDetection, args...; kwargs...)
175
+ return sparse_jacobian_cache_aux(mode(ad), ad, sd, args...; kwargs...)
176
end
177
178
function sparse_jacobian_static_array(ad, cache, f, x::SArray)
0 commit comments