File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ const sqd_hash = artifact_hash("sqdcollection", artifact_toml)
11
11
const sqd_path = joinpath (artifact_path (sqd_hash), " sqd-collection-0.1" )
12
12
13
13
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)
16
16
17
17
const SUITE = BenchmarkGroup ()
18
18
19
19
SUITE[" LLDL" ] = BenchmarkGroup ()
20
- SUITE[" LDIV" ] = BenchmarkGroup ()
20
+ # SUITE["LDIV"] = BenchmarkGroup()
21
21
22
22
for subdir ∈ subdirs
23
23
subdir == " .git" && continue
@@ -33,9 +33,9 @@ for subdir ∈ subdirs
33
33
L = tril (A)
34
34
P = 1 : n
35
35
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)
39
39
end
40
40
end
41
41
end
You can’t perform that action at this time.
0 commit comments