@@ -47,18 +47,18 @@ blaslib = BLAS.vendor() === :mkl ? :MKL : :OpenBLAS
4747df = DataFrame (Size = ns,
4848 Reference = ref_mflops)
4949setproperty! (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 )
5858plt = 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 )
6363save (joinpath (homedir (), " Pictures" , " lu_float64.png" ), plt)
6464
0 commit comments