From 7579820a18c3fc9b25fc7b1499b4ef364904b8a3 Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Fri, 4 Oct 2024 14:41:50 -0300 Subject: [PATCH] Silence warning --- perf/array.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perf/array.jl b/perf/array.jl index 857a0597..954014cc 100644 --- a/perf/array.jl +++ b/perf/array.jl @@ -2,7 +2,7 @@ const m = 512 const n = 1000 for (S, smname) in [(Metal.PrivateStorage,"private"), (Metal.SharedStorage,"shared")] - group = addgroup!(SUITE, "$smname array") + local group = addgroup!(SUITE, "$smname array") # generate some arrays cpu_mat = rand(rng, Float32, m, n)