File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,12 @@ build.metal:
3030build.vulkan :
3131 CMAKE_ARGS=" -DLLAMA_VULKAN=on" python3 -m pip install --verbose -e .
3232
33+ build.kompute :
34+ CMAKE_ARGS=" -DLLAMA_KOMPUTE=on" python3 -m pip install --verbose -e .
35+
36+ build.sycl :
37+ CMAKE_ARGS=" -DLLAMA_SYCL=on" python3 -m pip install --verbose -e .
38+
3339build.sdist :
3440 python3 -m build --sdist
3541
Original file line number Diff line number Diff line change @@ -187,6 +187,7 @@ def _load_shared_library(lib_base_name: str):
187187# LLAMA_FTYPE_MOSTLY_IQ2_XS = 20, // except 1d tensors
188188# LLAMA_FTYPE_MOSTLY_Q2_K_S = 21, // except 1d tensors
189189# LLAMA_FTYPE_MOSTLY_Q3_K_XS = 22, // except 1d tensors
190+ # LLAMA_FTYPE_MOSTLY_IQ3_XXS = 23, // except 1d tensors
190191
191192# LLAMA_FTYPE_GUESSED = 1024, // not specified in the model file
192193# };
@@ -211,6 +212,7 @@ def _load_shared_library(lib_base_name: str):
211212LLAMA_FTYPE_MOSTLY_IQ2_XS = 20
212213LLAMA_FTYPE_MOSTLY_Q2_K_S = 21
213214LLAMA_FTYPE_MOSTLY_Q3_K_XS = 22
215+ LLAMA_FTYPE_MOSTLY_IQ3_XXS = 23
214216LLAMA_FTYPE_GUESSED = 1024
215217
216218# enum llama_rope_scaling_type {
You can’t perform that action at this time.
0 commit comments