Permalink
Please sign in to comment.
Browse files
Make a report for the osh-runtime benchmark.
Add 'abuild -h' to the suite. Factored code out of the osh-parser benchmark, including CSS, common shell functions, and R code.
- Loading branch information...
Showing
with
268 additions
and 90 deletions.
- +35 −0 benchmarks/benchmarks.css
- +12 −0 benchmarks/common.sh
- +2 −38 benchmarks/osh-parser.sh
- +151 −28 benchmarks/osh-runtime.sh
- +64 −20 benchmarks/report.R
- +3 −3 scripts/release.sh
- +1 −1 test/wild2.sh
| @@ -0,0 +1,35 @@ | ||
| body { | ||
| margin: 0 auto; | ||
| width: 60em; | ||
| } | ||
| code { | ||
| color: green; | ||
| } | ||
| table { | ||
| margin-left: 3em; | ||
| font-family: sans-serif; | ||
| } | ||
| td { | ||
| padding: 8px; /* override default of 5px */ | ||
| } | ||
| h3, h4 { | ||
| color: darkgreen; | ||
| } | ||
| /* these two tables are side by side */ | ||
| #shells, #hosts, #raw_times { | ||
| display: inline-block; | ||
| vertical-align: top; | ||
| } | ||
| #home-link { | ||
| text-align: right; | ||
| } | ||
| /* columns */ | ||
| #osh-ovm, #osh-cpython { | ||
| background-color: oldlace; | ||
| } | ||
| /* rows */ | ||
| .osh-row { | ||
| background-color: oldlace; | ||
| } |
| @@ -0,0 +1,12 @@ | ||
| #!/bin/bash | ||
| # | ||
| # Common functions for benchmarks. | ||
| # | ||
| csv-concat() { | ||
| tools/csv_concat.py "$@" | ||
| } | ||
| csv2html() { | ||
| web/table/csv2html.py "$@" | ||
| } |
Oops, something went wrong.
0 comments on commit
562ce71