Skip to content

Commit

Permalink
add comment, bump patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
simeonschaub committed Feb 13, 2021
1 parent a354d47 commit fb311af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "ChainRules"
uuid = "082447d4-558c-5d27-93f4-14fc19e9eca2"
version = "0.7.51"
version = "0.7.52"

[deps]
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
Expand Down
5 changes: 3 additions & 2 deletions test/rulesets/LinearAlgebra/symmetric.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@
∂x = randn(T, N, N)
ΔΩ = randn(T, N, N)
@testset "back(::$MT)" for MT in (Matrix, LowerTriangular, UpperTriangular)
_ΔΩ = MT(ΔΩ)
rrule_test(
SymHerm, _ΔΩ, (x, ∂x), (uplo, nothing);
SymHerm, MT(ΔΩ), (x, ∂x), (uplo, nothing);
# type stability here critically relies on uplo being constant propagated,
# so we need to test this more carefully below
check_inferred=false,
)
if check_inferred
Expand Down

0 comments on commit fb311af

Please sign in to comment.