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:
30
30
build.vulkan :
31
31
CMAKE_ARGS=" -DLLAMA_VULKAN=on" python3 -m pip install --verbose -e .
32
32
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
+
33
39
build.sdist :
34
40
python3 -m build --sdist
35
41
Original file line number Diff line number Diff line change @@ -187,6 +187,7 @@ def _load_shared_library(lib_base_name: str):
187
187
# LLAMA_FTYPE_MOSTLY_IQ2_XS = 20, // except 1d tensors
188
188
# LLAMA_FTYPE_MOSTLY_Q2_K_S = 21, // except 1d tensors
189
189
# LLAMA_FTYPE_MOSTLY_Q3_K_XS = 22, // except 1d tensors
190
+ # LLAMA_FTYPE_MOSTLY_IQ3_XXS = 23, // except 1d tensors
190
191
191
192
# LLAMA_FTYPE_GUESSED = 1024, // not specified in the model file
192
193
# };
@@ -211,6 +212,7 @@ def _load_shared_library(lib_base_name: str):
211
212
LLAMA_FTYPE_MOSTLY_IQ2_XS = 20
212
213
LLAMA_FTYPE_MOSTLY_Q2_K_S = 21
213
214
LLAMA_FTYPE_MOSTLY_Q3_K_XS = 22
215
+ LLAMA_FTYPE_MOSTLY_IQ3_XXS = 23
214
216
LLAMA_FTYPE_GUESSED = 1024
215
217
216
218
# enum llama_rope_scaling_type {
You can’t perform that action at this time.
0 commit comments