We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5f015b commit 72e6a83Copy full SHA for 72e6a83
test/rulesets/SparseArrays/sparsematrix.jl
@@ -35,9 +35,9 @@ end
35
end
36
37
@testset "[log[abs[det]]] SparseMatrixCSC" begin
38
- ii = 1:5
39
- jj = 1:5
40
- x = ones(5)
+ ii = [1:5; 2; 4]
+ jj = [1:5; 4; 2]
+ x = [ones(5); 0.1; 0.1]
41
A = sparse(ii, jj, x)
42
test_rrule(logabsdet, A)
43
test_rrule(logdet, A)
0 commit comments