ggml-python 0.0.36__tar.gz → 0.0.38__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ggml_python-0.0.38/.github/workflows/lint.yaml +29 -0
- ggml_python-0.0.38/.github/workflows/test.yaml +158 -0
- ggml_python-0.0.38/.github/workflows/wheels-cuda.yaml +234 -0
- ggml_python-0.0.38/.github/workflows/wheels-index.yaml +54 -0
- ggml_python-0.0.38/.github/workflows/wheels-metal.yaml +63 -0
- ggml_python-0.0.38/.github/workflows/wheels.yaml +100 -0
- ggml_python-0.0.38/.gitmodules +3 -0
- ggml_python-0.0.38/CHANGELOG.md +13 -0
- ggml_python-0.0.38/CMakeLists.txt +75 -0
- ggml_python-0.0.38/Makefile +83 -0
- ggml_python-0.0.38/PKG-INFO +183 -0
- ggml_python-0.0.38/README.md +142 -0
- ggml_python-0.0.38/docs/changelog.md +1 -0
- ggml_python-0.0.38/docs/index.md +168 -0
- ggml_python-0.0.38/examples/clip/requirements.txt +24 -0
- ggml_python-0.0.38/examples/optimizer/simple.py +91 -0
- ggml_python-0.0.38/examples/replit/main.py +1088 -0
- ggml_python-0.0.38/examples/rpc/main.py +78 -0
- ggml_python-0.0.38/examples/rpc/worker.py +39 -0
- ggml_python-0.0.38/ggml/__init__.py +3 -0
- ggml_python-0.0.38/ggml/ggml.py +12170 -0
- ggml_python-0.0.38/ggml/utils.py +340 -0
- ggml_python-0.0.38/mkdocs.yml +68 -0
- ggml_python-0.0.38/pyproject.toml +70 -0
- ggml_python-0.0.38/tests/test_ggml.py +286 -0
- ggml_python-0.0.38/tests/test_ggml_cuda.py +118 -0
- ggml_python-0.0.38/tests/test_ggml_metal.py +122 -0
- ggml_python-0.0.38/tests/test_utils.py +138 -0
- ggml_python-0.0.38/vendor/ggml/.github/pull_request_template.md +1 -0
- ggml_python-0.0.38/vendor/ggml/.github/workflows/ci.yml +272 -0
- ggml_python-0.0.38/vendor/ggml/.github/workflows/release.yml +27 -0
- ggml_python-0.0.38/vendor/ggml/.gitignore +39 -0
- ggml_python-0.0.38/vendor/ggml/.gitmodules +0 -0
- ggml_python-0.0.38/vendor/ggml/AUTHORS +335 -0
- ggml_python-0.0.38/vendor/ggml/CMakeLists.txt +505 -0
- ggml_python-0.0.38/vendor/ggml/CONTRIBUTING.md +3 -0
- ggml_python-0.0.38/vendor/ggml/LICENSE +21 -0
- ggml_python-0.0.38/vendor/ggml/README.md +50 -0
- ggml_python-0.0.38/vendor/ggml/ci/run.sh +395 -0
- ggml_python-0.0.38/vendor/ggml/cmake/FindNCCL.cmake +36 -0
- ggml_python-0.0.38/vendor/ggml/cmake/common.cmake +50 -0
- ggml_python-0.0.38/vendor/ggml/cmake/ggml-config.cmake.in +201 -0
- ggml_python-0.0.38/vendor/ggml/docs/gguf.md +828 -0
- ggml_python-0.0.38/vendor/ggml/examples/CMakeLists.txt +34 -0
- ggml_python-0.0.38/vendor/ggml/examples/common-ggml.cpp +244 -0
- ggml_python-0.0.38/vendor/ggml/examples/common.cpp +675 -0
- ggml_python-0.0.38/vendor/ggml/examples/common.h +322 -0
- ggml_python-0.0.38/vendor/ggml/examples/gpt-2/CMakeLists.txt +32 -0
- ggml_python-0.0.38/vendor/ggml/examples/gpt-2/README.md +225 -0
- ggml_python-0.0.38/vendor/ggml/examples/gpt-2/main-alloc.cpp +880 -0
- ggml_python-0.0.38/vendor/ggml/examples/gpt-2/main-backend.cpp +946 -0
- ggml_python-0.0.38/vendor/ggml/examples/gpt-2/main-batched.cpp +1210 -0
- ggml_python-0.0.38/vendor/ggml/examples/gpt-2/main-ctx.cpp +840 -0
- ggml_python-0.0.38/vendor/ggml/examples/gpt-2/main-sched.cpp +1079 -0
- ggml_python-0.0.38/vendor/ggml/examples/gpt-2/quantize.cpp +184 -0
- ggml_python-0.0.38/vendor/ggml/examples/gpt-j/README.md +239 -0
- ggml_python-0.0.38/vendor/ggml/examples/gpt-j/main.cpp +755 -0
- ggml_python-0.0.38/vendor/ggml/examples/gpt-j/quantize.cpp +182 -0
- ggml_python-0.0.38/vendor/ggml/examples/magika/CMakeLists.txt +17 -0
- ggml_python-0.0.38/vendor/ggml/examples/magika/README.md +23 -0
- ggml_python-0.0.38/vendor/ggml/examples/magika/main.cpp +374 -0
- ggml_python-0.0.38/vendor/ggml/examples/mnist/.gitignore +3 -0
- ggml_python-0.0.38/vendor/ggml/examples/mnist/CMakeLists.txt +58 -0
- ggml_python-0.0.38/vendor/ggml/examples/mnist/README.md +206 -0
- ggml_python-0.0.38/vendor/ggml/examples/mnist/mnist-common.cpp +496 -0
- ggml_python-0.0.38/vendor/ggml/examples/mnist/mnist-common.h +166 -0
- ggml_python-0.0.38/vendor/ggml/examples/mnist/mnist-eval.cpp +67 -0
- ggml_python-0.0.38/vendor/ggml/examples/mnist/mnist-train-cnn.py +91 -0
- ggml_python-0.0.38/vendor/ggml/examples/mnist/mnist-train-fc.py +131 -0
- ggml_python-0.0.38/vendor/ggml/examples/mnist/mnist-train.cpp +39 -0
- ggml_python-0.0.38/vendor/ggml/examples/mnist/server.py +36 -0
- ggml_python-0.0.38/vendor/ggml/examples/perf-metal/CMakeLists.txt +7 -0
- ggml_python-0.0.38/vendor/ggml/examples/perf-metal/perf-metal.cpp +152 -0
- ggml_python-0.0.38/vendor/ggml/examples/python/README.md +115 -0
- ggml_python-0.0.38/vendor/ggml/examples/python/ggml/__init__.pyi +2406 -0
- ggml_python-0.0.38/vendor/ggml/examples/sam/CMakeLists.txt +13 -0
- ggml_python-0.0.38/vendor/ggml/examples/sam/README.md +95 -0
- ggml_python-0.0.38/vendor/ggml/examples/sam/sam.cpp +2370 -0
- ggml_python-0.0.38/vendor/ggml/examples/simple/simple-backend.cpp +153 -0
- ggml_python-0.0.38/vendor/ggml/examples/simple/simple-ctx.cpp +127 -0
- ggml_python-0.0.38/vendor/ggml/examples/test-cmake/CMakeLists.txt +10 -0
- ggml_python-0.0.38/vendor/ggml/examples/test-cmake/README.md +3 -0
- ggml_python-0.0.38/vendor/ggml/examples/test-cmake/test-cmake.cpp +6 -0
- ggml_python-0.0.38/vendor/ggml/examples/yolo/README.md +59 -0
- ggml_python-0.0.38/vendor/ggml/examples/yolo/yolov3-tiny.cpp +661 -0
- ggml_python-0.0.38/vendor/ggml/ggml.pc.in +10 -0
- ggml_python-0.0.38/vendor/ggml/include/ggml-alloc.h +86 -0
- ggml_python-0.0.38/vendor/ggml/include/ggml-backend.h +431 -0
- ggml_python-0.0.38/vendor/ggml/include/ggml-blas.h +25 -0
- ggml_python-0.0.38/vendor/ggml/include/ggml-cann.h +123 -0
- ggml_python-0.0.38/vendor/ggml/include/ggml-cpp.h +39 -0
- ggml_python-0.0.38/vendor/ggml/include/ggml-cpu.h +151 -0
- ggml_python-0.0.38/vendor/ggml/include/ggml-cuda.h +50 -0
- ggml_python-0.0.38/vendor/ggml/include/ggml-hexagon.h +19 -0
- ggml_python-0.0.38/vendor/ggml/include/ggml-metal.h +61 -0
- ggml_python-0.0.38/vendor/ggml/include/ggml-opencl.h +26 -0
- ggml_python-0.0.38/vendor/ggml/include/ggml-openvino.h +37 -0
- ggml_python-0.0.38/vendor/ggml/include/ggml-opt.h +256 -0
- ggml_python-0.0.38/vendor/ggml/include/ggml-rpc.h +35 -0
- ggml_python-0.0.38/vendor/ggml/include/ggml-sycl.h +49 -0
- ggml_python-0.0.38/vendor/ggml/include/ggml-virtgpu.h +14 -0
- ggml_python-0.0.38/vendor/ggml/include/ggml-vulkan.h +29 -0
- ggml_python-0.0.38/vendor/ggml/include/ggml-webgpu.h +19 -0
- ggml_python-0.0.38/vendor/ggml/include/ggml-zdnn.h +17 -0
- ggml_python-0.0.38/vendor/ggml/include/ggml-zendnn.h +22 -0
- ggml_python-0.0.38/vendor/ggml/include/ggml.h +2845 -0
- ggml_python-0.0.38/vendor/ggml/include/gguf.h +210 -0
- ggml_python-0.0.38/vendor/ggml/requirements.txt +12 -0
- ggml_python-0.0.38/vendor/ggml/scripts/gen-authors.sh +9 -0
- ggml_python-0.0.38/vendor/ggml/scripts/release.sh +296 -0
- ggml_python-0.0.38/vendor/ggml/scripts/sync-llama-am.sh +167 -0
- ggml_python-0.0.38/vendor/ggml/scripts/sync-llama.last +1 -0
- ggml_python-0.0.38/vendor/ggml/scripts/sync-llama.sh +21 -0
- ggml_python-0.0.38/vendor/ggml/scripts/sync-whisper-am.sh +138 -0
- ggml_python-0.0.38/vendor/ggml/scripts/sync-whisper.last +1 -0
- ggml_python-0.0.38/vendor/ggml/scripts/sync-whisper.sh +17 -0
- ggml_python-0.0.38/vendor/ggml/src/CMakeLists.txt +510 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-alloc.c +1248 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-backend-dl.cpp +48 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-backend-dl.h +45 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-backend-impl.h +275 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-backend-meta.cpp +2257 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-backend-reg.cpp +586 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-backend.cpp +2371 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-blas/CMakeLists.txt +101 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-blas/ggml-blas.cpp +522 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cann/CMakeLists.txt +89 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cann/acl_tensor.cpp +195 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cann/acl_tensor.h +349 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cann/aclnn_ops.cpp +4436 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cann/aclnn_ops.h +1190 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cann/common.h +651 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cann/ggml-cann.cpp +3062 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-common.h +1900 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/CMakeLists.txt +723 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/amx/amx.cpp +249 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/amx/amx.h +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/amx/common.h +115 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/amx/mmq.cpp +2512 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/amx/mmq.h +10 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/arch/arm/cpu-feats.cpp +98 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/arch/arm/quants.c +4245 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/arch/arm/repack.cpp +5156 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/arch/loongarch/quants.c +2158 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/arch/powerpc/cpu-feats.cpp +82 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/arch/powerpc/quants.c +2304 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/arch/riscv/cpu-feats.cpp +38 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/arch/riscv/quants.c +4553 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/arch/riscv/repack.cpp +1703 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/arch/s390/cpu-feats.cpp +50 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/arch/s390/quants.c +1465 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/arch/wasm/quants.c +1220 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/arch/x86/cpu-feats.cpp +327 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/arch/x86/quants.c +3970 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/arch/x86/repack.cpp +6407 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/arch-fallback.h +348 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/binary-ops.cpp +154 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/binary-ops.h +16 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/cmake/FindSIMD.cmake +100 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/cmake/FindSMTIME.cmake +32 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/common.h +95 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/ggml-cpu-impl.h +539 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/ggml-cpu.c +3835 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/ggml-cpu.cpp +703 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/hbm.cpp +55 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/hbm.h +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/kleidiai/kernels.cpp +939 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/kleidiai/kernels.h +90 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/kleidiai/kleidiai.cpp +1513 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/kleidiai/kleidiai.h +17 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/llamafile/sgemm.cpp +4051 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/llamafile/sgemm.h +25 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/ops.cpp +11373 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/ops.h +119 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/quants.c +1288 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/quants.h +103 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/repack.cpp +4836 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/repack.h +245 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/simd-gemm.h +226 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/simd-mappings.h +1319 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/spacemit/ime.cpp +1740 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/spacemit/ime.h +21 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/spacemit/ime1_kernels.cpp +1027 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/spacemit/ime2_kernels.cpp +5768 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/spacemit/ime_env.cpp +320 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/spacemit/ime_env.h +55 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/spacemit/ime_kernels.h +189 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/spacemit/repack.cpp +1795 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/spacemit/repack.h +14 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/spacemit/rvv_kernels.cpp +3178 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/spacemit/rvv_kernels.h +95 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/spacemit/spine_barrier.h +34 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/spacemit/spine_mem_pool.cpp +760 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/spacemit/spine_mem_pool.h +32 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/spacemit/spine_tcm.h +409 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/traits.cpp +36 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/traits.h +38 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/unary-ops.cpp +337 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/unary-ops.h +35 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/vec.cpp +613 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cpu/vec.h +1570 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/CMakeLists.txt +269 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/acc.cu +61 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/add-id.cu +58 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/add-id.cuh +3 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/allreduce.cu +971 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/allreduce.cuh +29 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/argmax.cu +91 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/argmax.cuh +3 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/argsort.cu +266 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/argsort.cuh +19 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/binbcast.cu +530 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/binbcast.cuh +12 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/clamp.cu +45 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/common.cuh +1579 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/concat.cu +205 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/conv-transpose-1d.cu +86 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/conv-transpose-1d.cuh +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/conv2d-dw.cu +161 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/conv2d-dw.cuh +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/conv2d-transpose.cu +115 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/conv2d-transpose.cuh +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/conv2d.cu +166 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/conv2d.cuh +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/convert.cu +892 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/convert.cuh +66 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/count-equal.cu +64 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/count-equal.cuh +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/cp-async.cuh +57 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/cpy-utils.cuh +217 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/cpy.cu +566 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/cpy.cuh +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/cross-entropy-loss.cu +177 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/cross-entropy-loss.cuh +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/cumsum.cu +307 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/cumsum.cuh +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/dequantize.cuh +99 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/diag.cu +77 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/diag.cuh +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/fattn-common.cuh +1220 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/fattn-mma-f16.cuh +2021 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/fattn-tile.cu +61 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/fattn-tile.cuh +1349 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/fattn-vec.cuh +603 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/fattn-wmma-f16.cu +697 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/fattn-wmma-f16.cuh +51 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/fattn.cu +562 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/fattn.cuh +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/fill.cu +37 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/fill.cuh +3 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/fwht.cu +101 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/fwht.cuh +4 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/gated_delta_net.cu +314 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/gated_delta_net.cuh +4 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/getrows.cu +305 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/getrows.cuh +15 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/ggml-cuda.cu +5698 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/gla.cu +93 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/gla.cuh +3 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/im2col.cu +267 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/im2col.cuh +6 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/mean.cu +77 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/mean.cuh +3 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/mma.cuh +1456 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/mmf.cu +191 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/mmf.cuh +908 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/mmid.cu +164 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/mmid.cuh +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/mmq.cu +372 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/mmq.cuh +4176 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/mmvf.cu +866 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/mmvf.cuh +14 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/mmvq.cu +1246 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/mmvq.cuh +18 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/norm.cu +698 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/norm.cuh +18 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/opt-step-adamw.cu +78 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/opt-step-adamw.cuh +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/opt-step-sgd.cu +49 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/opt-step-sgd.cuh +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/out-prod.cu +84 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/out-prod.cuh +3 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/pad.cu +106 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/pad_reflect_1d.cu +91 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/pad_reflect_1d.cuh +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/quantize.cu +448 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/quantize.cuh +41 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/reduce_rows.cuh +41 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/roll.cu +67 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/roll.cuh +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/rope.cu +672 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/rope.cuh +9 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/scale.cu +37 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/set-rows.cu +335 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/set-rows.cuh +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/set.cu +39 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/set.cuh +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/snake.cu +72 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/snake.cuh +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/softcap.cu +37 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/softcap.cuh +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/softmax.cu +472 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/softmax.cuh +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/solve_tri.cu +275 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/solve_tri.cuh +3 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/ssm-conv.cu +202 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/ssm-conv.cuh +3 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/ssm-scan.cu +347 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/ssm-scan.cuh +3 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/sum.cu +41 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/sum.cuh +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/sumrows.cu +47 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/sumrows.cuh +4 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_1-ncols2_16.cu +6 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_1-ncols2_32.cu +6 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_1-ncols2_8.cu +12 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_16-ncols2_1.cu +10 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_16-ncols2_2.cu +10 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_16-ncols2_4.cu +12 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_2-ncols2_16.cu +6 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_2-ncols2_32.cu +6 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_2-ncols2_4.cu +12 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_2-ncols2_8.cu +12 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_32-ncols2_1.cu +10 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_32-ncols2_2.cu +10 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_4-ncols2_16.cu +6 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_4-ncols2_2.cu +10 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_4-ncols2_4.cu +12 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_4-ncols2_8.cu +12 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_64-ncols2_1.cu +10 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_8-ncols2_1.cu +10 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_8-ncols2_2.cu +10 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_8-ncols2_4.cu +12 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_8-ncols2_8.cu +12 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq112-dv112.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq128-dv128.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq192-dv128.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq256-dv256.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq320-dv256.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq40-dv40.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq512-dv512.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq576-dv512.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq64-dv64.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq72-dv72.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq80-dv80.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq96-dv96.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-bf16.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-f16.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-q4_0.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-q4_1.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-q5_0.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-q5_1.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-q8_0.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-bf16.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-f16.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-q4_0.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-q4_1.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-q5_0.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-q5_1.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-q8_0.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-bf16.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-f16.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-q4_0.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-q4_1.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-q5_0.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-q5_1.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-q8_0.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-bf16.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-f16.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-q4_0.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-q4_1.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-q5_0.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-q5_1.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-q8_0.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-bf16.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-f16.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-q4_0.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-q4_1.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-q5_0.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-q5_1.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-q8_0.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-bf16.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-f16.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-q4_0.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-q4_1.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-q5_0.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-q5_1.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-q8_0.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-bf16.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-f16.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-q4_0.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-q4_1.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-q5_0.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-q5_1.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-q8_0.cu +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/generate_cu_files.py +110 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_1.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_10.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_11.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_12.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_13.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_14.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_15.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_16.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_2.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_3.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_4.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_5.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_6.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_7.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_8.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_9.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-iq1_s.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-iq2_s.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-iq2_xs.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-iq2_xxs.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-iq3_s.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-iq3_xxs.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-iq4_nl.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-iq4_xs.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-mxfp4.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-nvfp4.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-q1_0.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-q2_k.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-q3_k.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-q4_0.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-q4_1.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-q4_k.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-q5_0.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-q5_1.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-q5_k.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-q6_k.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-q8_0.cu +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/top-k.cu +96 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/top-k.cuh +3 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/topk-moe.cu +418 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/topk-moe.cuh +27 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/tri.cu +136 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/tri.cuh +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/tsembd.cu +47 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/unary.cu +646 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/unary.cuh +114 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/upscale.cu +293 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/vecdotq.cuh +1317 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/vendors/cuda.h +28 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/vendors/hip.h +304 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/vendors/musa.h +150 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/wkv.cu +199 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-cuda/wkv.cuh +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/CMakeLists.txt +118 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/ggml-hexagon.cpp +3985 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/CMakeLists.txt +81 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/act-ops.c +782 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/argsort-ops.c +293 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/binary-ops.c +872 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/cmake-toolchain.cmake +157 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/concat-ops.c +275 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/cpy-ops.c +295 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/cumsum-ops.c +270 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/diag-ops.c +216 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/fill-ops.c +123 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/flash-attn-ops.c +732 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/gated-delta-net-ops.c +975 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/get-rows-ops.c +218 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hex-dma.c +63 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hex-dma.h +372 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hex-dump.h +86 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hex-fastdiv.h +37 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hex-utils.h +137 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hmx-flash-attn-ops.c +1840 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hmx-matmul-ops.c +1651 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hmx-ops.h +70 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hmx-profile.h +34 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hmx-queue.c +158 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hmx-queue.h +134 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hmx-utils.h +200 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/htp-ctx.h +114 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/htp-ops.h +188 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/htp_iface.idl +22 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hvx-arith.h +443 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hvx-base.h +308 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hvx-copy.h +262 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hvx-div.h +291 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hvx-dump.h +129 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hvx-exp.h +216 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hvx-floor.h +100 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hvx-inverse.h +210 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hvx-reduce.h +296 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hvx-repl.h +74 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hvx-scale.h +133 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hvx-sigmoid.h +142 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hvx-sin-cos.h +90 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hvx-sqrt.h +126 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hvx-types.h +36 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/hvx-utils.h +21 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/main.c +895 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/matmul-ops.c +4622 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/pad-ops.c +545 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/repeat-ops.c +148 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/rope-ops.c +693 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/set-rows-ops.c +190 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/softmax-ops.c +407 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/solve-tri-ops.c +267 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/ssm-conv.c +432 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/sum-rows-ops.c +128 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/unary-ops.c +1047 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/vtcm-utils.h +16 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/worker-pool.c +293 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp/worker-pool.h +57 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp-drv.cpp +418 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp-drv.h +121 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/htp-opnode.h +241 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/libdl.h +79 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hexagon/libggml-htp.inf +40 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-hip/CMakeLists.txt +157 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-impl.h +783 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-metal/CMakeLists.txt +124 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-metal/ggml-metal-common.cpp +457 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-metal/ggml-metal-common.h +52 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-metal/ggml-metal-context.h +41 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-metal/ggml-metal-context.m +739 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-metal/ggml-metal-device.cpp +2059 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-metal/ggml-metal-device.h +322 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-metal/ggml-metal-device.m +1875 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-metal/ggml-metal-impl.h +1175 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-metal/ggml-metal-ops.cpp +4622 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-metal/ggml-metal-ops.h +97 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-metal/ggml-metal.cpp +950 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-metal/ggml-metal.metal +10699 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-musa/CMakeLists.txt +124 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-musa/mudnn.cu +112 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-musa/mudnn.cuh +12 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/CMakeLists.txt +196 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/ggml-opencl.cpp +17713 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/add.cl +190 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/add_id.cl +42 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/argsort.cl +86 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/clamp.cl +20 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/concat.cl +51 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/conv2d.cl +185 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/conv2d_f16_f32.cl +176 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/cpy.cl +229 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/cumsum.cl +139 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/cvt.cl +1920 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/diag.cl +27 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/diag_mask_inf.cl +58 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/div.cl +138 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/embed_kernel.py +26 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/exp.cl +125 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/expm1.cl +113 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/fill.cl +17 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/flash_attn_f16.cl +370 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/flash_attn_f32.cl +371 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/flash_attn_f32_f16.cl +373 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gated_delta_net.cl +247 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gelu.cl +89 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemm_moe_mxfp4_f32.cl +162 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemm_moe_mxfp4_f32_ns.cl +306 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemm_moe_q4_0_f32_ns.cl +256 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemm_moe_q4_1_f32_ns.cl +258 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemm_moe_q4_k_f32_ns.cl +283 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemm_moe_q5_0_f32_ns.cl +260 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemm_moe_q5_1_f32_ns.cl +262 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemm_moe_q5_k_f32_ns.cl +288 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemm_moe_q6_k_f32_ns.cl +267 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemm_noshuffle_iq4_nl_f32.cl +150 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q4_0_f32.cl +139 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q4_1_f32.cl +132 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q4_k_f32.cl +172 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q5_k_f32.cl +176 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q6_k_f32.cl +140 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q8_0_f32.cl +129 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemm_xmem_f16_f32_os8.cl +233 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemv_moe_mxfp4_f32.cl +156 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemv_moe_mxfp4_f32_ns.cl +165 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemv_moe_q4_0_f32_ns.cl +120 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemv_moe_q4_1_f32_ns.cl +123 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemv_moe_q4_k_f32_ns.cl +155 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemv_moe_q5_0_f32_ns.cl +123 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemv_moe_q5_1_f32_ns.cl +125 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemv_moe_q5_k_f32_ns.cl +160 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemv_moe_q6_k_f32_ns.cl +141 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemv_noshuffle_iq4_nl_f32.cl +302 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q4_0_f32.cl +274 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q4_0_f32_spec.cl +268 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q4_1_f32.cl +283 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q4_k_f32.cl +318 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q5_k_f32.cl +326 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q6_k_f32.cl +293 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q8_0_f32.cl +195 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/get_rows.cl +187 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/glu.cl +378 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/group_norm.cl +121 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/im2col_f16.cl +57 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/im2col_f32.cl +57 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/l2_norm.cl +71 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mean.cl +140 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/moe_reorder_b.cl +30 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/moe_sort_by_expert.cl +82 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul.cl +152 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mat_f16_f32.cl +130 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mm_f16_f32_kq_kqv.cl +273 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mm_f16_f32_l4_lm.cl +146 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mm_f32_f32_l4_lm.cl +147 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mm_iq4_nl_f32_l4_lm.cl +171 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mm_q4_0_f32_l4_lm.cl +163 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mm_q4_1_f32_l4_lm.cl +165 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mm_q4_k_f32_l4_lm.cl +179 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mm_q5_k_f32_l4_lm.cl +192 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mm_q6_k_f32_l4_lm.cl +158 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mm_q8_0_f32_l4_lm.cl +154 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_f16_f16.cl +118 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_f16_f32.cl +118 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_f16_f32_1row.cl +94 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_f16_f32_l4.cl +84 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_f32_f32.cl +118 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_id_mxfp4_f32.cl +189 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_id_mxfp4_f32_flat.cl +176 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_id_q4_0_f32_8x_flat.cl +283 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_id_q8_0_f32.cl +140 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_id_q8_0_f32_flat.cl +222 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_iq4_nl_f32.cl +164 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_iq4_nl_f32_flat.cl +202 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_mxfp4_f32.cl +144 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_mxfp4_f32_flat.cl +167 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32.cl +192 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32_1d_16x_flat.cl +307 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32_1d_8x_flat.cl +265 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32_8x_flat.cl +272 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32_v.cl +254 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q4_1_f32.cl +219 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q4_1_f32_flat.cl +229 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q4_k_f32.cl +180 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q4_k_f32_flat.cl +196 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q5_k_f32.cl +187 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q5_k_f32_flat.cl +203 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q6_k_f32.cl +194 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q6_k_f32_flat.cl +194 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q8_0_f32.cl +125 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q8_0_f32_flat.cl +202 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/neg.cl +125 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/norm.cl +161 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/pad.cl +39 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/relu.cl +16 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/repeat.cl +38 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/rms_norm.cl +190 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/rope.cl +747 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/scale.cl +27 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/set_rows.cl +208 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/sigmoid.cl +29 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/silu.cl +30 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/softmax_4_f16.cl +108 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/softmax_4_f32.cl +108 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/softmax_f16.cl +107 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/softmax_f32.cl +107 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/softplus.cl +116 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/solve_tri.cl +51 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/sqr.cl +53 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/sqrt.cl +53 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/ssm_conv.cl +77 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/sub.cl +138 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/sum_rows.cl +140 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/tanh.cl +109 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/transpose.cl +143 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/tri.cl +32 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/tsembd.cl +48 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opencl/kernels/upscale.cl +120 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/.clang-format +154 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/CMakeLists.txt +22 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/ggml-decoder.cpp +985 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/ggml-decoder.h +294 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/ggml-openvino-extra.cpp +380 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/ggml-openvino-extra.h +182 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/ggml-openvino.cpp +1132 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/ggml-quants.cpp +956 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/ggml-quants.h +153 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/decoder.h +74 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/frontend.cpp +27 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/frontend.h +23 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/input_model.cpp +17 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/input_model.h +29 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/node_context.h +112 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/op/cont.cpp +48 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/op/cpy.cpp +21 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/op/flash_attn_ext.cpp +90 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/op/get_rows.cpp +69 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/op/glu_geglu.cpp +61 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/op/glu_swiglu.cpp +62 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/op/mulmat.cpp +90 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/op/permute.cpp +102 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/op/reshape.cpp +83 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/op/rms_norm.cpp +46 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/op/rope.cpp +149 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/op/scale.cpp +41 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/op/set_rows.cpp +76 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/op/softmax.cpp +89 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/op/transpose.cpp +23 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/op/unary_gelu.cpp +25 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/op/unary_silu.cpp +27 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/op/view.cpp +53 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/op_table.cpp +47 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/op_table.h +40 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/pass/fuse_to_sdpa.cpp +60 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/pass/fuse_to_sdpa.h +17 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/pass/mark_decompression_convert_constant_folding.h +29 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/pass/squeeze_matmul.cpp +58 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/pass/squeeze_matmul.h +17 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/rt_info/weightless_caching_attributes.hpp +41 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/translate_session.cpp +317 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/translate_session.h +28 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/utils.cpp +257 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/openvino/utils.h +86 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/utils.cpp +880 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-openvino/utils.h +143 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-opt.cpp +1094 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-quants.c +5591 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-quants.h +112 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-rpc/CMakeLists.txt +33 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-rpc/ggml-rpc.cpp +1974 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-rpc/transport.cpp +683 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-rpc/transport.h +34 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/CMakeLists.txt +207 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/add-id.cpp +81 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/add-id.hpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/backend.hpp +48 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/binbcast.cpp +346 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/binbcast.hpp +39 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/common.cpp +155 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/common.hpp +1007 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/concat.cpp +202 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/concat.hpp +20 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/conv.cpp +101 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/conv.hpp +20 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/convert.cpp +825 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/convert.hpp +64 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/count-equal.cpp +79 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/count-equal.hpp +9 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/cpy.cpp +602 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/cpy.hpp +223 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/cumsum.cpp +148 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/cumsum.hpp +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/dequantize.hpp +975 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/diag.cpp +67 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/diag.hpp +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/dmmv.cpp +1624 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/dmmv.hpp +27 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/dpct/helper.hpp +3774 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/element_wise.cpp +1124 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/element_wise.hpp +94 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/fattn-buffers.cpp +56 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/fattn-buffers.hpp +63 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/fattn-common.hpp +1181 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/fattn-tile.cpp +59 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/fattn-tile.hpp +1246 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/fattn-vec.hpp +674 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/fattn.cpp +227 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/fattn.hpp +22 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/fill.cpp +55 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/fill.hpp +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/gated_delta_net.cpp +348 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/gated_delta_net.hpp +9 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/gemm.hpp +93 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/getrows.cpp +219 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/getrows.hpp +20 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/ggml-sycl.cpp +5687 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/gla.cpp +106 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/gla.hpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/im2col.cpp +400 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/im2col.hpp +23 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/mmq.cpp +3030 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/mmq.hpp +33 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/mmvq.cpp +1380 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/mmvq.hpp +43 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/norm.cpp +656 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/norm.hpp +28 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/outprod.cpp +47 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/outprod.hpp +10 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/pad.cpp +97 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/pad.hpp +24 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/pad_reflect_1d.cpp +100 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/pad_reflect_1d.hpp +10 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/presets.hpp +79 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/quantize.hpp +133 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/quants.hpp +156 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/repeat_back.cpp +76 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/repeat_back.hpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/roll.cpp +122 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/roll.hpp +20 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/rope.cpp +641 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/rope.hpp +26 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/set.cpp +73 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/set.hpp +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/set_rows.cpp +240 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/set_rows.hpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/softmax.cpp +426 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/softmax.hpp +24 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/solve_tri.cpp +172 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/solve_tri.hpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/ssm_conv.cpp +132 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/ssm_conv.hpp +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/ssm_scan.cpp +156 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/ssm_scan.hpp +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/sycl_hw.cpp +67 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/sycl_hw.hpp +38 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq112-dv112.cpp +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq128-dv128.cpp +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq256-dv256.cpp +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq40-dv40.cpp +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq512-dv512.cpp +6 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq576-dv512.cpp +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq64-dv64.cpp +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq72-dv72.cpp +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq80-dv80.cpp +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq96-dv96.cpp +5 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-f16.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q4_0.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q4_1.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q5_0.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q5_1.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q8_0.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-f16.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q4_0.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q4_1.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q5_0.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q5_1.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q8_0.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-f16.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q4_0.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q4_1.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q5_0.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q5_1.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q8_0.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-f16.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q4_0.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q4_1.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q5_0.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q5_1.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q8_0.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-f16.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q4_0.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q4_1.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q5_0.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q5_1.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q8_0.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-f16.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q4_0.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q4_1.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q5_0.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q5_1.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q8_0.cpp +8 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/tsembd.cpp +73 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/tsembd.hpp +20 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/type.hpp +112 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/upscale.cpp +410 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/upscale.hpp +9 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/vecdotq.hpp +1501 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/wkv.cpp +293 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-sycl/wkv.hpp +10 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-threading.cpp +12 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-threading.h +14 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/CMakeLists.txt +70 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/apir_cs_ggml-rpc-front.cpp +87 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/backend/CMakeLists.txt +21 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/backend/apir_cs_ggml-rpc-back.cpp +115 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/backend/backend-convert.h +13 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/backend/backend-dispatched-backend.cpp +102 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/backend/backend-dispatched-buffer-type.cpp +105 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/backend/backend-dispatched-buffer.cpp +179 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/backend/backend-dispatched-device.cpp +148 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/backend/backend-dispatched.cpp +51 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/backend/backend-dispatched.gen.h +73 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/backend/backend-dispatched.h +27 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/backend/backend-virgl-apir.h +32 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/backend/backend.cpp +144 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/backend/shared/api_remoting.h +95 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/backend/shared/apir_backend.gen.h +94 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/backend/shared/apir_backend.h +50 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/backend/shared/apir_cs.h +378 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/backend/shared/apir_cs_ggml.h +232 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/backend/shared/apir_cs_rpc.h +58 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/ggml-backend-buffer-type.cpp +81 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/ggml-backend-buffer.cpp +123 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/ggml-backend-device.cpp +160 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/ggml-backend-reg.cpp +213 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/ggml-backend.cpp +71 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/ggml-remoting.h +71 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/ggmlremoting_functions.yaml +166 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/include/apir_hw.h +9 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/regenerate_remoting.py +333 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/virtgpu-apir.h +15 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/virtgpu-forward-backend.cpp +58 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/virtgpu-forward-buffer-type.cpp +110 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/virtgpu-forward-buffer.cpp +173 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/virtgpu-forward-device.cpp +192 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/virtgpu-forward-impl.h +36 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/virtgpu-forward.gen.h +53 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/virtgpu-shm.cpp +99 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/virtgpu-shm.h +23 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/virtgpu-utils.cpp +179 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/virtgpu-utils.h +86 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/virtgpu.cpp +545 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-virtgpu/virtgpu.h +115 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/CMakeLists.txt +231 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/cmake/host-toolchain.cmake.in +15 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/ggml-vulkan.cpp +17862 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/CMakeLists.txt +35 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/abs.comp +21 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/acc.comp +37 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/add.comp +69 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/add1.comp +28 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/add_id.comp +42 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/arange.comp +20 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/argmax.comp +60 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/argsort.comp +86 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/argsort_large.comp +114 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/ceil.comp +22 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/clamp.comp +17 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/concat.comp +41 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/contig_copy.comp +53 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/conv2d_dw.comp +105 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/conv2d_mm.comp +480 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/conv_transpose_1d.comp +98 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/copy.comp +25 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/copy_from_quant.comp +51 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/copy_to_quant.comp +320 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/copy_transpose.comp +67 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/cos.comp +17 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/count_equal.comp +31 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/count_experts.comp +51 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/cumsum.comp +83 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/cumsum_multipass1.comp +60 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/cumsum_multipass2.comp +66 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_f32.comp +20 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_funcs.glsl +692 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_funcs_cm2.glsl +1376 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_head.glsl +13 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq1_m.comp +42 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq1_s.comp +35 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq2_s.comp +44 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq2_xs.comp +43 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq2_xxs.comp +49 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq3_s.comp +40 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq3_xxs.comp +51 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq4_nl.comp +32 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq4_xs.comp +34 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_mxfp4.comp +32 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_nvfp4.comp +32 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q1_0.comp +29 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q2_k.comp +34 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q3_k.comp +42 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q4_0.comp +30 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q4_1.comp +32 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q4_k.comp +68 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q5_0.comp +34 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q5_1.comp +35 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q5_k.comp +70 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q6_k.comp +33 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q8_0.comp +31 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/diag.comp +28 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/diag_mask_inf.comp +34 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/div.comp +27 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/elu.comp +27 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/exp.comp +20 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/feature-tests/bfloat16.comp +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/feature-tests/coopmat.comp +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/feature-tests/coopmat2.comp +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/feature-tests/coopmat2_decode_vector.comp +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/feature-tests/integer_dot.comp +7 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/fill.comp +19 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn.comp +756 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_base.glsl +255 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_cm1.comp +626 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_cm2.comp +465 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_dequant.glsl +123 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_mask_opt.comp +162 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_mmq_funcs.glsl +203 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_split_k_reduce.comp +121 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/floor.comp +22 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/fwht.comp +69 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/gated_delta_net.comp +190 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/geglu.comp +13 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/geglu_erf.comp +27 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/geglu_quick.comp +11 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/gelu.comp +25 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/gelu_erf.comp +39 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/gelu_quick.comp +23 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/generic_binary_head.glsl +65 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/generic_head.glsl +11 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/generic_unary_head.glsl +83 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/get_rows.comp +42 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/get_rows_quant.comp +51 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/glu_head.glsl +28 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/glu_main.glsl +39 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/group_norm.comp +66 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/hardsigmoid.comp +22 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/hardswish.comp +22 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/im2col.comp +138 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/im2col_3d.comp +124 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/l2_norm.comp +44 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/leaky_relu.comp +22 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/log.comp +17 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul.comp +27 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_split_k_reduce.comp +48 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec.comp +264 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_base.glsl +230 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iface.glsl +35 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq1_m.comp +132 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq1_s.comp +95 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq2_s.comp +90 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq2_xs.comp +105 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq2_xxs.comp +87 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq3_s.comp +90 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq3_xxs.comp +88 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_nc.comp +124 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_p021.comp +156 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q2_k.comp +128 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q3_k.comp +132 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q4_k.comp +134 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q5_k.comp +165 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q6_k.comp +130 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vecq.comp +143 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vecq_funcs.glsl +503 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mm.comp +464 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mm_cm2.comp +626 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mm_funcs.glsl +600 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mm_id_funcs.glsl +74 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq.comp +311 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq_funcs.glsl +454 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq_shmem_types.glsl +93 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/multi_add.comp +194 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/neg.comp +20 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/norm.comp +44 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/opt_step_adamw.comp +42 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/opt_step_sgd.comp +22 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/pad.comp +64 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/pool2d.comp +74 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/quantize_q8_1.comp +127 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/reglu.comp +9 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/relu.comp +21 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/repeat.comp +26 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/repeat_back.comp +37 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/rms_norm.comp +150 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/rms_norm_back.comp +55 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/rms_norm_partials.comp +65 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/roll.comp +46 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/rope_funcs.glsl +210 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/rope_head.glsl +19 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/rope_multi.comp +17 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/rope_neox.comp +17 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/rope_norm.comp +17 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/rope_params.glsl +34 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/rope_vision.comp +17 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/round.comp +29 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/scale.comp +24 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/sgn.comp +21 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/sigmoid.comp +20 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/silu.comp +22 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/silu_back.comp +26 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/sin.comp +17 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/snake.comp +49 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/soft_max.comp +195 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/soft_max_back.comp +54 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/soft_max_large1.comp +62 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/soft_max_large2.comp +79 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/soft_max_large3.comp +65 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/soft_max_large_common.glsl +53 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/softplus.comp +23 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/solve_tri.comp +81 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/sqrt.comp +17 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/square.comp +17 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/ssm_conv.comp +60 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/ssm_scan.comp +124 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/step.comp +22 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/sub.comp +29 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/sum_rows.comp +47 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/sum_rows.glsl +25 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/swiglu.comp +9 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/swiglu_oai.comp +14 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/tanh.comp +20 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/timestep_embedding.comp +42 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/topk_argsort.comp +118 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/topk_moe.comp +213 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/topk_nary_search.comp +246 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/tri.comp +42 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/trunc.comp +22 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/types.glsl +1855 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/upscale.comp +178 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/utils.glsl +25 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/vulkan-shaders-gen.cpp +1200 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/wkv6.comp +87 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/wkv7.comp +91 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-vulkan/vulkan-shaders/xielu.comp +35 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/CMakeLists.txt +80 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/ggml-webgpu-shader-lib.hpp +3224 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/ggml-webgpu.cpp +4518 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/pre_wgsl.hpp +778 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/add_id.wgsl +64 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/argmax.wgsl +72 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/argsort.wgsl +106 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/argsort_merge.wgsl +134 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/binary.wgsl +139 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/common_decls.tmpl +904 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/concat.wgsl +75 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/conv2d.wgsl +165 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/cpy.wgsl +83 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/cumsum.wgsl +66 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/embed_wgsl.py +89 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/flash_attn.wgsl +706 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/flash_attn_tile.wgsl +351 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/flash_attn_vec_blk.wgsl +101 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/flash_attn_vec_reduce.wgsl +84 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/flash_attn_vec_split.wgsl +720 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/gated_delta_net.wgsl +148 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/get_rows.wgsl +773 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/glu.wgsl +155 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/im2col.wgsl +101 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/memset.wgsl +40 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_decls.tmpl +1210 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_id.wgsl +195 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_id_gather.wgsl +52 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_id_vec.wgsl +154 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_reg_tile.wgsl +149 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_subgroup_matrix.wgsl +200 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_vec.wgsl +151 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_vec_acc.tmpl +1432 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_vec_q_acc.tmpl +303 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/pad.wgsl +86 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/quantize_q8.wgsl +173 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/repeat.wgsl +67 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/rms_norm_mul.wgsl +152 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/rope.wgsl +224 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/row_norm.wgsl +153 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/scale.wgsl +63 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/set.wgsl +109 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/set_rows.wgsl +109 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/soft_max.wgsl +245 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/solve_tri.wgsl +121 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/ssm_conv.wgsl +65 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/ssm_scan.wgsl +193 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/sum_rows.wgsl +55 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/unary.wgsl +210 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-webgpu/wgsl-shaders/upscale.wgsl +240 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-zdnn/.gitignore +1 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-zdnn/CMakeLists.txt +36 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-zdnn/common.hpp +59 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-zdnn/ggml-zdnn.cpp +637 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-zdnn/mmf.cpp +80 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-zdnn/mmf.hpp +12 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-zdnn/utils.cpp +79 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-zdnn/utils.hpp +19 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-zendnn/CMakeLists.txt +91 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml-zendnn/ggml-zendnn.cpp +703 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml.c +7777 -0
- ggml_python-0.0.38/vendor/ggml/src/ggml.cpp +26 -0
- ggml_python-0.0.38/vendor/ggml/src/gguf.cpp +1688 -0
- ggml_python-0.0.38/vendor/ggml/tests/CMakeLists.txt +356 -0
- ggml_python-0.0.38/vendor/ggml/tests/test-arange.cpp +100 -0
- ggml_python-0.0.38/vendor/ggml/tests/test-backend-ops.cpp +9958 -0
- ggml_python-0.0.38/vendor/ggml/tests/test-cont.c +170 -0
- ggml_python-0.0.38/vendor/ggml/tests/test-conv-transpose-1d.cpp +691 -0
- ggml_python-0.0.38/vendor/ggml/tests/test-conv-transpose.c +248 -0
- ggml_python-0.0.38/vendor/ggml/tests/test-conv1d-dw-c1.cpp +243 -0
- ggml_python-0.0.38/vendor/ggml/tests/test-conv1d-dw-c2.cpp +243 -0
- ggml_python-0.0.38/vendor/ggml/tests/test-conv1d.cpp +289 -0
- ggml_python-0.0.38/vendor/ggml/tests/test-conv2d-dw.cpp +153 -0
- ggml_python-0.0.38/vendor/ggml/tests/test-conv2d.cpp +391 -0
- ggml_python-0.0.38/vendor/ggml/tests/test-customop.c +300 -0
- ggml_python-0.0.38/vendor/ggml/tests/test-dup.c +111 -0
- ggml_python-0.0.38/vendor/ggml/tests/test-interpolate.cpp +166 -0
- ggml_python-0.0.38/vendor/ggml/tests/test-opt.cpp +1003 -0
- ggml_python-0.0.38/vendor/ggml/tests/test-pad-reflect-1d.cpp +213 -0
- ggml_python-0.0.38/vendor/ggml/tests/test-pool.c +274 -0
- ggml_python-0.0.38/vendor/ggml/tests/test-quantize-fns.cpp +196 -0
- ggml_python-0.0.38/vendor/ggml/tests/test-quantize-perf.cpp +356 -0
- ggml_python-0.0.38/vendor/ggml/tests/test-rel-pos.c +87 -0
- ggml_python-0.0.38/vendor/ggml/tests/test-roll.cpp +128 -0
- ggml_python-0.0.38/vendor/ggml/tests/test-timestep_embedding.cpp +180 -0
- ggml_python-0.0.36/.github/workflows/test.yaml +0 -114
- ggml_python-0.0.36/.github/workflows/wheels-cuda.yaml +0 -130
- ggml_python-0.0.36/.github/workflows/wheels-index.yaml +0 -50
- ggml_python-0.0.36/.github/workflows/wheels-metal.yaml +0 -87
- ggml_python-0.0.36/.github/workflows/wheels.yaml +0 -51
- ggml_python-0.0.36/.gitmodules +0 -3
- ggml_python-0.0.36/CMakeLists.txt +0 -41
- ggml_python-0.0.36/Makefile +0 -83
- ggml_python-0.0.36/PKG-INFO +0 -137
- ggml_python-0.0.36/README.md +0 -99
- ggml_python-0.0.36/docs/index.md +0 -127
- ggml_python-0.0.36/examples/clip/requirements.txt +0 -24
- ggml_python-0.0.36/examples/optimizer/simple.py +0 -89
- ggml_python-0.0.36/examples/replit/main.py +0 -1088
- ggml_python-0.0.36/ggml/__init__.py +0 -3
- ggml_python-0.0.36/ggml/ggml.py +0 -11356
- ggml_python-0.0.36/ggml/utils.py +0 -329
- ggml_python-0.0.36/mkdocs.yml +0 -58
- ggml_python-0.0.36/pyproject.toml +0 -60
- ggml_python-0.0.36/tests/test_ggml.py +0 -280
- ggml_python-0.0.36/tests/test_ggml_cuda.py +0 -118
- ggml_python-0.0.36/tests/test_ggml_metal.py +0 -121
- ggml_python-0.0.36/tests/test_utils.py +0 -138
- ggml_python-0.0.36/vendor/ggml/.git +0 -1
- ggml_python-0.0.36/vendor/ggml/.github/workflows/ci.yml +0 -139
- ggml_python-0.0.36/vendor/ggml/.gitignore +0 -41
- ggml_python-0.0.36/vendor/ggml/AUTHORS +0 -175
- ggml_python-0.0.36/vendor/ggml/CMakeLists.txt +0 -211
- ggml_python-0.0.36/vendor/ggml/LICENSE +0 -21
- ggml_python-0.0.36/vendor/ggml/Package.swift +0 -49
- ggml_python-0.0.36/vendor/ggml/README.md +0 -230
- ggml_python-0.0.36/vendor/ggml/build.zig +0 -158
- ggml_python-0.0.36/vendor/ggml/ci/run.sh +0 -360
- ggml_python-0.0.36/vendor/ggml/cmake/BuildTypes.cmake +0 -54
- ggml_python-0.0.36/vendor/ggml/docs/gguf.md +0 -671
- ggml_python-0.0.36/vendor/ggml/docs/logo/ggml-logo-inverted.jpg +0 -0
- ggml_python-0.0.36/vendor/ggml/docs/logo/ggml-logo-inverted.svg +0 -3
- ggml_python-0.0.36/vendor/ggml/docs/logo/ggml-logo-transparent-inverted.png +0 -0
- ggml_python-0.0.36/vendor/ggml/docs/logo/ggml-logo-transparent.png +0 -0
- ggml_python-0.0.36/vendor/ggml/docs/logo/ggml-logo.jpg +0 -0
- ggml_python-0.0.36/vendor/ggml/docs/logo/ggml-logo.svg +0 -3
- ggml_python-0.0.36/vendor/ggml/examples/CMakeLists.txt +0 -28
- ggml_python-0.0.36/vendor/ggml/examples/common-ggml.cpp +0 -236
- ggml_python-0.0.36/vendor/ggml/examples/common.cpp +0 -896
- ggml_python-0.0.36/vendor/ggml/examples/common.h +0 -311
- ggml_python-0.0.36/vendor/ggml/examples/dr_wav.h +0 -6434
- ggml_python-0.0.36/vendor/ggml/examples/gpt-2/CMakeLists.txt +0 -48
- ggml_python-0.0.36/vendor/ggml/examples/gpt-2/README.md +0 -225
- ggml_python-0.0.36/vendor/ggml/examples/gpt-2/main-alloc.cpp +0 -879
- ggml_python-0.0.36/vendor/ggml/examples/gpt-2/main-backend.cpp +0 -948
- ggml_python-0.0.36/vendor/ggml/examples/gpt-2/main-batched.cpp +0 -1213
- ggml_python-0.0.36/vendor/ggml/examples/gpt-2/main-ctx.cpp +0 -840
- ggml_python-0.0.36/vendor/ggml/examples/gpt-2/main-sched.cpp +0 -1065
- ggml_python-0.0.36/vendor/ggml/examples/gpt-2/quantize.cpp +0 -184
- ggml_python-0.0.36/vendor/ggml/examples/gpt-j/README.md +0 -246
- ggml_python-0.0.36/vendor/ggml/examples/gpt-j/main.cpp +0 -754
- ggml_python-0.0.36/vendor/ggml/examples/gpt-j/quantize.cpp +0 -182
- ggml_python-0.0.36/vendor/ggml/examples/magika/CMakeLists.txt +0 -21
- ggml_python-0.0.36/vendor/ggml/examples/magika/README.md +0 -23
- ggml_python-0.0.36/vendor/ggml/examples/magika/main.cpp +0 -371
- ggml_python-0.0.36/vendor/ggml/examples/mnist/CMakeLists.txt +0 -40
- ggml_python-0.0.36/vendor/ggml/examples/mnist/README.md +0 -133
- ggml_python-0.0.36/vendor/ggml/examples/mnist/convert-h5-to-ggml.py +0 -62
- ggml_python-0.0.36/vendor/ggml/examples/mnist/main-cnn.cpp +0 -169
- ggml_python-0.0.36/vendor/ggml/examples/mnist/main-cpu.cpp +0 -122
- ggml_python-0.0.36/vendor/ggml/examples/mnist/main-mtl.cpp +0 -125
- ggml_python-0.0.36/vendor/ggml/examples/mnist/main-mtl.h +0 -26
- ggml_python-0.0.36/vendor/ggml/examples/mnist/main-mtl.m +0 -499
- ggml_python-0.0.36/vendor/ggml/examples/mnist/main.cpp +0 -328
- ggml_python-0.0.36/vendor/ggml/examples/mnist/mnist-cnn.py +0 -101
- ggml_python-0.0.36/vendor/ggml/examples/mnist/web/.gitignore +0 -1
- ggml_python-0.0.36/vendor/ggml/examples/mnist/web/index.html +0 -178
- ggml_python-0.0.36/vendor/ggml/examples/python/README.md +0 -115
- ggml_python-0.0.36/vendor/ggml/examples/python/ggml/__init__.pyi +0 -2412
- ggml_python-0.0.36/vendor/ggml/examples/sam/CMakeLists.txt +0 -13
- ggml_python-0.0.36/vendor/ggml/examples/sam/README.md +0 -103
- ggml_python-0.0.36/vendor/ggml/examples/sam/main.cpp +0 -2232
- ggml_python-0.0.36/vendor/ggml/examples/simple/simple-backend.cpp +0 -223
- ggml_python-0.0.36/vendor/ggml/examples/simple/simple-ctx.cpp +0 -126
- ggml_python-0.0.36/vendor/ggml/examples/whisper/CMakeLists.txt +0 -23
- ggml_python-0.0.36/vendor/ggml/examples/whisper/README.md +0 -29
- ggml_python-0.0.36/vendor/ggml/examples/whisper/convert-pt-to-ggml.py +0 -342
- ggml_python-0.0.36/vendor/ggml/examples/whisper/grammar-parser.cpp +0 -423
- ggml_python-0.0.36/vendor/ggml/examples/whisper/grammar-parser.h +0 -29
- ggml_python-0.0.36/vendor/ggml/examples/whisper/main.cpp +0 -1247
- ggml_python-0.0.36/vendor/ggml/examples/whisper/quantize.cpp +0 -223
- ggml_python-0.0.36/vendor/ggml/examples/whisper/whisper.cpp +0 -7324
- ggml_python-0.0.36/vendor/ggml/examples/whisper/whisper.h +0 -672
- ggml_python-0.0.36/vendor/ggml/examples/yolo/README.md +0 -52
- ggml_python-0.0.36/vendor/ggml/examples/yolo/yolov3-tiny.cpp +0 -525
- ggml_python-0.0.36/vendor/ggml/ggml-common.h +0 -1830
- ggml_python-0.0.36/vendor/ggml/ggml.pc.in +0 -10
- ggml_python-0.0.36/vendor/ggml/include/ggml/ggml-alloc.h +0 -76
- ggml_python-0.0.36/vendor/ggml/include/ggml/ggml-backend.h +0 -233
- ggml_python-0.0.36/vendor/ggml/include/ggml/ggml.h +0 -2443
- ggml_python-0.0.36/vendor/ggml/requirements.txt +0 -10
- ggml_python-0.0.36/vendor/ggml/scripts/gen-authors.sh +0 -9
- ggml_python-0.0.36/vendor/ggml/scripts/sync-llama-am.sh +0 -183
- ggml_python-0.0.36/vendor/ggml/scripts/sync-llama.last +0 -1
- ggml_python-0.0.36/vendor/ggml/scripts/sync-llama.sh +0 -40
- ggml_python-0.0.36/vendor/ggml/scripts/sync-whisper-am.sh +0 -199
- ggml_python-0.0.36/vendor/ggml/scripts/sync-whisper.last +0 -1
- ggml_python-0.0.36/vendor/ggml/scripts/sync-whisper.sh +0 -47
- ggml_python-0.0.36/vendor/ggml/spm-headers/ggml-alloc.h +0 -1
- ggml_python-0.0.36/vendor/ggml/spm-headers/ggml-backend.h +0 -1
- ggml_python-0.0.36/vendor/ggml/spm-headers/ggml.h +0 -1
- ggml_python-0.0.36/vendor/ggml/spm-headers/module.modulemap +0 -7
- ggml_python-0.0.36/vendor/ggml/src/CMakeLists.txt +0 -496
- ggml_python-0.0.36/vendor/ggml/src/ggml-alloc.c +0 -985
- ggml_python-0.0.36/vendor/ggml/src/ggml-backend-impl.h +0 -141
- ggml_python-0.0.36/vendor/ggml/src/ggml-backend.c +0 -2101
- ggml_python-0.0.36/vendor/ggml/src/ggml-common.h +0 -1853
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/acc.cu +0 -47
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/argsort.cu +0 -103
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/argsort.cuh +0 -3
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/binbcast.cu +0 -280
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/binbcast.cuh +0 -6
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/clamp.cu +0 -34
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/common.cuh +0 -658
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/concat.cu +0 -49
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/convert.cu +0 -824
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/convert.cuh +0 -13
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/cpy.cu +0 -490
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/cpy.cuh +0 -9
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/dequantize.cuh +0 -103
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/dmmv.cu +0 -813
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/dmmv.cuh +0 -18
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/fattn-common.cuh +0 -47
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/fattn-vec-f16.cu +0 -430
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/fattn-vec-f16.cuh +0 -5
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/fattn-vec-f32.cu +0 -384
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/fattn-vec-f32.cuh +0 -3
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/fattn.cu +0 -699
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/fattn.cuh +0 -3
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/getrows.cu +0 -178
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/getrows.cuh +0 -5
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/im2col.cu +0 -104
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/im2col.cuh +0 -5
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/mmq.cu +0 -2255
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/mmq.cuh +0 -9
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/mmvq.cu +0 -404
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/mmvq.cuh +0 -7
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/norm.cu +0 -215
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/norm.cuh +0 -7
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/pad.cu +0 -49
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/quantize.cu +0 -45
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/quantize.cuh +0 -5
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/rope.cu +0 -308
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/rope.cuh +0 -5
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/scale.cu +0 -31
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/softmax.cu +0 -214
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/softmax.cuh +0 -5
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/sumrows.cu +0 -40
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/sumrows.cuh +0 -3
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/tsembd.cu +0 -47
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/unary.cu +0 -266
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/unary.cuh +0 -30
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/upscale.cu +0 -51
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda/vecdotq.cuh +0 -1280
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda.cu +0 -3042
- ggml_python-0.0.36/vendor/ggml/src/ggml-cuda.h +0 -43
- ggml_python-0.0.36/vendor/ggml/src/ggml-impl.h +0 -607
- ggml_python-0.0.36/vendor/ggml/src/ggml-kompute.cpp +0 -2019
- ggml_python-0.0.36/vendor/ggml/src/ggml-kompute.h +0 -46
- ggml_python-0.0.36/vendor/ggml/src/ggml-metal.h +0 -66
- ggml_python-0.0.36/vendor/ggml/src/ggml-metal.m +0 -3203
- ggml_python-0.0.36/vendor/ggml/src/ggml-metal.metal +0 -6859
- ggml_python-0.0.36/vendor/ggml/src/ggml-opencl.cpp +0 -2302
- ggml_python-0.0.36/vendor/ggml/src/ggml-opencl.h +0 -36
- ggml_python-0.0.36/vendor/ggml/src/ggml-quants.c +0 -14858
- ggml_python-0.0.36/vendor/ggml/src/ggml-quants.h +0 -133
- ggml_python-0.0.36/vendor/ggml/src/ggml-rpc.cpp +0 -1023
- ggml_python-0.0.36/vendor/ggml/src/ggml-rpc.h +0 -24
- ggml_python-0.0.36/vendor/ggml/src/ggml-sycl.cpp +0 -17775
- ggml_python-0.0.36/vendor/ggml/src/ggml-sycl.h +0 -49
- ggml_python-0.0.36/vendor/ggml/src/ggml-vulkan.cpp +0 -7132
- ggml_python-0.0.36/vendor/ggml/src/ggml-vulkan.h +0 -29
- ggml_python-0.0.36/vendor/ggml/src/ggml.c +0 -23059
- ggml_python-0.0.36/vendor/ggml/tests/CMakeLists.txt +0 -434
- ggml_python-0.0.36/vendor/ggml/tests/test-arange.cpp +0 -99
- ggml_python-0.0.36/vendor/ggml/tests/test-backend-buffer.cpp +0 -83
- ggml_python-0.0.36/vendor/ggml/tests/test-backend-ops.cpp +0 -2344
- ggml_python-0.0.36/vendor/ggml/tests/test-blas0.c +0 -269
- ggml_python-0.0.36/vendor/ggml/tests/test-conv-transpose.c +0 -247
- ggml_python-0.0.36/vendor/ggml/tests/test-conv1d.cpp +0 -295
- ggml_python-0.0.36/vendor/ggml/tests/test-conv2d.cpp +0 -397
- ggml_python-0.0.36/vendor/ggml/tests/test-customop.c +0 -226
- ggml_python-0.0.36/vendor/ggml/tests/test-dup.c +0 -110
- ggml_python-0.0.36/vendor/ggml/tests/test-grad0.cpp +0 -1606
- ggml_python-0.0.36/vendor/ggml/tests/test-mul-mat.cpp +0 -353
- ggml_python-0.0.36/vendor/ggml/tests/test-mul-mat0.c +0 -336
- ggml_python-0.0.36/vendor/ggml/tests/test-mul-mat1.c +0 -312
- ggml_python-0.0.36/vendor/ggml/tests/test-mul-mat2.c +0 -2585
- ggml_python-0.0.36/vendor/ggml/tests/test-opt.cpp +0 -181
- ggml_python-0.0.36/vendor/ggml/tests/test-pool.c +0 -147
- ggml_python-0.0.36/vendor/ggml/tests/test-quantize-fns.cpp +0 -185
- ggml_python-0.0.36/vendor/ggml/tests/test-quantize-perf.cpp +0 -363
- ggml_python-0.0.36/vendor/ggml/tests/test-rel-pos.c +0 -86
- ggml_python-0.0.36/vendor/ggml/tests/test-svd0.c +0 -214
- ggml_python-0.0.36/vendor/ggml/tests/test-timestep_embedding.cpp +0 -182
- ggml_python-0.0.36/vendor/ggml/tests/test-vec0.c +0 -133
- ggml_python-0.0.36/vendor/ggml/tests/test-vec1.c +0 -576
- ggml_python-0.0.36/vendor/ggml/tests/test-vec2.c +0 -268
- ggml_python-0.0.36/vendor/ggml/tests/test-xpos.c +0 -94
- ggml_python-0.0.36/vendor/ggml/tests/test0.c +0 -42
- ggml_python-0.0.36/vendor/ggml/tests/test0.zig +0 -41
- ggml_python-0.0.36/vendor/ggml/tests/test1.c +0 -458
- ggml_python-0.0.36/vendor/ggml/tests/test1.zig +0 -459
- ggml_python-0.0.36/vendor/ggml/tests/test2.c +0 -181
- ggml_python-0.0.36/vendor/ggml/tests/test2.zig +0 -165
- ggml_python-0.0.36/vendor/ggml/tests/test3.c +0 -95
- ggml_python-0.0.36/vendor/ggml/tests/test3.zig +0 -102
- {ggml_python-0.0.36 → ggml_python-0.0.38}/.github/dependabot.yaml +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/.github/workflows/publish.yaml +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/.gitignore +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/.readthedocs.yaml +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/LICENSE.md +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/docs/api-reference.md +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/examples/clip/README.md +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/examples/clip/convert-pt-to-ggml.py +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/examples/clip/model.py +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/examples/clip/utils.py +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/examples/custom-operators/example_jax.py +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/examples/replit/README.md +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/examples/replit/app.py +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/examples/replit/requirements.txt +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/ggml/py.typed +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/scripts/releases-to-pep-503.sh +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/tests/__init__.py +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/.editorconfig +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/cmake/GitVars.cmake +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/common-ggml.h +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/gpt-2/convert-cerebras-to-ggml.py +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/gpt-2/convert-ckpt-to-ggml.py +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/gpt-2/convert-h5-to-ggml.py +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/gpt-2/download-ggml-model.sh +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/gpt-2/download-model.sh +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/gpt-j/CMakeLists.txt +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/gpt-j/convert-h5-to-ggml.py +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/gpt-j/download-ggml-model.sh +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/gpt-j/download-model.sh +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/magika/convert.py +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/prompts/dolly-v2.txt +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/prompts/gpt-2-chinese.txt +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/prompts/gpt-2.txt +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/prompts/gpt-j.txt +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/prompts/gpt-neox-japanese.txt +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/prompts/gpt-neox.txt +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/prompts/polyglot-ko.txt +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/prompts/replit.txt +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/prompts/starcoder.txt +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/prompts/test-cases.txt +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/prompts/tokenize_huggingface.py +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/prompts/whisper.txt +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/python/api.h +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/python/example_add_quant.py +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/python/example_test_all_quants.py +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/python/ggml/__init__.py +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/python/ggml/cffi.py +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/python/ggml/ffi/__init__.pyi +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/python/ggml/utils.py +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/python/regenerate.py +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/python/stubs.py +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/python/test_tensor.py +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/sam/convert-pth-to-ggml.py +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/sam/example.jpg +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/simple/CMakeLists.txt +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/simple/README.md +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/stb_image.h +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/stb_image_write.h +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/CMakeLists.txt +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/convert-yolov3-tiny.py +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/coco.names +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/100_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/100_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/100_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/100_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/100_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/100_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/100_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/100_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/101_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/101_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/101_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/101_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/101_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/101_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/101_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/101_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/102_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/102_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/102_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/102_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/102_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/102_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/102_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/102_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/103_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/103_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/103_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/103_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/103_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/103_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/103_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/103_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/104_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/104_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/104_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/104_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/104_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/104_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/104_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/104_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/105_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/105_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/105_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/105_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/105_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/105_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/105_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/105_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/106_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/106_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/106_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/106_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/106_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/106_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/106_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/106_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/107_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/107_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/107_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/107_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/107_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/107_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/107_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/107_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/108_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/108_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/108_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/108_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/108_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/108_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/108_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/108_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/109_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/109_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/109_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/109_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/109_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/109_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/109_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/109_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/110_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/110_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/110_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/110_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/110_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/110_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/110_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/110_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/111_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/111_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/111_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/111_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/111_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/111_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/111_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/111_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/112_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/112_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/112_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/112_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/112_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/112_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/112_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/112_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/113_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/113_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/113_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/113_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/113_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/113_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/113_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/113_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/114_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/114_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/114_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/114_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/114_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/114_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/114_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/114_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/115_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/115_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/115_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/115_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/115_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/115_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/115_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/115_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/116_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/116_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/116_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/116_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/116_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/116_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/116_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/116_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/117_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/117_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/117_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/117_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/117_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/117_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/117_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/117_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/118_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/118_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/118_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/118_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/118_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/118_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/118_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/118_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/119_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/119_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/119_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/119_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/119_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/119_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/119_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/119_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/120_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/120_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/120_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/120_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/120_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/120_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/120_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/120_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/121_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/121_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/121_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/121_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/121_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/121_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/121_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/121_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/122_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/122_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/122_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/122_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/122_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/122_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/122_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/122_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/123_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/123_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/123_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/123_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/123_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/123_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/123_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/123_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/124_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/124_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/124_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/124_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/124_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/124_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/124_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/124_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/125_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/125_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/125_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/125_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/125_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/125_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/125_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/125_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/126_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/126_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/126_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/126_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/126_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/126_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/126_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/126_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/32_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/32_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/32_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/32_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/32_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/32_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/32_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/32_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/33_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/33_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/33_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/33_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/33_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/33_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/33_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/33_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/34_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/34_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/34_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/34_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/34_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/34_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/34_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/34_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/35_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/35_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/35_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/35_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/35_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/35_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/35_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/35_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/36_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/36_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/36_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/36_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/36_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/36_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/36_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/36_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/37_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/37_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/37_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/37_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/37_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/37_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/37_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/37_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/38_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/38_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/38_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/38_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/38_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/38_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/38_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/38_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/39_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/39_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/39_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/39_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/39_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/39_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/39_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/39_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/40_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/40_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/40_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/40_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/40_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/40_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/40_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/40_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/41_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/41_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/41_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/41_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/41_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/41_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/41_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/41_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/42_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/42_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/42_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/42_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/42_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/42_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/42_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/42_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/43_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/43_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/43_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/43_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/43_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/43_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/43_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/43_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/44_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/44_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/44_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/44_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/44_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/44_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/44_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/44_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/45_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/45_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/45_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/45_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/45_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/45_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/45_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/45_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/46_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/46_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/46_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/46_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/46_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/46_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/46_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/46_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/47_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/47_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/47_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/47_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/47_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/47_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/47_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/47_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/48_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/48_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/48_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/48_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/48_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/48_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/48_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/48_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/49_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/49_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/49_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/49_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/49_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/49_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/49_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/49_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/50_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/50_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/50_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/50_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/50_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/50_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/50_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/50_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/51_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/51_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/51_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/51_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/51_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/51_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/51_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/51_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/52_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/52_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/52_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/52_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/52_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/52_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/52_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/52_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/53_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/53_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/53_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/53_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/53_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/53_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/53_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/53_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/54_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/54_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/54_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/54_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/54_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/54_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/54_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/54_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/55_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/55_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/55_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/55_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/55_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/55_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/55_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/55_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/56_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/56_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/56_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/56_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/56_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/56_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/56_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/56_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/57_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/57_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/57_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/57_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/57_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/57_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/57_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/57_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/58_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/58_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/58_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/58_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/58_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/58_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/58_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/58_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/59_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/59_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/59_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/59_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/59_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/59_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/59_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/59_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/60_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/60_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/60_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/60_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/60_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/60_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/60_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/60_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/61_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/61_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/61_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/61_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/61_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/61_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/61_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/61_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/62_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/62_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/62_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/62_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/62_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/62_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/62_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/62_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/63_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/63_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/63_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/63_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/63_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/63_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/63_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/63_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/64_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/64_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/64_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/64_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/64_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/64_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/64_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/64_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/65_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/65_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/65_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/65_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/65_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/65_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/65_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/65_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/66_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/66_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/66_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/66_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/66_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/66_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/66_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/66_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/67_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/67_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/67_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/67_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/67_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/67_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/67_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/67_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/68_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/68_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/68_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/68_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/68_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/68_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/68_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/68_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/69_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/69_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/69_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/69_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/69_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/69_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/69_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/69_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/70_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/70_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/70_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/70_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/70_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/70_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/70_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/70_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/71_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/71_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/71_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/71_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/71_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/71_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/71_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/71_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/72_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/72_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/72_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/72_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/72_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/72_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/72_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/72_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/73_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/73_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/73_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/73_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/73_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/73_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/73_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/73_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/74_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/74_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/74_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/74_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/74_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/74_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/74_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/74_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/75_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/75_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/75_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/75_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/75_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/75_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/75_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/75_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/76_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/76_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/76_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/76_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/76_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/76_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/76_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/76_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/77_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/77_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/77_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/77_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/77_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/77_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/77_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/77_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/78_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/78_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/78_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/78_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/78_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/78_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/78_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/78_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/79_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/79_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/79_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/79_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/79_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/79_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/79_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/79_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/80_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/80_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/80_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/80_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/80_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/80_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/80_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/80_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/81_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/81_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/81_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/81_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/81_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/81_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/81_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/81_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/82_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/82_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/82_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/82_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/82_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/82_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/82_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/82_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/83_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/83_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/83_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/83_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/83_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/83_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/83_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/83_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/84_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/84_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/84_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/84_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/84_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/84_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/84_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/84_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/85_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/85_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/85_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/85_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/85_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/85_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/85_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/85_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/86_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/86_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/86_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/86_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/86_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/86_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/86_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/86_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/87_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/87_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/87_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/87_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/87_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/87_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/87_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/87_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/88_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/88_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/88_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/88_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/88_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/88_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/88_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/88_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/89_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/89_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/89_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/89_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/89_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/89_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/89_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/89_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/90_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/90_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/90_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/90_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/90_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/90_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/90_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/90_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/91_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/91_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/91_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/91_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/91_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/91_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/91_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/91_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/92_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/92_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/92_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/92_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/92_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/92_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/92_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/92_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/93_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/93_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/93_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/93_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/93_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/93_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/93_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/93_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/94_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/94_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/94_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/94_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/94_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/94_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/94_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/94_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/95_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/95_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/95_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/95_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/95_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/95_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/95_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/95_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/96_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/96_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/96_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/96_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/96_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/96_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/96_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/96_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/97_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/97_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/97_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/97_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/97_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/97_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/97_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/97_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/98_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/98_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/98_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/98_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/98_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/98_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/98_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/98_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/99_0.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/99_1.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/99_2.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/99_3.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/99_4.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/99_5.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/99_6.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/data/labels/99_7.png +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/yolo-image.cpp +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/examples/yolo/yolo-image.h +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/src/ggml-cuda/acc.cuh +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/src/ggml-cuda/arange.cu +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/src/ggml-cuda/arange.cuh +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/src/ggml-cuda/clamp.cuh +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/src/ggml-cuda/concat.cuh +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/src/ggml-cuda/diagmask.cu +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/src/ggml-cuda/diagmask.cuh +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/src/ggml-cuda/pad.cuh +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/src/ggml-cuda/pool2d.cu +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/src/ggml-cuda/pool2d.cuh +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/src/ggml-cuda/scale.cuh +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/src/ggml-cuda/tsembd.cuh +0 -0
- {ggml_python-0.0.36 → ggml_python-0.0.38}/vendor/ggml/src/ggml-cuda/upscale.cuh +0 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
name: Lint
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
push:
|
|
8
|
+
branches:
|
|
9
|
+
- main
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
ruff:
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v4
|
|
16
|
+
|
|
17
|
+
- name: Set up Python
|
|
18
|
+
uses: actions/setup-python@v5
|
|
19
|
+
with:
|
|
20
|
+
python-version: "3.12"
|
|
21
|
+
|
|
22
|
+
- name: Install Ruff
|
|
23
|
+
run: python -m pip install "ruff>=0.15.7"
|
|
24
|
+
|
|
25
|
+
- name: Lint with Ruff
|
|
26
|
+
run: python -m ruff check ggml tests
|
|
27
|
+
|
|
28
|
+
- name: Check formatting with Ruff
|
|
29
|
+
run: python -m ruff format --check --exclude ggml/ggml.py ggml tests
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
name: Tests
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
push:
|
|
8
|
+
branches:
|
|
9
|
+
- main
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
build-linux:
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
strategy:
|
|
15
|
+
matrix:
|
|
16
|
+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
|
17
|
+
|
|
18
|
+
steps:
|
|
19
|
+
- uses: actions/checkout@v4
|
|
20
|
+
with:
|
|
21
|
+
submodules: "recursive"
|
|
22
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
23
|
+
uses: actions/setup-python@v5
|
|
24
|
+
with:
|
|
25
|
+
python-version: ${{ matrix.python-version }}
|
|
26
|
+
cache: "pip"
|
|
27
|
+
- name: Install dependencies
|
|
28
|
+
run: |
|
|
29
|
+
python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools
|
|
30
|
+
python3 -m pip install \
|
|
31
|
+
--verbose \
|
|
32
|
+
--config-settings cmake.args='-DCMAKE_BUILD_TYPE=Debug;-DCMAKE_CXX_FLAGS=-g3;-DCMAKE_C_FLAGS=-g3' \
|
|
33
|
+
--config-settings cmake.verbose=true \
|
|
34
|
+
--config-settings logging.level=INFO \
|
|
35
|
+
--config-settings install.strip=false \
|
|
36
|
+
--editable .
|
|
37
|
+
- name: Test with pytest
|
|
38
|
+
run: |
|
|
39
|
+
python -m pytest -s -vvvv
|
|
40
|
+
|
|
41
|
+
build-windows:
|
|
42
|
+
runs-on: windows-latest
|
|
43
|
+
strategy:
|
|
44
|
+
matrix:
|
|
45
|
+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
|
46
|
+
|
|
47
|
+
steps:
|
|
48
|
+
- uses: actions/checkout@v4
|
|
49
|
+
with:
|
|
50
|
+
submodules: "recursive"
|
|
51
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
52
|
+
uses: actions/setup-python@v5
|
|
53
|
+
with:
|
|
54
|
+
python-version: ${{ matrix.python-version }}
|
|
55
|
+
cache: "pip"
|
|
56
|
+
|
|
57
|
+
- name: Install dependencies
|
|
58
|
+
run: |
|
|
59
|
+
python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools
|
|
60
|
+
python3 -m pip install --verbose --config-settings cmake.args='-DCMAKE_BUILD_TYPE=Debug;-DCMAKE_CXX_FLAGS=-g3;-DCMAKE_C_FLAGS=-g3' --config-settings cmake.verbose=true --config-settings logging.level=INFO --config-settings install.strip=false --editable .
|
|
61
|
+
- name: Test with pytest
|
|
62
|
+
run: |
|
|
63
|
+
python -m pytest -s -vvvv
|
|
64
|
+
|
|
65
|
+
build-macos:
|
|
66
|
+
runs-on: macos-15
|
|
67
|
+
strategy:
|
|
68
|
+
matrix:
|
|
69
|
+
python-version: ["3.9", "3.10", "3.11", "3.12"]
|
|
70
|
+
|
|
71
|
+
steps:
|
|
72
|
+
- uses: actions/checkout@v4
|
|
73
|
+
with:
|
|
74
|
+
submodules: "recursive"
|
|
75
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
76
|
+
uses: actions/setup-python@v5
|
|
77
|
+
with:
|
|
78
|
+
python-version: ${{ matrix.python-version }}
|
|
79
|
+
cache: "pip"
|
|
80
|
+
- name: System Info
|
|
81
|
+
run: |
|
|
82
|
+
uname -a
|
|
83
|
+
sysctl -n machdep.cpu.brand_string
|
|
84
|
+
python3 -c "import platform; print(platform.machine(), platform.architecture())"
|
|
85
|
+
- name: Install dependencies
|
|
86
|
+
run: |
|
|
87
|
+
python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools
|
|
88
|
+
python3 -m pip install \
|
|
89
|
+
--verbose \
|
|
90
|
+
--config-settings cmake.args='-DCMAKE_BUILD_TYPE=Debug;-DCMAKE_CXX_FLAGS=-g3;-DCMAKE_C_FLAGS=-g3;-DGGML_NATIVE=off' \
|
|
91
|
+
--config-settings cmake.verbose=true \
|
|
92
|
+
--config-settings logging.level=INFO \
|
|
93
|
+
--config-settings install.strip=false \
|
|
94
|
+
--editable .
|
|
95
|
+
- name: Test with pytest
|
|
96
|
+
run: |
|
|
97
|
+
python -m pytest -s -vvvv
|
|
98
|
+
|
|
99
|
+
build-macos-intel:
|
|
100
|
+
runs-on: macos-15-intel
|
|
101
|
+
steps:
|
|
102
|
+
- uses: actions/checkout@v4
|
|
103
|
+
with:
|
|
104
|
+
submodules: "recursive"
|
|
105
|
+
- name: Set up Python 3.9
|
|
106
|
+
uses: actions/setup-python@v5
|
|
107
|
+
with:
|
|
108
|
+
python-version: "3.9"
|
|
109
|
+
cache: "pip"
|
|
110
|
+
- name: System Info
|
|
111
|
+
run: |
|
|
112
|
+
uname -a
|
|
113
|
+
sysctl -n machdep.cpu.brand_string
|
|
114
|
+
python3 -c "import platform; print(platform.machine(), platform.architecture())"
|
|
115
|
+
- name: Install dependencies
|
|
116
|
+
run: |
|
|
117
|
+
python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools
|
|
118
|
+
python3 -m pip install \
|
|
119
|
+
--verbose \
|
|
120
|
+
--config-settings cmake.args='-DCMAKE_BUILD_TYPE=Debug;-DCMAKE_CXX_FLAGS=-g3;-DCMAKE_C_FLAGS=-g3;-DGGML_NATIVE=off' \
|
|
121
|
+
--config-settings cmake.verbose=true \
|
|
122
|
+
--config-settings logging.level=INFO \
|
|
123
|
+
--config-settings install.strip=false \
|
|
124
|
+
--editable .
|
|
125
|
+
- name: Test with pytest
|
|
126
|
+
run: |
|
|
127
|
+
python -m pytest -s -vvvv
|
|
128
|
+
|
|
129
|
+
build-macos-metal:
|
|
130
|
+
runs-on: macos-15
|
|
131
|
+
|
|
132
|
+
steps:
|
|
133
|
+
- uses: actions/checkout@v4
|
|
134
|
+
with:
|
|
135
|
+
submodules: "recursive"
|
|
136
|
+
- name: Set up Python
|
|
137
|
+
uses: actions/setup-python@v5
|
|
138
|
+
with:
|
|
139
|
+
python-version: "3.9"
|
|
140
|
+
cache: "pip"
|
|
141
|
+
- name: System Info
|
|
142
|
+
run: |
|
|
143
|
+
uname -a
|
|
144
|
+
sysctl -n machdep.cpu.brand_string
|
|
145
|
+
python3 -c "import platform; print(platform.machine(), platform.architecture())"
|
|
146
|
+
- name: Install dependencies
|
|
147
|
+
run: |
|
|
148
|
+
python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools
|
|
149
|
+
python3 -m pip install \
|
|
150
|
+
--verbose \
|
|
151
|
+
--config-settings cmake.args='-DCMAKE_BUILD_TYPE=Debug;-DCMAKE_CXX_FLAGS=-g3;-DCMAKE_C_FLAGS=-g3;-DGGML_NATIVE=off;-DGGML_METAL=On' \
|
|
152
|
+
--config-settings cmake.verbose=true \
|
|
153
|
+
--config-settings logging.level=INFO \
|
|
154
|
+
--config-settings install.strip=false \
|
|
155
|
+
--editable .
|
|
156
|
+
- name: Test with pytest
|
|
157
|
+
run: |
|
|
158
|
+
python -m pytest -s -vvvv
|
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
name: Wheels CUDA
|
|
2
|
+
|
|
3
|
+
on: workflow_dispatch
|
|
4
|
+
|
|
5
|
+
permissions:
|
|
6
|
+
contents: write
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
define_matrix:
|
|
10
|
+
name: Define Build Matrix
|
|
11
|
+
runs-on: ubuntu-22.04
|
|
12
|
+
outputs:
|
|
13
|
+
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
|
14
|
+
defaults:
|
|
15
|
+
run:
|
|
16
|
+
shell: pwsh
|
|
17
|
+
|
|
18
|
+
steps:
|
|
19
|
+
- name: Define Job Output
|
|
20
|
+
id: set-matrix
|
|
21
|
+
run: |
|
|
22
|
+
$matrix = @{
|
|
23
|
+
'os' = @('ubuntu-22.04', 'windows-2022')
|
|
24
|
+
# wheel.py-api = "py3" makes the CUDA wheel interpreter-agnostic,
|
|
25
|
+
# so one builder per toolkit version is sufficient.
|
|
26
|
+
'pyver' = @("3.9")
|
|
27
|
+
'cuda' = @("11.8.0", "12.1.1", "12.2.2", "12.3.2", "12.4.1", "12.5.1", "13.0.2", "13.2.1")
|
|
28
|
+
'releasetag' = @("basic")
|
|
29
|
+
'exclude' = @(
|
|
30
|
+
@{ 'os' = 'windows-2022'; 'cuda' = '12.1.1' },
|
|
31
|
+
@{ 'os' = 'windows-2022'; 'cuda' = '12.2.2' },
|
|
32
|
+
@{ 'os' = 'windows-2022'; 'cuda' = '12.3.2' }
|
|
33
|
+
)
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
$matrixOut = ConvertTo-Json $matrix -Compress
|
|
37
|
+
Write-Output ('matrix=' + $matrixOut) >> $env:GITHUB_OUTPUT
|
|
38
|
+
|
|
39
|
+
build_wheels:
|
|
40
|
+
name: Build Wheel ${{ matrix.os }} ${{ matrix.pyver }} ${{ matrix.cuda }} ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }}
|
|
41
|
+
needs: define_matrix
|
|
42
|
+
runs-on: ${{ matrix.os }}
|
|
43
|
+
strategy:
|
|
44
|
+
matrix: ${{ fromJSON(needs.define_matrix.outputs.matrix) }}
|
|
45
|
+
defaults:
|
|
46
|
+
run:
|
|
47
|
+
shell: pwsh
|
|
48
|
+
env:
|
|
49
|
+
CUDAVER: ${{ matrix.cuda }}
|
|
50
|
+
AVXVER: ${{ matrix.releasetag }}
|
|
51
|
+
|
|
52
|
+
steps:
|
|
53
|
+
- name: Set up MSVC for CUDA 11.8
|
|
54
|
+
if: runner.os == 'Windows' && matrix.cuda == '11.8.0'
|
|
55
|
+
uses: ilammy/msvc-dev-cmd@v1
|
|
56
|
+
with:
|
|
57
|
+
arch: x64
|
|
58
|
+
toolset: 14.29
|
|
59
|
+
|
|
60
|
+
- name: Set up MSVC
|
|
61
|
+
if: runner.os == 'Windows' && matrix.cuda != '11.8.0'
|
|
62
|
+
uses: ilammy/msvc-dev-cmd@v1
|
|
63
|
+
with:
|
|
64
|
+
arch: x64
|
|
65
|
+
|
|
66
|
+
- uses: actions/checkout@v4
|
|
67
|
+
with:
|
|
68
|
+
submodules: "recursive"
|
|
69
|
+
|
|
70
|
+
- uses: actions/setup-python@v5
|
|
71
|
+
with:
|
|
72
|
+
python-version: ${{ matrix.pyver }}
|
|
73
|
+
cache: "pip"
|
|
74
|
+
|
|
75
|
+
- name: Setup Mamba
|
|
76
|
+
uses: conda-incubator/setup-miniconda@v3.1.0
|
|
77
|
+
with:
|
|
78
|
+
activate-environment: "ggml"
|
|
79
|
+
python-version: ${{ matrix.pyver }}
|
|
80
|
+
miniforge-version: latest
|
|
81
|
+
add-pip-as-python-dependency: true
|
|
82
|
+
auto-activate-base: false
|
|
83
|
+
|
|
84
|
+
- name: Install Dependencies
|
|
85
|
+
env:
|
|
86
|
+
MAMBA_DOWNLOAD_FAILFAST: "0"
|
|
87
|
+
MAMBA_NO_LOW_SPEED_LIMIT: "1"
|
|
88
|
+
run: |
|
|
89
|
+
$cudaVersion = $env:CUDAVER
|
|
90
|
+
$cudaChannel = "nvidia/label/cuda-$cudaVersion"
|
|
91
|
+
if ($cudaVersion -eq '11.8.0') {
|
|
92
|
+
if ($IsLinux) {
|
|
93
|
+
$cudaPackages = @(
|
|
94
|
+
"${cudaChannel}::cuda-nvcc_linux-64=11.8.0",
|
|
95
|
+
"${cudaChannel}::cuda-cccl=11.8.89",
|
|
96
|
+
"${cudaChannel}::cuda-cudart=11.8.89",
|
|
97
|
+
"${cudaChannel}::cuda-cudart-dev=11.8.89",
|
|
98
|
+
"${cudaChannel}::cuda-driver-dev=11.8.89",
|
|
99
|
+
"${cudaChannel}::libcublas=11.11.3.6",
|
|
100
|
+
"${cudaChannel}::libcublas-dev=11.11.3.6"
|
|
101
|
+
)
|
|
102
|
+
} elseif ($IsWindows) {
|
|
103
|
+
$cudaPackages = @(
|
|
104
|
+
"${cudaChannel}::cuda-nvcc_win-64=11.8.0",
|
|
105
|
+
"${cudaChannel}::cuda-cccl=11.8.89",
|
|
106
|
+
"${cudaChannel}::cuda-cudart=11.8.89",
|
|
107
|
+
"${cudaChannel}::cuda-cudart-dev=11.8.89",
|
|
108
|
+
"${cudaChannel}::libcublas=11.11.3.6",
|
|
109
|
+
"${cudaChannel}::libcublas-dev=11.11.3.6"
|
|
110
|
+
)
|
|
111
|
+
} else {
|
|
112
|
+
throw 'Unsupported CUDA wheel build platform'
|
|
113
|
+
}
|
|
114
|
+
mamba install -y --channel-priority flexible --override-channels -c $cudaChannel $cudaPackages
|
|
115
|
+
} elseif ($IsLinux) {
|
|
116
|
+
mamba install -y --channel-priority flexible --override-channels -c $cudaChannel "${cudaChannel}::cuda-toolkit=$cudaVersion" "${cudaChannel}::cuda-nvcc_linux-64" "${cudaChannel}::cuda-cccl" "${cudaChannel}::cuda-cudart" "${cudaChannel}::cuda-cudart-dev"
|
|
117
|
+
} elseif ($IsWindows) {
|
|
118
|
+
if ($cudaVersion -like '12.5.*' -or [version]$cudaVersion -ge [version]"13.0") {
|
|
119
|
+
# The Windows 12.5+ toolkit meta-package pulls compiler activation
|
|
120
|
+
# scripts that overflow cmd.exe after MSVC is already initialized.
|
|
121
|
+
mamba install -y --channel-priority flexible --override-channels -c $cudaChannel "${cudaChannel}::cuda-nvcc_win-64" "${cudaChannel}::cuda-cccl" "${cudaChannel}::cuda-libraries-dev=$cudaVersion" "${cudaChannel}::cuda-cudart" "${cudaChannel}::cuda-cudart-dev"
|
|
122
|
+
} else {
|
|
123
|
+
mamba install -y --channel-priority flexible --override-channels -c $cudaChannel "${cudaChannel}::cuda-toolkit=$cudaVersion" "${cudaChannel}::cuda-nvcc_win-64" "${cudaChannel}::cuda-cccl" "${cudaChannel}::cuda-cudart" "${cudaChannel}::cuda-cudart-dev"
|
|
124
|
+
}
|
|
125
|
+
} else {
|
|
126
|
+
throw 'Unsupported CUDA wheel build platform'
|
|
127
|
+
}
|
|
128
|
+
if ($LASTEXITCODE -ne 0) {
|
|
129
|
+
exit $LASTEXITCODE
|
|
130
|
+
}
|
|
131
|
+
if ($IsWindows) {
|
|
132
|
+
python -m pip install build wheel ninja
|
|
133
|
+
} else {
|
|
134
|
+
python -m pip install build wheel
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
- name: Build Wheel
|
|
138
|
+
run: |
|
|
139
|
+
$pathSeparator = if ($IsWindows) { ';' } else { ':' }
|
|
140
|
+
if ($IsWindows) {
|
|
141
|
+
$cudaRoot = Join-Path $env:CONDA_PREFIX 'Library'
|
|
142
|
+
} elseif (Test-Path (Join-Path $env:CONDA_PREFIX 'targets/x86_64-linux/include/cuda_runtime.h')) {
|
|
143
|
+
$cudaRoot = Join-Path $env:CONDA_PREFIX 'targets/x86_64-linux'
|
|
144
|
+
} else {
|
|
145
|
+
$cudaRoot = $env:CONDA_PREFIX
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
$env:CUDA_PATH = $cudaRoot
|
|
149
|
+
$env:CUDA_HOME = $cudaRoot
|
|
150
|
+
$env:CUDAToolkit_ROOT = $cudaRoot
|
|
151
|
+
$env:CUDA_TOOLKIT_ROOT_DIR = $cudaRoot
|
|
152
|
+
$cudaHostCompilerArg = ''
|
|
153
|
+
$cudaRootCmake = $cudaRoot.Replace('\', '/')
|
|
154
|
+
$env:CMAKE_ARGS = "-DCUDAToolkit_ROOT=$cudaRootCmake -DCUDA_TOOLKIT_ROOT_DIR=$cudaRootCmake"
|
|
155
|
+
if ($IsLinux) {
|
|
156
|
+
if ([version]$env:CUDAVER -lt [version]"12.0" -and (Test-Path '/usr/bin/g++-11')) {
|
|
157
|
+
$env:CC = '/usr/bin/gcc-11'
|
|
158
|
+
$env:CXX = '/usr/bin/g++-11'
|
|
159
|
+
$env:CUDAHOSTCXX = '/usr/bin/g++-11'
|
|
160
|
+
$cudaHostCompilerArg = " -DCMAKE_CUDA_HOST_COMPILER=$env:CUDAHOSTCXX"
|
|
161
|
+
} elseif (Test-Path '/usr/bin/g++-12') {
|
|
162
|
+
$env:CC = '/usr/bin/gcc-12'
|
|
163
|
+
$env:CXX = '/usr/bin/g++-12'
|
|
164
|
+
$env:CUDAHOSTCXX = '/usr/bin/g++-12'
|
|
165
|
+
$cudaHostCompilerArg = " -DCMAKE_CUDA_HOST_COMPILER=$env:CUDAHOSTCXX"
|
|
166
|
+
}
|
|
167
|
+
$env:CMAKE_ARGS = "-DCUDAToolkit_ROOT=$cudaRoot -DCUDA_TOOLKIT_ROOT_DIR=$cudaRoot$cudaHostCompilerArg"
|
|
168
|
+
$env:CPATH = "$cudaRoot/include$pathSeparator$env:CPATH"
|
|
169
|
+
$env:CPLUS_INCLUDE_PATH = "$cudaRoot/include$pathSeparator$env:CPLUS_INCLUDE_PATH"
|
|
170
|
+
$env:LIBRARY_PATH = "$cudaRoot/lib$pathSeparator$env:CONDA_PREFIX/lib$pathSeparator$env:LIBRARY_PATH"
|
|
171
|
+
$env:LD_LIBRARY_PATH = "$cudaRoot/lib$pathSeparator$env:CONDA_PREFIX/lib$pathSeparator$env:LD_LIBRARY_PATH"
|
|
172
|
+
} elseif ($IsWindows) {
|
|
173
|
+
$ninjaPath = ((Get-Command ninja -ErrorAction Stop).Source).Replace('\', '/')
|
|
174
|
+
$env:CMAKE_GENERATOR = 'Ninja'
|
|
175
|
+
$env:CMAKE_MAKE_PROGRAM = $ninjaPath
|
|
176
|
+
$env:PATH = "$(Join-Path $cudaRoot 'bin')$pathSeparator$env:PATH"
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
if ($IsWindows) {
|
|
180
|
+
$nvccCandidates = @(
|
|
181
|
+
(Join-Path $cudaRoot 'bin\nvcc.exe'),
|
|
182
|
+
(Join-Path $env:CONDA_PREFIX 'Library\bin\nvcc.exe'),
|
|
183
|
+
(Join-Path $env:CONDA_PREFIX 'bin\nvcc.exe')
|
|
184
|
+
)
|
|
185
|
+
} else {
|
|
186
|
+
$nvccCandidates = @(
|
|
187
|
+
(Join-Path $env:CONDA_PREFIX 'bin/nvcc'),
|
|
188
|
+
(Join-Path $env:CONDA_PREFIX 'targets/x86_64-linux/bin/nvcc')
|
|
189
|
+
)
|
|
190
|
+
}
|
|
191
|
+
$nvccPath = $nvccCandidates | Where-Object { Test-Path $_ } | Select-Object -First 1
|
|
192
|
+
if (-not $nvccPath) {
|
|
193
|
+
throw 'Failed to find nvcc in the conda environment'
|
|
194
|
+
}
|
|
195
|
+
$env:CUDACXX = $nvccPath
|
|
196
|
+
$env:PATH = "$(Split-Path $nvccPath)$pathSeparator$env:PATH"
|
|
197
|
+
if ($IsWindows) {
|
|
198
|
+
$nvccPathCmake = $nvccPath.Replace('\', '/')
|
|
199
|
+
$env:CUDACXX = $nvccPathCmake
|
|
200
|
+
$env:CMAKE_ARGS = "-DCMAKE_CUDA_COMPILER=$nvccPathCmake -DCMAKE_CUDA_COMPILER_ARG1=-allow-unsupported-compiler -DCMAKE_MAKE_PROGRAM=$env:CMAKE_MAKE_PROGRAM $env:CMAKE_ARGS"
|
|
201
|
+
}
|
|
202
|
+
$nvccVersion = ((& $nvccPath --version) | Select-String 'release ([0-9]+\.[0-9]+)').Matches[0].Groups[1].Value
|
|
203
|
+
if (-not $nvccVersion) {
|
|
204
|
+
throw 'Failed to detect the installed CUDA toolkit version'
|
|
205
|
+
}
|
|
206
|
+
$cudaTagVersion = $nvccVersion.Replace('.','')
|
|
207
|
+
$env:VERBOSE = '1'
|
|
208
|
+
$cudaArchs = "60-real;61-real;70-real;75-real;80-real;86-real;89-real;90-real;90-virtual"
|
|
209
|
+
if ([version]$nvccVersion -lt [version]"12.0") {
|
|
210
|
+
# CUDA 11.8 cannot compile ggml's Hopper PDL device calls.
|
|
211
|
+
$cudaArchs = "60-real;61-real;70-real;75-real;80-real;86-real;89-real"
|
|
212
|
+
} elseif ([version]$nvccVersion -ge [version]"13.0") {
|
|
213
|
+
# CUDA 13 dropped offline compilation support for pre-Turing targets.
|
|
214
|
+
$cudaArchs = "75-real;80-real;86-real;89-real;90-real;90-virtual"
|
|
215
|
+
}
|
|
216
|
+
# Build real cubins for the supported GPUs and keep one
|
|
217
|
+
# forward-compatible PTX target instead of embedding PTX for every SM.
|
|
218
|
+
$env:CMAKE_ARGS = "-DGGML_CUDA_FORCE_MMQ=ON -DGGML_CUDA=on -DCMAKE_CUDA_ARCHITECTURES=$cudaArchs -DCMAKE_CUDA_FLAGS=-allow-unsupported-compiler -DCMAKE_CUDA_FLAGS_INIT=-allow-unsupported-compiler $env:CMAKE_ARGS"
|
|
219
|
+
$env:CMAKE_ARGS = $env:CMAKE_ARGS + ' -DGGML_AVX2=off -DGGML_FMA=off -DGGML_F16C=off'
|
|
220
|
+
if ($env:AVXVER -eq 'basic') {
|
|
221
|
+
$env:CMAKE_ARGS = $env:CMAKE_ARGS + ' -DGGML_AVX=off'
|
|
222
|
+
}
|
|
223
|
+
python -m build --wheel
|
|
224
|
+
# Publish tags that reflect the actual installed toolkit version.
|
|
225
|
+
Write-Output "CUDA_VERSION=$cudaTagVersion" >> $env:GITHUB_ENV
|
|
226
|
+
|
|
227
|
+
- uses: softprops/action-gh-release@v2
|
|
228
|
+
if: startsWith(github.ref, 'refs/tags/')
|
|
229
|
+
with:
|
|
230
|
+
files: dist/*
|
|
231
|
+
# Set tag_name to <tag>-cu<cuda_version>.
|
|
232
|
+
tag_name: ${{ github.ref_name }}-cu${{ env.CUDA_VERSION }}
|
|
233
|
+
env:
|
|
234
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
name: Wheels Index
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
# Trigger on any new release
|
|
5
|
+
release:
|
|
6
|
+
types: [published]
|
|
7
|
+
|
|
8
|
+
# Allows you to run this workflow manually from the Actions tab
|
|
9
|
+
workflow_dispatch:
|
|
10
|
+
|
|
11
|
+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
12
|
+
permissions:
|
|
13
|
+
contents: read
|
|
14
|
+
pages: write
|
|
15
|
+
id-token: write
|
|
16
|
+
|
|
17
|
+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
|
18
|
+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
|
19
|
+
concurrency:
|
|
20
|
+
group: "pages"
|
|
21
|
+
cancel-in-progress: false
|
|
22
|
+
|
|
23
|
+
jobs:
|
|
24
|
+
# Single deploy job since we're just deploying
|
|
25
|
+
deploy:
|
|
26
|
+
environment:
|
|
27
|
+
name: github-pages
|
|
28
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
|
29
|
+
runs-on: ubuntu-latest
|
|
30
|
+
steps:
|
|
31
|
+
- name: Checkout
|
|
32
|
+
uses: actions/checkout@v4
|
|
33
|
+
- name: Setup Pages
|
|
34
|
+
uses: actions/configure-pages@v5
|
|
35
|
+
- name: Build
|
|
36
|
+
run: |
|
|
37
|
+
./scripts/releases-to-pep-503.sh index/whl/cpu '^[v]?[0-9]+\.[0-9]+\.[0-9]+$'
|
|
38
|
+
./scripts/releases-to-pep-503.sh index/whl/cu118 '^[v]?[0-9]+\.[0-9]+\.[0-9]+-cu118$'
|
|
39
|
+
./scripts/releases-to-pep-503.sh index/whl/cu121 '^[v]?[0-9]+\.[0-9]+\.[0-9]+-cu121$'
|
|
40
|
+
./scripts/releases-to-pep-503.sh index/whl/cu122 '^[v]?[0-9]+\.[0-9]+\.[0-9]+-cu122$'
|
|
41
|
+
./scripts/releases-to-pep-503.sh index/whl/cu123 '^[v]?[0-9]+\.[0-9]+\.[0-9]+-cu123$'
|
|
42
|
+
./scripts/releases-to-pep-503.sh index/whl/cu124 '^[v]?[0-9]+\.[0-9]+\.[0-9]+-cu124$'
|
|
43
|
+
./scripts/releases-to-pep-503.sh index/whl/cu125 '^[v]?[0-9]+\.[0-9]+\.[0-9]+-cu125$'
|
|
44
|
+
./scripts/releases-to-pep-503.sh index/whl/cu130 '^[v]?[0-9]+\.[0-9]+\.[0-9]+-cu130$'
|
|
45
|
+
./scripts/releases-to-pep-503.sh index/whl/cu132 '^[v]?[0-9]+\.[0-9]+\.[0-9]+-cu132$'
|
|
46
|
+
./scripts/releases-to-pep-503.sh index/whl/metal '^[v]?[0-9]+\.[0-9]+\.[0-9]+-metal$'
|
|
47
|
+
- name: Upload artifact
|
|
48
|
+
uses: actions/upload-pages-artifact@v3
|
|
49
|
+
with:
|
|
50
|
+
# Upload entire repository
|
|
51
|
+
path: "index"
|
|
52
|
+
- name: Deploy to GitHub Pages
|
|
53
|
+
id: deployment
|
|
54
|
+
uses: actions/deploy-pages@v4
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
name: Wheels Metal
|
|
2
|
+
|
|
3
|
+
on: workflow_dispatch
|
|
4
|
+
|
|
5
|
+
permissions:
|
|
6
|
+
contents: write
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
build_wheels:
|
|
10
|
+
name: Build wheels on ${{ matrix.os }}
|
|
11
|
+
runs-on: ${{ matrix.os }}
|
|
12
|
+
strategy:
|
|
13
|
+
matrix:
|
|
14
|
+
os: [macos-14, macos-15]
|
|
15
|
+
|
|
16
|
+
steps:
|
|
17
|
+
- uses: actions/checkout@v4
|
|
18
|
+
with:
|
|
19
|
+
submodules: "recursive"
|
|
20
|
+
|
|
21
|
+
# Used to host cibuildwheel.
|
|
22
|
+
- uses: actions/setup-python@v5
|
|
23
|
+
with:
|
|
24
|
+
python-version: "3.12"
|
|
25
|
+
cache: "pip"
|
|
26
|
+
|
|
27
|
+
- name: Build wheels
|
|
28
|
+
uses: pypa/cibuildwheel@v2.22.0
|
|
29
|
+
env:
|
|
30
|
+
CIBW_REPAIR_WHEEL_COMMAND: ""
|
|
31
|
+
CIBW_ARCHS: "arm64"
|
|
32
|
+
CIBW_ENVIRONMENT: CMAKE_ARGS="-DCMAKE_OSX_ARCHITECTURES=arm64 -DCMAKE_APPLE_SILICON_PROCESSOR=arm64 -DGGML_NATIVE=off -DGGML_METAL=on -DCMAKE_CROSSCOMPILING=ON"
|
|
33
|
+
# The release wheel is tagged py3-none, so one build covers all
|
|
34
|
+
# supported Python versions and avoids duplicate wheel names.
|
|
35
|
+
CIBW_BUILD: "cp39-*"
|
|
36
|
+
with:
|
|
37
|
+
package-dir: .
|
|
38
|
+
output-dir: wheelhouse
|
|
39
|
+
|
|
40
|
+
- uses: actions/upload-artifact@v4
|
|
41
|
+
with:
|
|
42
|
+
name: wheels-mac_${{ matrix.os }}
|
|
43
|
+
path: ./wheelhouse/*.whl
|
|
44
|
+
|
|
45
|
+
release:
|
|
46
|
+
name: Release
|
|
47
|
+
needs: [build_wheels]
|
|
48
|
+
if: startsWith(github.ref, 'refs/tags/')
|
|
49
|
+
runs-on: ubuntu-latest
|
|
50
|
+
|
|
51
|
+
steps:
|
|
52
|
+
- uses: actions/download-artifact@v4
|
|
53
|
+
with:
|
|
54
|
+
merge-multiple: true
|
|
55
|
+
path: dist
|
|
56
|
+
|
|
57
|
+
- uses: softprops/action-gh-release@v2
|
|
58
|
+
with:
|
|
59
|
+
files: dist/*
|
|
60
|
+
# Set release name to <tag>-metal.
|
|
61
|
+
tag_name: ${{ github.ref_name }}-metal
|
|
62
|
+
env:
|
|
63
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
name: Wheels
|
|
2
|
+
|
|
3
|
+
on: workflow_dispatch
|
|
4
|
+
|
|
5
|
+
permissions:
|
|
6
|
+
contents: write
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
build_wheels:
|
|
10
|
+
name: Build wheels on ${{ matrix.os }}
|
|
11
|
+
runs-on: ${{ matrix.os }}
|
|
12
|
+
strategy:
|
|
13
|
+
matrix:
|
|
14
|
+
os: [ubuntu-22.04, windows-2022, macos-14, macos-15]
|
|
15
|
+
|
|
16
|
+
steps:
|
|
17
|
+
- uses: actions/checkout@v4
|
|
18
|
+
with:
|
|
19
|
+
submodules: "recursive"
|
|
20
|
+
|
|
21
|
+
# Used to host cibuildwheel.
|
|
22
|
+
- uses: actions/setup-python@v5
|
|
23
|
+
with:
|
|
24
|
+
python-version: "3.9"
|
|
25
|
+
|
|
26
|
+
- name: Build wheels
|
|
27
|
+
uses: pypa/cibuildwheel@v2.22.0
|
|
28
|
+
env:
|
|
29
|
+
# Keep repair disabled by default for non-Linux platforms in this job.
|
|
30
|
+
CIBW_REPAIR_WHEEL_COMMAND: ""
|
|
31
|
+
# Linux needs auditwheel repair so manylinux and musllinux wheels are
|
|
32
|
+
# published with distinct platform tags instead of generic linux tags.
|
|
33
|
+
CIBW_REPAIR_WHEEL_COMMAND_LINUX: "LD_LIBRARY_PATH=/project/ggml/lib auditwheel repair -w {dest_dir} {wheel}"
|
|
34
|
+
# The release wheel is tagged py3-none, so one build per platform
|
|
35
|
+
# covers all supported Python versions and avoids duplicate names.
|
|
36
|
+
CIBW_BUILD_LINUX: "cp38-*"
|
|
37
|
+
CIBW_BUILD_MACOS: "cp39-*"
|
|
38
|
+
CIBW_BUILD_WINDOWS: "cp39-*"
|
|
39
|
+
# Skip cibuildwheel's default i686 sidecar and keep release wheels on
|
|
40
|
+
# a portable CPU baseline instead of the hosted runner's native flags.
|
|
41
|
+
CIBW_ARCHS_LINUX: "auto64"
|
|
42
|
+
CIBW_ARCHS_WINDOWS: "AMD64"
|
|
43
|
+
CIBW_ENVIRONMENT_LINUX: CMAKE_ARGS="-DGGML_NATIVE=off -DGGML_METAL=OFF"
|
|
44
|
+
CIBW_ENVIRONMENT_MACOS: CMAKE_ARGS="-DGGML_NATIVE=off -DGGML_METAL=OFF"
|
|
45
|
+
CIBW_ENVIRONMENT_WINDOWS: CMAKE_ARGS="-DGGML_NATIVE=off"
|
|
46
|
+
with:
|
|
47
|
+
package-dir: .
|
|
48
|
+
output-dir: wheelhouse
|
|
49
|
+
|
|
50
|
+
- uses: actions/upload-artifact@v4
|
|
51
|
+
with:
|
|
52
|
+
name: wheels-${{ matrix.os }}
|
|
53
|
+
path: ./wheelhouse/*.whl
|
|
54
|
+
|
|
55
|
+
build_wheels_arm64:
|
|
56
|
+
name: Build arm64 wheels
|
|
57
|
+
runs-on: ubuntu-24.04-arm
|
|
58
|
+
steps:
|
|
59
|
+
- uses: actions/checkout@v4
|
|
60
|
+
with:
|
|
61
|
+
submodules: "recursive"
|
|
62
|
+
|
|
63
|
+
- name: Build wheels
|
|
64
|
+
uses: pypa/cibuildwheel@v2.22.0
|
|
65
|
+
env:
|
|
66
|
+
CIBW_SKIP: "pp*"
|
|
67
|
+
CIBW_REPAIR_WHEEL_COMMAND: "LD_LIBRARY_PATH=$PWD/ggml/lib auditwheel repair -w {dest_dir} {wheel}"
|
|
68
|
+
CIBW_ARCHS: "aarch64"
|
|
69
|
+
# Keep native arm64 builds on a portable CPU baseline instead of
|
|
70
|
+
# tuning wheels to the hosted runner.
|
|
71
|
+
CIBW_ENVIRONMENT: CMAKE_ARGS="-DGGML_NATIVE=off -DGGML_METAL=OFF"
|
|
72
|
+
# The release wheel is tagged py3-none, so one build covers all
|
|
73
|
+
# supported Python versions and avoids duplicate wheel names.
|
|
74
|
+
CIBW_BUILD: "cp38-*"
|
|
75
|
+
with:
|
|
76
|
+
output-dir: wheelhouse
|
|
77
|
+
|
|
78
|
+
- name: Upload wheels as artifacts
|
|
79
|
+
uses: actions/upload-artifact@v4
|
|
80
|
+
with:
|
|
81
|
+
name: wheels_arm64
|
|
82
|
+
path: ./wheelhouse/*.whl
|
|
83
|
+
|
|
84
|
+
release:
|
|
85
|
+
name: Release
|
|
86
|
+
needs: [build_wheels, build_wheels_arm64]
|
|
87
|
+
if: startsWith(github.ref, 'refs/tags/')
|
|
88
|
+
runs-on: ubuntu-latest
|
|
89
|
+
|
|
90
|
+
steps:
|
|
91
|
+
- uses: actions/download-artifact@v4
|
|
92
|
+
with:
|
|
93
|
+
merge-multiple: true
|
|
94
|
+
path: dist
|
|
95
|
+
|
|
96
|
+
- uses: softprops/action-gh-release@v2
|
|
97
|
+
with:
|
|
98
|
+
files: dist/*
|
|
99
|
+
env:
|
|
100
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
## [0.0.38] - 2026-06-02
|
|
11
|
+
|
|
12
|
+
- ci: update pre-built wheels to py3-none and add CUDA 11.8-13.2 support
|
|
13
|
+
- feat: Update ggml to ggml-org/ggml@1e33fed3 and sync Python bindings by @abetlen in #100
|