From 109148ac8478bc30fe437b4ef7f4b50adc6cac23 Mon Sep 17 00:00:00 2001 From: zhouwg Date: Wed, 29 May 2024 10:09:31 +0800 Subject: [PATCH] ggml : fix typo in ggml.c (llama/7603) --- ggml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml.c b/ggml.c index 3ef9842..5025ec2 100644 --- a/ggml.c +++ b/ggml.c @@ -11022,7 +11022,7 @@ static void ggml_compute_forward_concat_f32( static void ggml_compute_forward_concat( const struct ggml_compute_params * params, - struct ggml_tensor* dst) { + struct ggml_tensor * dst) { const struct ggml_tensor * src0 = dst->src[0];