From a6aafdd719c7ce0dbcc9a182c6131125039d8ffb Mon Sep 17 00:00:00 2001 From: xaedes Date: Sat, 20 May 2023 14:47:56 +0200 Subject: [PATCH] add ggml_add1_inplace to header --- ggml.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ggml.h b/ggml.h index aa75fd726..62da0bd35 100644 --- a/ggml.h +++ b/ggml.h @@ -520,6 +520,11 @@ extern "C" { struct ggml_tensor * a, struct ggml_tensor * b); + GGML_API struct ggml_tensor * ggml_add1_inplace( + struct ggml_context * ctx, + struct ggml_tensor * a, + struct ggml_tensor * b); + GGML_API struct ggml_tensor * ggml_acc( struct ggml_context * ctx, struct ggml_tensor * a,