Skip to content

Commit 0be4d48

Browse files
cleanup
1 parent 0bb95c1 commit 0be4d48

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ChainRules"
22
uuid = "082447d4-558c-5d27-93f4-14fc19e9eca2"
3-
version = "1.26"
3+
version = "1.27.0"
44

55
[deps]
66
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
@@ -18,7 +18,7 @@ ChainRulesTestUtils = "1.5"
1818
Compat = "3.35"
1919
FiniteDifferences = "0.12.20"
2020
IrrationalConstants = "0.1.1"
21-
JuliaInterpreter = "0.8" # latest is "0.9.1"
21+
JuliaInterpreter = "0.8"
2222
RealDot = "0.1"
2323
StaticArrays = "1.2"
2424
julia = "1.6"

src/rulesets/SparseArrays/sparsematrix.jl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ end
2626

2727
function rrule(::typeof(findnz), A::AbstractSparseMatrix)
2828
I, J, V = findnz(A)
29-
@show I, J, V
3029
m, n = size(A)
3130

3231
function findnz_pullback(Δ)
@@ -38,8 +37,6 @@ function rrule(::typeof(findnz), A::AbstractSparseMatrix)
3837
=== NoTangent() && return (NoTangent(), V̄)
3938
=== ZeroTangent() && return (NoTangent(), V̄)
4039

41-
@show I, J, V̄
42-
4340
return NoTangent(), sparse(I, J, V̄, m, n)
4441
end
4542

0 commit comments

Comments
 (0)