@@ -47,18 +47,18 @@ blaslib = BLAS.vendor() === :mkl ? :MKL : :OpenBLAS
47
47
df = DataFrame (Size = ns,
48
48
Reference = ref_mflops)
49
49
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" ),
56
56
blaslib,
57
57
:Reference ], variable_name = :Library , value_name = :GFLOPS )
58
58
plt = df |> @vlplot (
59
59
:line , color = {:Library , scale= {scheme= " category10" }},
60
60
x = {:Size }, y = {:GFLOPS },
61
- width = 2400 , height = 600
61
+ width = 1000 , height = 600
62
62
)
63
63
save (joinpath (homedir (), " Pictures" , " lu_float64.png" ), plt)
64
64
0 commit comments