Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.

Commit 882b6ac

Browse files
authored
Fix for new BlockBandedMatrices
1 parent 7fc6792 commit 882b6ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_ad.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ function f(out, x)
215215
return vec(out)
216216
end
217217
x = rand(10000)
218-
J = BandedBlockBandedMatrix(Ones(10000, 10000), (fill(100, 100), fill(100, 100)), (1, 1), (1, 1))
218+
J = BandedBlockBandedMatrix(Ones(10000, 10000), fill(100, 100), fill(100, 100), (1, 1), (1, 1))
219219
Jsparse = sparse(J)
220220
colors = matrix_colors(J)
221221
forwarddiff_color_jacobian!(J, f, x, colorvec=colors)

0 commit comments

Comments
 (0)