ggml : fix bug in ggml_alibi

This commit is contained in:
Georgi Gerganov 2023-05-29 19:30:49 +03:00
parent 248367605e
commit 5d1830b99d
No known key found for this signature in database
GPG key ID: 449E073F9DC10735

2
ggml.c
View file

@ -6317,7 +6317,7 @@ struct ggml_tensor * ggml_alibi(
ggml_scratch_save(ctx);
struct ggml_tensor * b = ggml_new_tensor_1d(ctx, GGML_TYPE_I32, 2);
struct ggml_tensor * b = ggml_new_tensor_1d(ctx, GGML_TYPE_I32, 3);
((int32_t *) b->data)[0] = n_past;
((int32_t *) b->data)[1] = n_head;