From b569706eae4157d9d43b6ff043c4d4939464b1a1 Mon Sep 17 00:00:00 2001 From: Kawrakow Date: Mon, 6 Jul 2026 11:44:27 +0000 Subject: [PATCH] Fix compiler warning --- ggml/src/ggml-cuda/argsort.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml/src/ggml-cuda/argsort.cu b/ggml/src/ggml-cuda/argsort.cu index 0aaf5861d..2ef26b9a5 100644 --- a/ggml/src/ggml-cuda/argsort.cu +++ b/ggml/src/ggml-cuda/argsort.cu @@ -466,7 +466,7 @@ static __global__ void init_indices(int * indices, const int ncols, const int nr } } -void argsort_f32_i32_cuda_cub(ggml_cuda_pool & pool, +static void argsort_f32_i32_cuda_cub(ggml_cuda_pool & pool, const float * x, int * dst, const int ncols,