Skip to content

Commit

Permalink
Update GGML_ASSERT
Browse files Browse the repository at this point in the history
  • Loading branch information
abetlen committed Sep 29, 2024
1 parent 0875f76 commit dd34db2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ggml/src/ggml.c
Original file line number Diff line number Diff line change
Expand Up @@ -13994,7 +13994,7 @@ static void ggml_compute_forward_get_rows_f32(
const int64_t i10 = (i - i12*ne11*ne10 - i11*ne10);
const int64_t i01 = *(int32_t *) ((char *) src1->data + i10*nb10 + i11*nb11 + i12*nb12);

GGML_ASSERT(i01 >= 0 && i01 < ne01);
GGML_ASSERT(i01 >= 0 && i01 <= ne01);

ggml_vec_cpy_f32(nc,
(float *) ((char *) dst->data + i10*nb1 + i11*nb2 + i12*nb3),
Expand Down

0 comments on commit dd34db2

Please sign in to comment.