Skip to content

Commit

Permalink
fix seq
Browse files Browse the repository at this point in the history
  • Loading branch information
Eddie-Wang1120 committed Jun 19, 2024
1 parent fcf2da4 commit fa9a742
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ggml.c
Original file line number Diff line number Diff line change
Expand Up @@ -620,8 +620,8 @@ static const ggml_type_traits_t type_traits[GGML_TYPE_COUNT] = {
.type_name = "q2_2",
.blck_size = QK2_2,
.type_size = sizeof(block_q2_2),
.to_float = (ggml_to_float_t) dequantize_row_q2_2,
.is_quantized = true,
.to_float = (ggml_to_float_t) dequantize_row_q2_2,
.from_float = quantize_row_q2_2,
.from_float_reference = (ggml_from_float_t) quantize_row_q2_2_reference,
.vec_dot = ggml_vec_dot_q2_2_q8_0,
Expand Down

0 comments on commit fa9a742

Please sign in to comment.