Mercurial > repos > public > sbplib_julia
view benchmark/run_and_view.jl @ 1180:37f29a3a78dc tooling/benchmarks
Add some comments
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 27 Jan 2023 11:31:07 +0100 |
parents | d6038ceba882 |
children | f49bac53e72b |
line wrap: on
line source
import PkgBenchmark import Markdown import Mustache import Dates import Sbplib const sbplib_root = splitpath(pathof(Sbplib))[1:end-2] |> joinpath const results_dir = mkpath(joinpath(sbplib_root, "benchmark/results")) const template_path = joinpath(sbplib_root, "benchmark/result.tmpl") function main() r = run_benchmark() file_path = write_result_html(r) open_in_default_browser(file_path) end # TBD: What parts are PkgBenchmark contributing? Can it be stripped out? Can we replace the html output part? function run_benchmark() r = PkgBenchmark.benchmarkpkg(Sbplib) commit = hg_id() return PkgBenchmark.BenchmarkResults( "Sbplib.jl", commit, r.benchmarkgroup, r.date, r.julia_commit, r.vinfo, r.benchmarkconfig, ) end function write_result_html(io, r) iobuffer = IOBuffer() PkgBenchmark.export_markdown(iobuffer, r) parsed_md = Markdown.parse(String(take!(iobuffer))) content = Markdown.html(parsed_md) template = Mustache.load(template_path) dt = Dates.format(PkgBenchmark.date(r), "yyyy-mm-dd HH:MM:SS") Mustache.render(io, template, Dict("title"=>dt, "content"=>content)) end ## Fix the writing of the commit, it chops off all the important info function write_result_html(r) dt = Dates.format(PkgBenchmark.date(r), "yyyy-mm-dd HHMMSS") file_path = joinpath(results_dir, dt*".html") open(file_path, "w") do io write_result_html(io, r) end return file_path end function hg_id() cmd = Cmd(`hg id`, dir=sbplib_root) return readchomp(addenv(cmd, "HGPLAIN"=>"")) end function hg_rev() cmd = Cmd(`hg id -i`, dir=sbplib_root) return readchomp(addenv(cmd, "HGPLAIN"=>"")) end function hg_update(rev) cmd = Cmd(`hg update --check $rev`, dir=sbplib_root) run(addenv(cmd, "HGPLAIN"=>"")) end # From Pluto.jl/src/webserver/WebServer.jl (2023-01-24) function open_in_default_browser(url::AbstractString)::Bool try if Sys.isapple() Base.run(`open $url`) true elseif Sys.iswindows() || detectwsl() Base.run(`powershell.exe Start "'$url'"`) true elseif Sys.islinux() Base.run(`xdg-open $url`) true else false end catch ex false end end main # TODO: Change color of codeblocks # TODO: Change width of tables and code blocks