File tree Expand file tree Collapse file tree 2 files changed +22
-13
lines changed Expand file tree Collapse file tree 2 files changed +22
-13
lines changed Original file line number Diff line number Diff line change @@ -109,20 +109,20 @@ if (LLAMA_BUILD)
109109
110110 llama_cpp_python_install_target(ggml-base)
111111
112- llama_cpp_python_install_target(ggml-amx)
113112 llama_cpp_python_install_target(ggml-blas)
114113 llama_cpp_python_install_target(ggml-cann)
115114 llama_cpp_python_install_target(ggml-cpu)
116115 llama_cpp_python_install_target(ggml-cuda)
116+ llama_cpp_python_install_target(ggml-hexagon)
117117 llama_cpp_python_install_target(ggml-hip)
118- llama_cpp_python_install_target(ggml-kompute)
119118 llama_cpp_python_install_target(ggml-metal)
120119 llama_cpp_python_install_target(ggml-musa)
121120 llama_cpp_python_install_target(ggml-opencl)
122121 llama_cpp_python_install_target(ggml-rpc)
123122 llama_cpp_python_install_target(ggml-sycl)
124123 llama_cpp_python_install_target(ggml-vulkan)
125124 llama_cpp_python_install_target(ggml-webgpu)
125+ llama_cpp_python_install_target(ggml-zdnn)
126126
127127 # Workaround for Windows + CUDA https://github.com/abetlen/llama-cpp-python/issues/563
128128 if (WIN32 )
Original file line number Diff line number Diff line change @@ -30,29 +30,38 @@ build.debug.extra:
3030 --config-settings=cmake.args=" -DCMAKE_BUILD_TYPE=Debug;-DCMAKE_C_FLAGS='-fsanitize=address -ggdb -O0';-DCMAKE_CXX_FLAGS='-fsanitize=address -ggdb -O0'" \
3131 --editable .
3232
33+ build.blis :
34+ CMAKE_ARGS=" -DGGML_BLAS=on -DGGML_BLAS_VENDOR=FLAME" python3 -m pip install --verbose -e .
35+
36+ build.cann :
37+ CMAKE_ARGS=" -DGGML_CANN=on -DCMAKE_BUILD_TYPE=release" python3 -m pip install --verbose -e .
38+
3339build.cuda :
3440 CMAKE_ARGS=" -DGGML_CUDA=on" python3 -m pip install --verbose -e .
3541
42+ build.metal :
43+ CMAKE_ARGS=" -DGGML_METAL=on" python3 -m pip install --verbose -e .
44+
45+ build.musa :
46+ CMAKE_ARGS=" -DGGML_MUSA=ON" python3 -m pip install --verbose -e .
47+
3648build.openblas :
3749 CMAKE_ARGS=" -DGGML_BLAS=ON -DGGML_BLAS_VENDOR=OpenBLAS" python3 -m pip install --verbose -e .
3850
39- build.blis :
40- CMAKE_ARGS=" -DGGML_BLAS =on -DGGML_BLAS_VENDOR=FLAME " python3 -m pip install --verbose -e .
51+ build.rpc :
52+ CMAKE_ARGS=" -DGGML_RPC =on" python3 -m pip install --verbose -e .
4153
42- build.metal :
43- CMAKE_ARGS=" -DGGML_METAL =on" python3 -m pip install --verbose -e .
54+ build.sycl :
55+ CMAKE_ARGS=" -DGGML_SYCL =on" python3 -m pip install --verbose -e .
4456
4557build.vulkan :
4658 CMAKE_ARGS=" -DGGML_VULKAN=on" python3 -m pip install --verbose -e .
4759
48- build.kompute :
49- CMAKE_ARGS=" -DGGML_KOMPUTE=on " python3 -m pip install --verbose -e .
60+ build.webgpu :
61+ CMAKE_ARGS=" -DGGML_WEBGPU=ON " python3 -m pip install --verbose -e .
5062
51- build.sycl :
52- CMAKE_ARGS=" -DGGML_SYCL=on" python3 -m pip install --verbose -e .
53-
54- build.rpc :
55- CMAKE_ARGS=" -DGGML_RPC=on" python3 -m pip install --verbose -e .
63+ build.zdnn :
64+ CMAKE_ARGS=" -DGGML_ZDNN=ON" python3 -m pip install --verbose -e .
5665
5766build.sdist :
5867 python3 -m build --sdist --verbose
You can’t perform that action at this time.
0 commit comments