Skip to content

Commit 3fcd5f9

Browse files
committed
increase timeout time and update weak_strat
1 parent 2614325 commit 3fcd5f9

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.buildkite/pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ steps:
7575
exclusive: true
7676
env:
7777
GROUP: 'WeakConvergence4'
78-
timeout_in_minutes: 240
78+
timeout_in_minutes: 360
7979
# Don't run Buildkite if the commit message includes the text [skip tests]
80-
if: build.message !~ /\[skip tests\]/
80+
if: build.message !~ /\[skip tests\]/
8181

8282
- label: "WeakAdaptiveCPU"
8383
plugins:

test/weak_convergence/weak_strat.jl

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ sim = test_convergence(dts,ensemble_prob,RS1(),
127127
@test abs(sim.𝒪est[:weak_final]-2) < 0.4
128128
println("RS1:", sim.𝒪est[:weak_final])
129129

130-
numtraj = Int(1e7)
130+
numtraj = Int(2e7)
131131
seed = 100
132132
Random.seed!(seed)
133133
seeds = rand(UInt, numtraj)
@@ -207,7 +207,7 @@ ensemble_prob = EnsembleProblem(prob;
207207
prob_func = prob_func
208208
)
209209

210-
numtraj = Int(1e5)
210+
numtraj = Int(5e5)
211211
seed = 100
212212
Random.seed!(seed)
213213
seeds = rand(UInt, numtraj)
@@ -220,6 +220,10 @@ sim = test_convergence(dts,ensemble_prob,RS1(),
220220
@test abs(sim.𝒪est[:weak_final]-2) < 0.34 # order is 1.67
221221
println("RS1:", sim.𝒪est[:weak_final])
222222

223+
numtraj = Int(1e5)
224+
Random.seed!(seed)
225+
seeds = rand(UInt, numtraj)
226+
223227
sim = test_convergence(dts,ensemble_prob,RS2(),
224228
save_everystep=false,trajectories=numtraj,save_start=false,adaptive=false,
225229
weak_timeseries_errors=false,weak_dense_errors=false,

0 commit comments

Comments
 (0)