Skip to content

Commit 930d672

Browse files
Merge pull request #1024 from SciML/ChrisRackauckas-patch-1
Allow some more matrices
2 parents bcbf126 + c0f271e commit 930d672

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.buildkite/run_benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ steps:
4444
- pdf/**/*.pdf
4545
- script/**/*.jl
4646
s3_prefix: s3://julialang-buildkite-artifacts/scimlbenchmarks
47-
timeout_in_minutes: 4000
47+
timeout_in_minutes: 12000
4848
commands: |
4949
# Clear out these secrets as they're not needed during the actual build
5050
BUILDKITE_S3_ACCESS_KEY_ID="" BUILDKITE_S3_SECRET_ACCESS_KEY="" ./.buildkite/build_benchmark.sh "{PATH}"

benchmarks/LinearSolve/MatrixDepot.jmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ for z in 1:length(allmatrices_md.content[1].rows)
5151
percentage_sparsity[z] = length(nonzeros(A)) / n^2
5252
@info "$n × $n"
5353

54-
n > 100 && error("Skipping too large matrices")
54+
n > 500 && error("Skipping too large matrices")
5555

5656
b = rand(rng, n)
5757
u0 = rand(rng, n)

0 commit comments

Comments
 (0)