comparison benchmark/make.jl @ 1395:bdcdbd4ea9cd feature/boundary_conditions

Merge with default. Comment out broken tests for boundary_conditions at sat
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Wed, 26 Jul 2023 21:35:50 +0200
parents 6ae2ec4cef5a
children
comparison
equal deleted inserted replaced
1217:ea2e8254820a 1395:bdcdbd4ea9cd
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)