From 15876dffc76317db86db7a77a2e4d25cfb96192f Mon Sep 17 00:00:00 2001 From: JordanHanotiaux <103147288+JordanHanotiaux@users.noreply.github.com> Date: Mon, 19 May 2025 09:47:49 +0200 Subject: [PATCH] Update matrix_opencl.cpp --- matrix_opencl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix_opencl.cpp b/matrix_opencl.cpp index e9e95da..f5551b6 100644 --- a/matrix_opencl.cpp +++ b/matrix_opencl.cpp @@ -86,7 +86,7 @@ const std::string kernel_source_transpose = R"( } )";*/ const std::string kernel_source_matrix_mul = R"( - __kernel void fast_matrix_mul(__global const float* A, __global const float* B, __global float* C, int A_rows, int A_cols, int B_cols) { + __kernel void matrix_mul(__global const float* A, __global const float* B, __global float* C, int A_rows, int A_cols, int B_cols) { int row = get_global_id(0); int col = get_global_id(1); -- GitLab