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 5f69fdb commit ab522d7Copy full SHA for ab522d7
ggml/src/ggml-cpu/ggml-cpu.c
@@ -8703,9 +8703,7 @@ static void ggml_compute_forward_get_rows_f32(
8703
const int64_t i10 = (i - i12*ne11*ne10 - i11*ne10);
8704
const int64_t i01 = *(int32_t *) ((char *) src1->data + i10*nb10 + i11*nb11 + i12*nb12);
8705
8706
- // Copying this out for a bit while investigating due to issues like:
8707
- // https://github.com/ggerganov/llama.cpp/issues/10157
8708
- // GGML_ASSERT(i01 >= 0 && i01 < ne01);
+ GGML_ASSERT(i01 >= 0 && i01 < ne01);
8709
8710
ggml_vec_cpy_f32(nc,
8711
(float *) ((char *) dst->data + i10*nb1 + i11*nb2 + i12*nb3),
0 commit comments