From 21a513312e7e5ac355239aac8b52c18204c78d9f Mon Sep 17 00:00:00 2001 From: Ryan Kierulf Date: Wed, 26 Jun 2024 21:28:04 -0500 Subject: [PATCH] Fix issue with artifact destination and adjust benchmark parameters --- .buildkite/runbenchmarks.yml | 2 +- bench/runbenchmarks.jl | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.buildkite/runbenchmarks.yml b/.buildkite/runbenchmarks.yml index fcc2f031d..67eca0cba 100644 --- a/.buildkite/runbenchmarks.yml +++ b/.buildkite/runbenchmarks.yml @@ -137,7 +137,7 @@ steps: - JuliaCI/julia#v1: version: "1" command: | - buildkite-agent artifact download "*.json" bench/results/ + buildkite-agent artifact download "bench/results/*" . julia --project=bench -e 'println("--- :julia: Combining Benchmarks") include("bench/aggregate.jl")' diff --git a/bench/runbenchmarks.jl b/bench/runbenchmarks.jl index 2f58f32a8..2e2528945 100644 --- a/bench/runbenchmarks.jl +++ b/bench/runbenchmarks.jl @@ -5,6 +5,8 @@ using Suppressor using BenchmarkTools const SUITE = BenchmarkGroup() +BenchmarkTools.DEFAULT_PARAMETERS.gcsample = true +BenchmarkTools.DEFAULT_PARAMETERS.seconds = 60 # To run benchmarks on a specific GPU backend, add AMDGPU / CUDA / Metal / oneAPI # to bench/Project.toml and change the variable below to the backend name