From: Ori Pekelman Date: Thu, 21 May 2026 12:00:16 +0000 (+0000) Subject: ggml.h: correct ggml_silu_back arg docstring (a=dy, b=x) (ggml/1500) X-Git-Tag: upstream/0.0.10438~1116 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=b251f74f496950e88abc70db40530f85ed83f53f;p=pkg%2Fggml%2Fsources%2Fllama.cpp ggml.h: correct ggml_silu_back arg docstring (a=dy, b=x) (ggml/1500) --- diff --git a/ggml/include/ggml.h b/ggml/include/ggml.h index 41566d41a..f67252655 100644 --- a/ggml/include/ggml.h +++ b/ggml/include/ggml.h @@ -1189,8 +1189,8 @@ extern "C" { struct ggml_context * ctx, struct ggml_tensor * a); - // a - x - // b - dy + // a - dy + // b - x GGML_API struct ggml_tensor * ggml_silu_back( struct ggml_context * ctx, struct ggml_tensor * a,