Skip to content

Commit

Permalink
mark a test broken on 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mcabbott committed Aug 1, 2022
1 parent 44477b8 commit 7c1a557
Show file tree
Hide file tree
Showing 2 changed files with 8 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 = "1.39.1"
version = "1.40.0"

[deps]
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
Expand Down
9 changes: 7 additions & 2 deletions test/rulesets/Base/arraymath.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
@testset "arraymath.jl" begin
@testset "inv(::Matrix{$T})" for T in (Float64, ComplexF64)
B = generate_well_conditioned_matrix(T, 3)
@gpu test_frule(inv, B)
@gpu test_rrule(inv, B)
if VERSION >= v"1.7"
@gpu test_frule(inv, B)
@gpu test_rrule(inv, B)
else
@gpu_broken test_frule(inv, B)
@gpu_broken test_rrule(inv, B)
end
end

@testset "*: $T" for T in (Float64, ComplexF64)
Expand Down

0 comments on commit 7c1a557

Please sign in to comment.