Skip to content

Commit e42ce52

Browse files
committed
remove debug statements
1 parent b507348 commit e42ce52

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/stage1/recurse_fwd.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ struct ∂☆new{N}; end
1515
function (::∂☆new{1})(B::Type, xs::AbstractTangentBundle{1}...)
1616
primal_args = map(primal, xs)
1717
the_primal = _construct(B, primal_args)
18-
@info "∂☆new{1}"
1918
tangent_tup = map(first_partial, xs)
2019
the_partial = if B<:Tuple
2120
Tangent{B, typeof(tangent_tup)}(tangent_tup)
@@ -30,7 +29,6 @@ end
3029
function (::∂☆new{N})(B::Type, xs::AbstractTangentBundle{N}...) where {N}
3130
primal_args = map(primal, xs)
3231
the_primal = _construct(B, primal_args)
33-
@info "∂☆new{N}"
3432
the_partials = ntuple(Val{N}()) do ii
3533
tangent_tup = map(x->partial(x, ii), xs)
3634
tangent = if B<:Tuple

0 commit comments

Comments
 (0)