Update llama.h LLAMA_FTYPE_CUSTOM=33

This commit is contained in:
Brian 2024-05-09 23:25:54 +10:00 committed by GitHub
parent 8172129073
commit 20b22433f0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -140,7 +140,7 @@ extern "C" {
LLAMA_FTYPE_MOSTLY_IQ4_XS = 30, // except 1d tensors
LLAMA_FTYPE_MOSTLY_IQ1_M = 31, // except 1d tensors
LLAMA_FTYPE_MOSTLY_BF16 = 32, // except 1d tensors
LLAMA_FTYPE_CUSTOM = 32, // except 1d tensors
LLAMA_FTYPE_CUSTOM = 33, // except 1d tensors
LLAMA_FTYPE_GUESSED = 1024, // not specified in the model file
};