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 23ece06 commit 16a95d6Copy full SHA for 16a95d6
ggml/src/ggml-cpu/ggml-cpu.c
@@ -8620,9 +8620,7 @@ static void ggml_compute_forward_get_rows_f32(
8620
const int64_t i10 = (i - i12*ne11*ne10 - i11*ne10);
8621
const int64_t i01 = *(int32_t *) ((char *) src1->data + i10*nb10 + i11*nb11 + i12*nb12);
8622
8623
- // Copying this out for a bit while investigating due to issues like:
8624
- // https://github.com/ggerganov/llama.cpp/issues/10157
8625
- // GGML_ASSERT(i01 >= 0 && i01 < ne01);
+ GGML_ASSERT(i01 >= 0 && i01 < ne01);
8626
8627
ggml_vec_cpy_f32(nc,
8628
(float *) ((char *) dst->data + i10*nb1 + i11*nb2 + i12*nb3),
0 commit comments