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 b507348 commit e42ce52Copy full SHA for e42ce52
src/stage1/recurse_fwd.jl
@@ -15,7 +15,6 @@ struct ∂☆new{N}; end
15
function (::∂☆new{1})(B::Type, xs::AbstractTangentBundle{1}...)
16
primal_args = map(primal, xs)
17
the_primal = _construct(B, primal_args)
18
- @info "∂☆new{1}"
19
tangent_tup = map(first_partial, xs)
20
the_partial = if B<:Tuple
21
Tangent{B, typeof(tangent_tup)}(tangent_tup)
@@ -30,7 +29,6 @@ end
30
29
function (::∂☆new{N})(B::Type, xs::AbstractTangentBundle{N}...) where {N}
31
32
33
- @info "∂☆new{N}"
34
the_partials = ntuple(Val{N}()) do ii
35
tangent_tup = map(x->partial(x, ii), xs)
36
tangent = if B<:Tuple
0 commit comments