From 61093a4159f90ec58b52d6445e413f0f2caf9604 Mon Sep 17 00:00:00 2001 From: chraac Date: Fri, 16 Jan 2026 23:02:08 +0800 Subject: [PATCH] wip --- ggml/src/ggml-opencl/ggml-opencl.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/ggml/src/ggml-opencl/ggml-opencl.cpp b/ggml/src/ggml-opencl/ggml-opencl.cpp index 61386c3918..0ccdb4c328 100644 --- a/ggml/src/ggml-opencl/ggml-opencl.cpp +++ b/ggml/src/ggml-opencl/ggml-opencl.cpp @@ -2695,16 +2695,6 @@ template <> struct cl_kernel_arg_setter { } }; -template <> struct cl_kernel_arg_setter>> { - typedef void func_t(cl_mem); - - static size_t set_arg(cl_kernel kernel, size_t index, cl_mem arg) { - CL_CHECK(clSetKernelArg(kernel, index, sizeof(arg), &arg)); - return index + 1; - } -}; - - template <> struct cl_kernel_arg_setter { typedef void func_t(cl_ulong);