Skip to content

Commit 7315fc0

Browse files
authored
change initialization to true
1 parent f50c60d commit 7315fc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml/src/ggml-quants.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3721,7 +3721,7 @@ static void quantize_row_iq3_xxs_impl(int grid_size, const float * GGML_RESTRICT
37213721
}
37223722
float best = 0;
37233723
float scale = max/(2*kMaxQ-1);
3724-
for (int k = 0; k < 8; ++k) is_on_grid[k] = false;
3724+
for (int k = 0; k < 8; ++k) is_on_grid[k] = true;
37253725
for (int is = -15; is <= 15; ++is) {
37263726
float id = (2*kMaxQ-1+is*0.2f)/max;
37273727
float this_scale = 1/id;

0 commit comments

Comments
 (0)