From 5dfb8ab3866a54c949782c3a3a76e71d8165b462 Mon Sep 17 00:00:00 2001 From: Thomas Faingnaert Date: Tue, 7 Nov 2023 18:18:45 +0100 Subject: [PATCH] Adapt to CUDA.jl profile changes (#168) ref https://github.com/JuliaGPU/CUDA.jl/pull/2139 --- benchmarks/runbenchmarks.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/runbenchmarks.jl b/benchmarks/runbenchmarks.jl index f49a16d0..428f762a 100644 --- a/benchmarks/runbenchmarks.jl +++ b/benchmarks/runbenchmarks.jl @@ -115,7 +115,7 @@ for cf in get_configs() run_gemm(cf, a, b, c, d) # benchmark - profile_results = CUDA.@profiled begin + profile_results = CUDA.@profile begin for sample in 1:NUM_SAMPLES run_gemm(cf, a, b, c, d) end