We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9ac1862 + 6efeb3b commit de37851Copy full SHA for de37851
.buildkite/pipeline.yml
@@ -38,6 +38,7 @@ steps:
38
env:
39
BUILDKITE_PLUGIN_JULIA_VERSION: "{{matrix.version}}"
40
GROUP: "{{matrix.group}}"
41
+ JULIA_NUM_THREADS: 2
42
plugins:
43
- JuliaCI/julia#v1
44
- staticfloat/metahook:
@@ -49,7 +50,6 @@ steps:
49
50
'
51
- JuliaCI/julia-test#v1:
52
coverage: false
- julia_args: "--threads=auto"
53
agents:
54
os: "linux"
55
queue: "juliaecosystem"
test/multithreading/ode_extrapolation_tests.jl
@@ -1,6 +1,8 @@
1
# Import packages
2
using OrdinaryDiffEqExtrapolation, DiffEqDevTools, Test, Random
3
4
+println("Running on $(Threads.nthreads()) thread(s).")
5
+
6
# Define test problems
7
# Note that the time span in ODEProblemLibrary is given by
8
# Float64 numbers
0 commit comments