Skip to content

Commit 448e4a9

Browse files
committed
Update x to start from 0
1 parent 407910f commit 448e4a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml/src/ggml-aarch64.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2510,7 +2510,7 @@ void ggml_gemm_q4_0_8x8_q8_0(int n, float * restrict s, size_t bs, const void *
25102510
}
25112511

25122512
// Take group of two block_q4_0x8 structures at each pass of the loop and perform dot product operation
2513-
for (int64_t x = xstart; x < anc / 8; x += 2) {
2513+
for (int64_t x = 0; x < anc / 8; x += 2) {
25142514

25152515
const block_q4_0x8 * b_ptr_0 = b_ptr_start + ((x) * b_nb);
25162516
const block_q4_0x8 * b_ptr_1 = b_ptr_start + ((x + 1) * b_nb);

0 commit comments

Comments
 (0)