From: Andrei Date: Wed, 17 May 2023 06:27:11 +0000 (-0400) Subject: ggml : fix typo in ggml_diag_mask_zero_inplace() (#159) X-Git-Tag: upstream/0.0.1642~1467 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=48e9ac3e25cb7e41a8c79906f61cc4c52d40bd50;p=pkg%2Fggml%2Fsources%2Fggml ggml : fix typo in ggml_diag_mask_zero_inplace() (#159) --- diff --git a/include/ggml/ggml.h b/include/ggml/ggml.h index 255541d0..2749b9af 100644 --- a/include/ggml/ggml.h +++ b/include/ggml/ggml.h @@ -849,7 +849,7 @@ extern "C" { int n_past); // in-place, returns view(a) - GGML_API struct ggml_tensor * gml_diag_mask_zero_inplace( + GGML_API struct ggml_tensor * ggml_diag_mask_zero_inplace( struct ggml_context * ctx, struct ggml_tensor * a, int n_past);