From e38f1959adc6825a6698bb36221e4006a3034c1d Mon Sep 17 00:00:00 2001 From: Dominique Orban Date: Mon, 23 Oct 2023 18:41:59 -0700 Subject: [PATCH] restore full benchmark suite --- benchmark/benchmarks.jl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/benchmark/benchmarks.jl b/benchmark/benchmarks.jl index 3e32862..f8fd192 100644 --- a/benchmark/benchmarks.jl +++ b/benchmark/benchmarks.jl @@ -11,13 +11,13 @@ const sqd_hash = artifact_hash("sqdcollection", artifact_toml) const sqd_path = joinpath(artifact_path(sqd_hash), "sqd-collection-0.1") subdirs = readdir(sqd_path) -const formulations = ("2x2",) # , "3x3") -const iters = (0,) #, 5, 10) +const formulations = ("2x2", "3x3") +const iters = (0, 5, 10) const SUITE = BenchmarkGroup() SUITE["LLDL"] = BenchmarkGroup() -# SUITE["LDIV"] = BenchmarkGroup() +SUITE["LDIV"] = BenchmarkGroup() for subdir ∈ subdirs subdir == ".git" && continue @@ -33,9 +33,9 @@ for subdir ∈ subdirs L = tril(A) P = 1:n SUITE["LLDL"][name] = @benchmarkable lldl($L, P = $P) - # lldlt = lldl(L, P = P) - # y = similar(b) - # SUITE["LDIV"][name] = @benchmarkable ldiv!($y, $lldlt, $b) + lldlt = lldl(L, P = P) + y = similar(b) + SUITE["LDIV"][name] = @benchmarkable ldiv!($y, $lldlt, $b) end end end