From a427f5e71c8e6479713b8e4c5705b208ed583037 Mon Sep 17 00:00:00 2001 From: Thomas Faingnaert Date: Fri, 3 Nov 2023 13:29:16 +0100 Subject: [PATCH] Adapt to CUDA.jl profile changes ref https://github.com/JuliaGPU/CUDA.jl/pull/2139 Probably should add methods to CUDA.jl to access the kernel times instead of grabbing them directly from the dataframe. --- 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