We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af19099 commit 3374ff7Copy full SHA for 3374ff7
ggml.c
@@ -12889,7 +12889,6 @@ static void ggml_compute_forward_alibi_f32(
12889
return;
12890
}
12891
12892
- const int n_past = ((int32_t *) dst->op_params)[0];
12893
const int n_head = ((int32_t *) dst->op_params)[1];
12894
float max_bias;
12895
memcpy(&max_bias, (int32_t *) dst->op_params + 2, sizeof(float));
@@ -12910,7 +12909,6 @@ static void ggml_compute_forward_alibi_f32(
12910
12909
//const int nb3 = src0->nb[3];
12911
12912
GGML_ASSERT(nb0 == sizeof(float));
12913
- GGML_ASSERT(ne1 + n_past == ne0);
12914
GGML_ASSERT(n_head == ne2);
12915
12916
// add alibi to src0 (KQ_scaled)
0 commit comments