diff --git a/benchmark/bench_qr.jl b/benchmark/bench_qr.jl index 576e9818..9475f78d 100644 --- a/benchmark/bench_qr.jl +++ b/benchmark/bench_qr.jl @@ -4,7 +4,7 @@ using BenchmarkTools using LinearAlgebra using StaticArrays -suite = BenchmarkGroup() +const suite = BenchmarkGroup() for K = 1:22 a = rand(SMatrix{K,K,Float64,K*K}) diff --git a/benchmark/benchmarks.jl b/benchmark/benchmarks.jl index 7f087e86..e3b408d7 100644 --- a/benchmark/benchmarks.jl +++ b/benchmark/benchmarks.jl @@ -3,7 +3,7 @@ # to the top-level group `SUITE` with the `$name` extracted from the file name. using BenchmarkTools -SUITE = BenchmarkGroup() +const SUITE = BenchmarkGroup() for file in sort(readdir(@__DIR__)) if startswith(file, "bench_") && endswith(file, ".jl") SUITE[chop(file, head = length("bench_"), tail = length(".jl"))] =