From d1e02f5398700140fc85b9921c332bfd5187ae24 Mon Sep 17 00:00:00 2001 From: Dominique Orban Date: Tue, 17 Oct 2023 00:03:27 -0400 Subject: [PATCH] adjust permutation argument --- benchmark/benchmarks.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmark/benchmarks.jl b/benchmark/benchmarks.jl index dbccd46..535eed9 100644 --- a/benchmark/benchmarks.jl +++ b/benchmark/benchmarks.jl @@ -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