ggml : add n_as argument to ggml_mul_mat_id

This commit is contained in:
slaren 2023-12-09 12:42:25 +01:00
parent 7372b62271
commit ee8fb399aa
6 changed files with 17 additions and 14 deletions

1
ggml.h
View file

@ -1052,6 +1052,7 @@ extern "C" {
GGML_API struct ggml_tensor * ggml_mul_mat_id(
struct ggml_context * ctx,
struct ggml_tensor * as[],
int n_as,
struct ggml_tensor * ids,
int id,
struct ggml_tensor * b);