Mercurial > repos > public > sbplib_julia
comparison benchmark/make.jl @ 1294:7610a61eaac1 tooling/benchmarks
Add missing file
| author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
|---|---|
| date | Thu, 23 Mar 2023 06:57:14 +0100 |
| parents | |
| children | 6ae2ec4cef5a |
comparison
equal
deleted
inserted
replaced
| 1284:f19c51ddbd72 | 1294:7610a61eaac1 |
|---|---|
| 1 if "--rev" ∈ ARGS | |
| 2 i = findlast(==("--rev"), ARGS) | |
| 3 args = parse(Int,ARGS[i+1]) | |
| 4 elseif ("--target","--baseline") ∈ ARGS | |
| 5 i = findlast(==("--target"), ARGS) | |
| 6 j = findlast(==("--baseline"), ARGS) | |
| 7 args = (ARGS[i+1],ARGS[j+1]) | |
| 8 else | |
| 9 args = () | |
| 10 end | |
| 11 | |
| 12 include("benchmark_utils.jl") | |
| 13 main(args...) |
