Skip to content

Commit 1cfff1b

Browse files
committed
zakatal gubu
1 parent 4426ec0 commit 1cfff1b

File tree

1 file changed

+17
-8
lines changed

1 file changed

+17
-8
lines changed

benchmarking/CI-scripts/run_benchmarks.jl

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ end
3535
function perform_operation(
3636
ode,
3737
fun = StructuralIdentifiability.assess_identifiability,
38-
trials = 5;
38+
trials = 3;
3939
kws...,
4040
)
4141
@assert fun in [
@@ -54,8 +54,8 @@ function perform_operation(
5454
end
5555

5656
fun_name = "assess_identifiability"
57-
perform_operation(benchmarks[:SIWR][:ode])
58-
for m in [:SIWR, :LV_simple, :Pharm, :MAPK6, :Goodwin]
57+
perform_operation(benchmarks[:LV_simple][:ode])
58+
for m in [:SIWR, :LV_simple, :Pharm]
5959
push!(
6060
suite,
6161
(
@@ -67,7 +67,10 @@ for m in [:SIWR, :LV_simple, :Pharm, :MAPK6, :Goodwin]
6767
end
6868

6969
fun_name = "assess_local_identifiability"
70-
perform_operation(benchmarks[:SIWR][:ode])
70+
perform_operation(
71+
benchmarks[:LV_simple][:ode],
72+
StructuralIdentifiability.assess_local_identifiability,
73+
)
7174
for m in [:SIWR, :Pharm, :MAPK5, :MAPK5bis, :Goodwin]
7275
push!(
7376
suite,
@@ -83,8 +86,11 @@ for m in [:SIWR, :Pharm, :MAPK5, :MAPK5bis, :Goodwin]
8386
end
8487

8588
fun_name = "find_identifiable_functions"
86-
perform_operation(benchmarks[:SIWR][:ode])
87-
for m in [:SIWR, :Goodwin, :SEAIJRC, :Sntg, :QY, :LLW, :Bilirubin]
89+
perform_operation(
90+
benchmarks[:LV_simple][:ode],
91+
StructuralIdentifiability.find_identifiable_functions,
92+
)
93+
for m in [:Goodwin, :SEAIJRC, :Sntg, :LLW, :Bilirubin]
8894
push!(
8995
suite,
9096
(
@@ -99,8 +105,11 @@ for m in [:SIWR, :Goodwin, :SEAIJRC, :Sntg, :QY, :LLW, :Bilirubin]
99105
end
100106

101107
fun_name = "reparametrize_global"
102-
perform_operation(benchmarks[:SIWR][:ode])
103-
for m in [:Goodwin, :SEAIJRC, :Sntg, :LLW, :Bilirubin, :SEUIR]
108+
perform_operation(
109+
benchmarks[:LV_simple][:ode],
110+
StructuralIdentifiability.reparametrize_global,
111+
)
112+
for m in [:Goodwin, :SEAIJRC, :SEUIR]
104113
push!(
105114
suite,
106115
(

0 commit comments

Comments
 (0)