Skip to content

Commit

Permalink
fix QK_K == 64
Browse files Browse the repository at this point in the history
ggml-ci
  • Loading branch information
slaren committed Apr 26, 2024
1 parent 41de83d commit 8ddd022
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ggml-quants.c
Original file line number Diff line number Diff line change
Expand Up @@ -12613,7 +12613,7 @@ bool ggml_validate_row_data(enum ggml_type type, const void * data, size_t nbyte
const block_iq1_m * q = (const block_iq1_m *) data;
for (size_t i = 0; i < nb; ++i) {
#if QK_K == 64
if (!validate_f16(q[i].d, i)) {
if (!validate_fp16(q[i].d, i)) {
return false;
}
#else
Expand Down

0 comments on commit 8ddd022

Please sign in to comment.