Skip to content

Commit

Permalink
adjust permutation argument
Browse files Browse the repository at this point in the history
  • Loading branch information
dpo committed Oct 17, 2023
1 parent 244f656 commit d1e02f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benchmark/benchmarks.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ for subdir ∈ subdirs
L = tril(A, -1)
D = diag(A)
P = collect(1:n)
SUITE["LLDL"][name] = @benchmarkable lldl($L, $D, $P)
lldlt = lldl(L, D, P)
SUITE["LLDL"][name] = @benchmarkable lldl($L, $D, P = $P)
lldlt = lldl(L, D, P = P)
y = similar(b)
SUITE["LDIV"][name] = @benchmarkable ldiv!($y, $lldlt, $b)
end
Expand Down

0 comments on commit d1e02f5

Please sign in to comment.