From cb7642b0f508d02a1992a1cf3784ce17990c4343 Mon Sep 17 00:00:00 2001 From: kimminsu <80271594+kimminsu38oo@users.noreply.github.com> Date: Thu, 17 Apr 2025 06:25:57 +0900 Subject: [PATCH] opencl: fix incorrect local_size index in profiling log (llama/12868) --- ggml/src/ggml-opencl/ggml-opencl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml/src/ggml-opencl/ggml-opencl.cpp b/ggml/src/ggml-opencl/ggml-opencl.cpp index b8b5cbd3..f15b6dd8 100644 --- a/ggml/src/ggml-opencl/ggml-opencl.cpp +++ b/ggml/src/ggml-opencl/ggml-opencl.cpp @@ -1024,7 +1024,7 @@ static void ggml_cl2_free(void) { info.cmd_complete_duration_ns/1.e6f, info.cmd_total_duration_ns/1.e6f, info.global_size[0], info.global_size[1], info.global_size[2], - info.local_size[0], info.local_size[2], info.local_size[2], + info.local_size[0], info.local_size[1], info.local_size[2], info.output_size[0], info.output_size[1], info.output_size[2], info.output_size[3]); } fclose(fperf);