From fa6561ceed33fb924395227c269cdc86548bd330 Mon Sep 17 00:00:00 2001 From: Ryan Kierulf Date: Fri, 28 Jun 2024 15:38:18 -0500 Subject: [PATCH] Fix issue loading CPU results in aggregate.jl --- bench/aggregate.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench/aggregate.jl b/bench/aggregate.jl index 4758266a4..00125b4e9 100644 --- a/bench/aggregate.jl +++ b/bench/aggregate.jl @@ -6,7 +6,7 @@ const NUM_CPU_THREADS = [1, 2, 4, 8, 16] #Start with CPU benchmarks for 1 thread and add other results const CPU_results_1thread_filepath = joinpath(dirname(@__FILE__), "results", "CPUbenchmarks1threads.json") @assert(ispath(CPU_results_1thread_filepath)) -const RESULTS = BenchmarkTools.load(CPU_results_1thread_filepath) +const RESULTS = BenchmarkTools.load(CPU_results_1thread_filepath)[1] @assert RESULTS isa BenchmarkTools.BenchmarkGroup for n in NUM_CPU_THREADS