Skip to content

Commit 1135d0c

Browse files
NoahOksuzggerganov
andauthored
Update ggml/src/ggml-cpu/repack.cpp
Co-authored-by: Georgi Gerganov <[email protected]>
1 parent fe79c34 commit 1135d0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml/src/ggml-cpu/repack.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1709,7 +1709,7 @@ template <typename BLOC_TYPE, int64_t INTER_SIZE, int64_t NB_COLS, ggml_type PAR
17091709
while (current_chunk < nchunk) {
17101710
int64_t src0_start = (current_chunk * ne01) / nchunk;
17111711
int64_t src0_end = ((current_chunk + 1) * ne01) / nchunk;
1712-
1712+
17131713
// Align boundaries to NB_COLS - round up to ensure all data is included
17141714
// The chunk size limiting above ensures chunks are large enough to prevent overlaps
17151715
src0_start = (src0_start % NB_COLS) ? src0_start + NB_COLS - (src0_start % NB_COLS) : src0_start;

0 commit comments

Comments
 (0)