Skip to content

Commit 5ea72c1

Browse files
committed
Better plot
1 parent 02bd68f commit 5ea72c1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

perf/lu.jl

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,18 +47,18 @@ blaslib = BLAS.vendor() === :mkl ? :MKL : :OpenBLAS
4747
df = DataFrame(Size = ns,
4848
Reference = ref_mflops)
4949
setproperty!(df, blaslib, bas_mflops)
50-
setproperty!(df, Symbol("RecursiveFactorization with default recursion threshold"), rec_mflops)
51-
setproperty!(df, Symbol("RecursiveFactorization fully recursive"), rec4_mflops)
52-
setproperty!(df, Symbol("RecursiveFactorization fully iterative"), rec800_mflops)
53-
df = stack(df, [Symbol("RecursiveFactorization with default recursion threshold"),
54-
Symbol("RecursiveFactorization fully recursive"),
55-
Symbol("RecursiveFactorization fully iterative"),
50+
setproperty!(df, Symbol("RF with default threshold"), rec_mflops)
51+
setproperty!(df, Symbol("RF fully recursive"), rec4_mflops)
52+
setproperty!(df, Symbol("RF fully iterative"), rec800_mflops)
53+
df = stack(df, [Symbol("RF with default threshold"),
54+
Symbol("RF fully recursive"),
55+
Symbol("RF fully iterative"),
5656
blaslib,
5757
:Reference], variable_name = :Library, value_name = :GFLOPS)
5858
plt = df |> @vlplot(
5959
:line, color = {:Library, scale={scheme="category10"}},
6060
x = {:Size}, y = {:GFLOPS},
61-
width = 2400, height = 600
61+
width = 1000, height = 600
6262
)
6363
save(joinpath(homedir(), "Pictures", "lu_float64.png"), plt)
6464

0 commit comments

Comments
 (0)