diff options
author | Iwan Kawrakow <iwan.kawrakow@gmail.com> | 2024-06-16 15:56:32 +0300 |
---|---|---|
committer | Iwan Kawrakow <iwan.kawrakow@gmail.com> | 2024-06-22 12:02:51 +0300 |
commit | 0f53bc30bbd4949be80562448419b4bbccd9490a (patch) | |
tree | caadf89e3776d78b02f7d560e6d961305c4f14df /ggml.h | |
parent | f20b28558bdd20454ce891d36db5f37de819025a (diff) |
bitnet: CUDA, scalar, AVX2
Diffstat (limited to 'ggml.h')
-rw-r--r-- | ggml.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -383,6 +383,8 @@ extern "C" { GGML_TYPE_F64 = 28, GGML_TYPE_IQ1_M = 29, GGML_TYPE_BF16 = 30, + GGML_TYPE_IQ1_BN = 31, + GGML_TYPE_Q8_K64 = 32, GGML_TYPE_COUNT, }; @@ -424,6 +426,7 @@ extern "C" { GGML_FTYPE_MOSTLY_IQ4_XS = 22, // except 1d tensors GGML_FTYPE_MOSTLY_IQ1_M = 23, // except 1d tensors GGML_FTYPE_MOSTLY_BF16 = 24, // except 1d tensors + GGML_FTYPE_MOSTLY_IQ1_BN = 25, // except 1d tensors }; // available tensor operations: |