comparison benchmark/make.jl @ 1362:a6918dfb0cf5 bugfix/lazytensors

Merge with default
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Sun, 21 May 2023 20:51:52 +0200
parents 6ae2ec4cef5a
children
comparison
equal deleted inserted replaced
1359:646027afe74b 1362:a6918dfb0cf5
1 rev = nothing
2 baseline = nothing
3 target = nothing
4
5 if "--rev" ∈ ARGS
6 i = findlast(==("--rev"), ARGS)
7 rev = ARGS[i+1]
8 end
9
10 if "--target" ∈ ARGS
11 i = findlast(==("--target"), ARGS)
12 target = ARGS[i+1]
13 end
14
15 if "--baseline" ∈ ARGS
16 i = findlast(==("--baseline"), ARGS)
17 baseline = ARGS[i+1]
18 end
19
20 include("benchmark_utils.jl")
21 main(;rev, target, baseline)