summaryrefslogtreecommitdiff
path: root/ggml/src/ggml-common.h
diff options
context:
space:
mode:
authorKawrakow <iwankawrakow@gmail.com>2024-12-08 09:34:42 +0100
committerGitHub <noreply@github.com>2024-12-08 09:34:42 +0100
commitfc701cedd146152fb270482a7eef5aba23b20575 (patch)
tree2628241f10a4fd3e501d17f13059df0039dd344a /ggml/src/ggml-common.h
parentef95b81733599429fdd63e4c2fb32c74645046be (diff)
Rename iq4_nl_x4 to iq4_nl_r4 (#126)
Co-authored-by: Iwan Kawrakow <iwan.kawrakow@gmail.com>
Diffstat (limited to 'ggml/src/ggml-common.h')
-rw-r--r--ggml/src/ggml-common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ggml/src/ggml-common.h b/ggml/src/ggml-common.h
index aa41bf55..3f701873 100644
--- a/ggml/src/ggml-common.h
+++ b/ggml/src/ggml-common.h
@@ -436,8 +436,8 @@ static_assert(sizeof(block_iq4_nl) == sizeof(ggml_half) + QK4_NL/2, "wrong iq4_n
typedef struct {
ggml_half d[4];
uint8_t qs[2*QK4_NL];
-} block_iq4_nl_x4;
-static_assert(sizeof(block_iq4_nl_x4) == 4*sizeof(ggml_half) + 2*QK4_NL, "wrong iq4_nl_x4 block size/padding");
+} block_iq4_nl_r4;
+static_assert(sizeof(block_iq4_nl_r4) == 4*sizeof(ggml_half) + 2*QK4_NL, "wrong iq4_nl_x4 block size/padding");
typedef struct {
ggml_half d;