Skip to content

Commit e6517ae

Browse files
author
administrator
committed
shorten benchmarks
1 parent c447783 commit e6517ae

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

benchmark/benchmarks.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ const sqd_hash = artifact_hash("sqdcollection", artifact_toml)
1111
const sqd_path = joinpath(artifact_path(sqd_hash), "sqd-collection-0.1")
1212

1313
subdirs = readdir(sqd_path)
14-
const formulations = ("2x2", "3x3")
15-
const iters = (0, 5, 10)
14+
const formulations = ("2x2",) # , "3x3")
15+
const iters = (0,) #, 5, 10)
1616

1717
const SUITE = BenchmarkGroup()
1818

1919
SUITE["LLDL"] = BenchmarkGroup()
20-
SUITE["LDIV"] = BenchmarkGroup()
20+
# SUITE["LDIV"] = BenchmarkGroup()
2121

2222
for subdir subdirs
2323
subdir == ".git" && continue
@@ -33,9 +33,9 @@ for subdir ∈ subdirs
3333
L = tril(A)
3434
P = 1:n
3535
SUITE["LLDL"][name] = @benchmarkable lldl($L, P = $P)
36-
lldlt = lldl(L, P = P)
37-
y = similar(b)
38-
SUITE["LDIV"][name] = @benchmarkable ldiv!($y, $lldlt, $b)
36+
# lldlt = lldl(L, P = P)
37+
# y = similar(b)
38+
# SUITE["LDIV"][name] = @benchmarkable ldiv!($y, $lldlt, $b)
3939
end
4040
end
4141
end

0 commit comments

Comments
 (0)