Skip to content

Commit

Permalink
Disable debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
sharanry committed Nov 19, 2023
1 parent 834cbdd commit 1a18393
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ext/LinearSolveForwardDiff.jl
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ for ALG in subtypes(LinearSolve, LinearSolve.AbstractFactorization)
alg::$ALG,
kwargs...
) where {T, V, P, B}
@info "using solve! df/dA"
# @info "using solve! df/dA"
dAs = begin
t = collect.(ForwardDiff.partials.(cache.A))
[getindex.(t, i) for i in 1:P]

Check warning on line 45 in ext/LinearSolveForwardDiff.jl

View check run for this annotation

Codecov / codecov/patch

ext/LinearSolveForwardDiff.jl#L43-L45

Added lines #L43 - L45 were not covered by tests
Expand All @@ -54,7 +54,7 @@ for ALG in subtypes(LinearSolve, LinearSolve.AbstractFactorization)
alg::$ALG;
kwargs...
) where {T, V, P, A_}
@info "using solve! df/db"
# @info "using solve! df/db"
dAs = [zero(cache.A) for _=1:P]
dbs = begin
t = collect.(ForwardDiff.partials.(cache.b))
Expand All @@ -69,7 +69,7 @@ for ALG in subtypes(LinearSolve, LinearSolve.AbstractFactorization)
alg::$ALG;
kwargs...
) where {T, V, P}
@info "using solve! df/dAb"
# @info "using solve! df/dAb"
dAs = begin
t = collect.(ForwardDiff.partials.(cache.A))
[getindex.(t, i) for i in 1:P]

Check warning on line 75 in ext/LinearSolveForwardDiff.jl

View check run for this annotation

Codecov / codecov/patch

ext/LinearSolveForwardDiff.jl#L73-L75

Added lines #L73 - L75 were not covered by tests
Expand Down

0 comments on commit 1a18393

Please sign in to comment.