Skip to content

Commit 2268ce0

Browse files
committed
fix build error
1 parent 76d8975 commit 2268ce0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ggml/src/ggml-cpu.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7468,8 +7468,8 @@ static void ggml_compute_forward_mul_mat(
74687468
for (int64_t i13 = 0; i13 < ne13; i13++)
74697469
for (int64_t i12 = 0; i12 < ne12; i12++)
74707470
if (!llamafile_sgemm(ne01, ne11, ne00/ggml_blck_size(type),
7471-
(const char *)data + i12/r2*nb02 + i13/r3*nb03,
7472-
nb01/ggml_type_size(src0->type),
7471+
(const char *)src0->data + i12/r2*nb02 + i13/r3*nb03,
7472+
nb01/ggml_type_size(type),
74737473
(const char *)src1->data + i12*nb12 + i13*nb13,
74747474
nb11/ggml_type_size(src1->type),
74757475
(char *)dst->data + i12*nb2 + i13*nb3,

0 commit comments

Comments
 (0)