ggml-python 0.0.38__tar.gz → 0.0.40__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.
Files changed (2028) hide show
  1. {ggml_python-0.0.38 → ggml_python-0.0.40}/.github/workflows/lint.yaml +2 -2
  2. {ggml_python-0.0.38 → ggml_python-0.0.40}/.github/workflows/publish.yaml +8 -5
  3. {ggml_python-0.0.38 → ggml_python-0.0.40}/.github/workflows/test.yaml +36 -10
  4. {ggml_python-0.0.38 → ggml_python-0.0.40}/.github/workflows/wheels-cuda.yaml +10 -5
  5. {ggml_python-0.0.38 → ggml_python-0.0.40}/.github/workflows/wheels-index.yaml +16 -8
  6. {ggml_python-0.0.38 → ggml_python-0.0.40}/.github/workflows/wheels-metal.yaml +12 -7
  7. ggml_python-0.0.40/.github/workflows/wheels-rocm.yaml +228 -0
  8. ggml_python-0.0.40/.github/workflows/wheels-vulkan.yaml +128 -0
  9. {ggml_python-0.0.38 → ggml_python-0.0.40}/.github/workflows/wheels.yaml +20 -10
  10. ggml_python-0.0.40/CHANGELOG.md +44 -0
  11. ggml_python-0.0.40/CONTRIBUTING.md +77 -0
  12. {ggml_python-0.0.38 → ggml_python-0.0.40}/PKG-INFO +51 -4
  13. {ggml_python-0.0.38 → ggml_python-0.0.40}/README.md +38 -0
  14. ggml_python-0.0.40/docs/contrib/onnx.md +261 -0
  15. {ggml_python-0.0.38 → ggml_python-0.0.40}/docs/index.md +21 -1
  16. {ggml_python-0.0.38 → ggml_python-0.0.40}/examples/clip/requirements.txt +3 -3
  17. ggml_python-0.0.40/examples/instructor/.gitignore +1 -0
  18. ggml_python-0.0.40/examples/instructor/example.ipynb +175 -0
  19. ggml_python-0.0.40/examples/instructor/pyproject.toml +34 -0
  20. ggml_python-0.0.40/ggml/__init__.py +3 -0
  21. ggml_python-0.0.40/ggml/contrib/onnx.py +14034 -0
  22. {ggml_python-0.0.38 → ggml_python-0.0.40}/ggml/ggml.py +8454 -4919
  23. {ggml_python-0.0.38 → ggml_python-0.0.40}/mkdocs.yml +6 -0
  24. {ggml_python-0.0.38 → ggml_python-0.0.40}/pyproject.toml +13 -3
  25. ggml_python-0.0.40/scripts/get-releases.sh +47 -0
  26. ggml_python-0.0.40/scripts/releases-to-pep-503.sh +108 -0
  27. {ggml_python-0.0.38 → ggml_python-0.0.40}/tests/test_ggml.py +12 -0
  28. ggml_python-0.0.40/tests/test_ggml_onnx.py +3427 -0
  29. ggml_python-0.0.40/tests/test_ggml_onnx_hypothesis.py +2824 -0
  30. ggml_python-0.0.40/vendor/ggml/.gitmodules +0 -0
  31. ggml_python-0.0.38/CHANGELOG.md +0 -13
  32. ggml_python-0.0.38/ggml/__init__.py +0 -3
  33. ggml_python-0.0.38/scripts/releases-to-pep-503.sh +0 -58
  34. {ggml_python-0.0.38 → ggml_python-0.0.40}/.github/dependabot.yaml +0 -0
  35. {ggml_python-0.0.38 → ggml_python-0.0.40}/.gitignore +0 -0
  36. {ggml_python-0.0.38 → ggml_python-0.0.40}/.gitmodules +0 -0
  37. {ggml_python-0.0.38 → ggml_python-0.0.40}/.readthedocs.yaml +0 -0
  38. {ggml_python-0.0.38 → ggml_python-0.0.40}/CMakeLists.txt +0 -0
  39. {ggml_python-0.0.38 → ggml_python-0.0.40}/LICENSE.md +0 -0
  40. {ggml_python-0.0.38 → ggml_python-0.0.40}/Makefile +0 -0
  41. {ggml_python-0.0.38 → ggml_python-0.0.40}/docs/api-reference.md +0 -0
  42. {ggml_python-0.0.38 → ggml_python-0.0.40}/docs/changelog.md +0 -0
  43. {ggml_python-0.0.38 → ggml_python-0.0.40}/examples/clip/README.md +0 -0
  44. {ggml_python-0.0.38 → ggml_python-0.0.40}/examples/clip/convert-pt-to-ggml.py +0 -0
  45. {ggml_python-0.0.38 → ggml_python-0.0.40}/examples/clip/model.py +0 -0
  46. {ggml_python-0.0.38 → ggml_python-0.0.40}/examples/clip/utils.py +0 -0
  47. {ggml_python-0.0.38 → ggml_python-0.0.40}/examples/custom-operators/example_jax.py +0 -0
  48. {ggml_python-0.0.38 → ggml_python-0.0.40}/examples/optimizer/simple.py +0 -0
  49. {ggml_python-0.0.38 → ggml_python-0.0.40}/examples/replit/README.md +0 -0
  50. {ggml_python-0.0.38 → ggml_python-0.0.40}/examples/replit/app.py +0 -0
  51. {ggml_python-0.0.38 → ggml_python-0.0.40}/examples/replit/main.py +0 -0
  52. {ggml_python-0.0.38 → ggml_python-0.0.40}/examples/replit/requirements.txt +0 -0
  53. {ggml_python-0.0.38 → ggml_python-0.0.40}/examples/rpc/main.py +0 -0
  54. {ggml_python-0.0.38 → ggml_python-0.0.40}/examples/rpc/worker.py +0 -0
  55. {ggml_python-0.0.38/tests → ggml_python-0.0.40/ggml/contrib}/__init__.py +0 -0
  56. {ggml_python-0.0.38 → ggml_python-0.0.40}/ggml/py.typed +0 -0
  57. {ggml_python-0.0.38 → ggml_python-0.0.40}/ggml/utils.py +0 -0
  58. /ggml_python-0.0.38/vendor/ggml/.gitmodules → /ggml_python-0.0.40/tests/__init__.py +0 -0
  59. {ggml_python-0.0.38 → ggml_python-0.0.40}/tests/test_ggml_cuda.py +0 -0
  60. {ggml_python-0.0.38 → ggml_python-0.0.40}/tests/test_ggml_metal.py +0 -0
  61. {ggml_python-0.0.38 → ggml_python-0.0.40}/tests/test_utils.py +0 -0
  62. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/.editorconfig +0 -0
  63. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/.github/pull_request_template.md +0 -0
  64. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/.github/workflows/ci.yml +0 -0
  65. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/.github/workflows/release.yml +0 -0
  66. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/.gitignore +0 -0
  67. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/AUTHORS +0 -0
  68. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/CMakeLists.txt +0 -0
  69. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/CONTRIBUTING.md +0 -0
  70. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/LICENSE +0 -0
  71. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/README.md +0 -0
  72. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/ci/run.sh +0 -0
  73. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/cmake/FindNCCL.cmake +0 -0
  74. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/cmake/GitVars.cmake +0 -0
  75. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/cmake/common.cmake +0 -0
  76. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/cmake/ggml-config.cmake.in +0 -0
  77. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/docs/gguf.md +0 -0
  78. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/CMakeLists.txt +0 -0
  79. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/common-ggml.cpp +0 -0
  80. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/common-ggml.h +0 -0
  81. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/common.cpp +0 -0
  82. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/common.h +0 -0
  83. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/gpt-2/CMakeLists.txt +0 -0
  84. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/gpt-2/README.md +0 -0
  85. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/gpt-2/convert-cerebras-to-ggml.py +0 -0
  86. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/gpt-2/convert-ckpt-to-ggml.py +0 -0
  87. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/gpt-2/convert-h5-to-ggml.py +0 -0
  88. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/gpt-2/download-ggml-model.sh +0 -0
  89. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/gpt-2/download-model.sh +0 -0
  90. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/gpt-2/main-alloc.cpp +0 -0
  91. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/gpt-2/main-backend.cpp +0 -0
  92. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/gpt-2/main-batched.cpp +0 -0
  93. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/gpt-2/main-ctx.cpp +0 -0
  94. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/gpt-2/main-sched.cpp +0 -0
  95. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/gpt-2/quantize.cpp +0 -0
  96. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/gpt-j/CMakeLists.txt +0 -0
  97. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/gpt-j/README.md +0 -0
  98. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/gpt-j/convert-h5-to-ggml.py +0 -0
  99. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/gpt-j/download-ggml-model.sh +0 -0
  100. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/gpt-j/download-model.sh +0 -0
  101. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/gpt-j/main.cpp +0 -0
  102. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/gpt-j/quantize.cpp +0 -0
  103. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/magika/CMakeLists.txt +0 -0
  104. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/magika/README.md +0 -0
  105. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/magika/convert.py +0 -0
  106. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/magika/main.cpp +0 -0
  107. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/mnist/.gitignore +0 -0
  108. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/mnist/CMakeLists.txt +0 -0
  109. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/mnist/README.md +0 -0
  110. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/mnist/mnist-common.cpp +0 -0
  111. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/mnist/mnist-common.h +0 -0
  112. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/mnist/mnist-eval.cpp +0 -0
  113. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/mnist/mnist-train-cnn.py +0 -0
  114. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/mnist/mnist-train-fc.py +0 -0
  115. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/mnist/mnist-train.cpp +0 -0
  116. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/mnist/server.py +0 -0
  117. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/perf-metal/CMakeLists.txt +0 -0
  118. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/perf-metal/perf-metal.cpp +0 -0
  119. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/prompts/dolly-v2.txt +0 -0
  120. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/prompts/gpt-2-chinese.txt +0 -0
  121. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/prompts/gpt-2.txt +0 -0
  122. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/prompts/gpt-j.txt +0 -0
  123. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/prompts/gpt-neox-japanese.txt +0 -0
  124. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/prompts/gpt-neox.txt +0 -0
  125. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/prompts/polyglot-ko.txt +0 -0
  126. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/prompts/replit.txt +0 -0
  127. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/prompts/starcoder.txt +0 -0
  128. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/prompts/test-cases.txt +0 -0
  129. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/prompts/tokenize_huggingface.py +0 -0
  130. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/prompts/whisper.txt +0 -0
  131. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/python/README.md +0 -0
  132. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/python/api.h +0 -0
  133. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/python/example_add_quant.py +0 -0
  134. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/python/example_test_all_quants.py +0 -0
  135. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/python/ggml/__init__.py +0 -0
  136. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/python/ggml/__init__.pyi +0 -0
  137. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/python/ggml/cffi.py +0 -0
  138. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/python/ggml/ffi/__init__.pyi +0 -0
  139. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/python/ggml/utils.py +0 -0
  140. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/python/regenerate.py +0 -0
  141. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/python/stubs.py +0 -0
  142. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/python/test_tensor.py +0 -0
  143. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/sam/CMakeLists.txt +0 -0
  144. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/sam/README.md +0 -0
  145. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/sam/convert-pth-to-ggml.py +0 -0
  146. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/sam/example.jpg +0 -0
  147. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/sam/sam.cpp +0 -0
  148. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/simple/CMakeLists.txt +0 -0
  149. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/simple/README.md +0 -0
  150. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/simple/simple-backend.cpp +0 -0
  151. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/simple/simple-ctx.cpp +0 -0
  152. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/stb_image.h +0 -0
  153. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/stb_image_write.h +0 -0
  154. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/test-cmake/CMakeLists.txt +0 -0
  155. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/test-cmake/README.md +0 -0
  156. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/test-cmake/test-cmake.cpp +0 -0
  157. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/CMakeLists.txt +0 -0
  158. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/README.md +0 -0
  159. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/convert-yolov3-tiny.py +0 -0
  160. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/coco.names +0 -0
  161. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/100_0.png +0 -0
  162. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/100_1.png +0 -0
  163. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/100_2.png +0 -0
  164. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/100_3.png +0 -0
  165. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/100_4.png +0 -0
  166. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/100_5.png +0 -0
  167. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/100_6.png +0 -0
  168. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/100_7.png +0 -0
  169. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/101_0.png +0 -0
  170. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/101_1.png +0 -0
  171. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/101_2.png +0 -0
  172. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/101_3.png +0 -0
  173. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/101_4.png +0 -0
  174. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/101_5.png +0 -0
  175. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/101_6.png +0 -0
  176. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/101_7.png +0 -0
  177. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/102_0.png +0 -0
  178. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/102_1.png +0 -0
  179. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/102_2.png +0 -0
  180. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/102_3.png +0 -0
  181. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/102_4.png +0 -0
  182. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/102_5.png +0 -0
  183. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/102_6.png +0 -0
  184. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/102_7.png +0 -0
  185. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/103_0.png +0 -0
  186. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/103_1.png +0 -0
  187. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/103_2.png +0 -0
  188. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/103_3.png +0 -0
  189. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/103_4.png +0 -0
  190. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/103_5.png +0 -0
  191. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/103_6.png +0 -0
  192. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/103_7.png +0 -0
  193. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/104_0.png +0 -0
  194. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/104_1.png +0 -0
  195. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/104_2.png +0 -0
  196. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/104_3.png +0 -0
  197. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/104_4.png +0 -0
  198. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/104_5.png +0 -0
  199. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/104_6.png +0 -0
  200. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/104_7.png +0 -0
  201. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/105_0.png +0 -0
  202. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/105_1.png +0 -0
  203. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/105_2.png +0 -0
  204. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/105_3.png +0 -0
  205. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/105_4.png +0 -0
  206. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/105_5.png +0 -0
  207. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/105_6.png +0 -0
  208. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/105_7.png +0 -0
  209. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/106_0.png +0 -0
  210. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/106_1.png +0 -0
  211. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/106_2.png +0 -0
  212. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/106_3.png +0 -0
  213. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/106_4.png +0 -0
  214. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/106_5.png +0 -0
  215. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/106_6.png +0 -0
  216. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/106_7.png +0 -0
  217. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/107_0.png +0 -0
  218. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/107_1.png +0 -0
  219. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/107_2.png +0 -0
  220. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/107_3.png +0 -0
  221. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/107_4.png +0 -0
  222. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/107_5.png +0 -0
  223. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/107_6.png +0 -0
  224. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/107_7.png +0 -0
  225. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/108_0.png +0 -0
  226. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/108_1.png +0 -0
  227. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/108_2.png +0 -0
  228. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/108_3.png +0 -0
  229. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/108_4.png +0 -0
  230. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/108_5.png +0 -0
  231. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/108_6.png +0 -0
  232. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/108_7.png +0 -0
  233. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/109_0.png +0 -0
  234. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/109_1.png +0 -0
  235. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/109_2.png +0 -0
  236. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/109_3.png +0 -0
  237. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/109_4.png +0 -0
  238. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/109_5.png +0 -0
  239. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/109_6.png +0 -0
  240. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/109_7.png +0 -0
  241. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/110_0.png +0 -0
  242. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/110_1.png +0 -0
  243. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/110_2.png +0 -0
  244. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/110_3.png +0 -0
  245. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/110_4.png +0 -0
  246. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/110_5.png +0 -0
  247. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/110_6.png +0 -0
  248. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/110_7.png +0 -0
  249. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/111_0.png +0 -0
  250. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/111_1.png +0 -0
  251. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/111_2.png +0 -0
  252. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/111_3.png +0 -0
  253. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/111_4.png +0 -0
  254. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/111_5.png +0 -0
  255. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/111_6.png +0 -0
  256. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/111_7.png +0 -0
  257. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/112_0.png +0 -0
  258. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/112_1.png +0 -0
  259. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/112_2.png +0 -0
  260. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/112_3.png +0 -0
  261. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/112_4.png +0 -0
  262. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/112_5.png +0 -0
  263. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/112_6.png +0 -0
  264. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/112_7.png +0 -0
  265. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/113_0.png +0 -0
  266. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/113_1.png +0 -0
  267. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/113_2.png +0 -0
  268. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/113_3.png +0 -0
  269. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/113_4.png +0 -0
  270. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/113_5.png +0 -0
  271. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/113_6.png +0 -0
  272. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/113_7.png +0 -0
  273. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/114_0.png +0 -0
  274. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/114_1.png +0 -0
  275. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/114_2.png +0 -0
  276. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/114_3.png +0 -0
  277. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/114_4.png +0 -0
  278. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/114_5.png +0 -0
  279. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/114_6.png +0 -0
  280. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/114_7.png +0 -0
  281. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/115_0.png +0 -0
  282. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/115_1.png +0 -0
  283. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/115_2.png +0 -0
  284. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/115_3.png +0 -0
  285. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/115_4.png +0 -0
  286. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/115_5.png +0 -0
  287. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/115_6.png +0 -0
  288. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/115_7.png +0 -0
  289. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/116_0.png +0 -0
  290. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/116_1.png +0 -0
  291. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/116_2.png +0 -0
  292. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/116_3.png +0 -0
  293. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/116_4.png +0 -0
  294. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/116_5.png +0 -0
  295. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/116_6.png +0 -0
  296. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/116_7.png +0 -0
  297. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/117_0.png +0 -0
  298. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/117_1.png +0 -0
  299. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/117_2.png +0 -0
  300. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/117_3.png +0 -0
  301. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/117_4.png +0 -0
  302. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/117_5.png +0 -0
  303. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/117_6.png +0 -0
  304. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/117_7.png +0 -0
  305. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/118_0.png +0 -0
  306. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/118_1.png +0 -0
  307. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/118_2.png +0 -0
  308. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/118_3.png +0 -0
  309. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/118_4.png +0 -0
  310. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/118_5.png +0 -0
  311. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/118_6.png +0 -0
  312. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/118_7.png +0 -0
  313. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/119_0.png +0 -0
  314. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/119_1.png +0 -0
  315. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/119_2.png +0 -0
  316. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/119_3.png +0 -0
  317. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/119_4.png +0 -0
  318. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/119_5.png +0 -0
  319. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/119_6.png +0 -0
  320. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/119_7.png +0 -0
  321. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/120_0.png +0 -0
  322. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/120_1.png +0 -0
  323. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/120_2.png +0 -0
  324. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/120_3.png +0 -0
  325. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/120_4.png +0 -0
  326. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/120_5.png +0 -0
  327. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/120_6.png +0 -0
  328. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/120_7.png +0 -0
  329. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/121_0.png +0 -0
  330. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/121_1.png +0 -0
  331. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/121_2.png +0 -0
  332. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/121_3.png +0 -0
  333. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/121_4.png +0 -0
  334. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/121_5.png +0 -0
  335. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/121_6.png +0 -0
  336. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/121_7.png +0 -0
  337. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/122_0.png +0 -0
  338. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/122_1.png +0 -0
  339. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/122_2.png +0 -0
  340. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/122_3.png +0 -0
  341. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/122_4.png +0 -0
  342. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/122_5.png +0 -0
  343. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/122_6.png +0 -0
  344. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/122_7.png +0 -0
  345. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/123_0.png +0 -0
  346. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/123_1.png +0 -0
  347. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/123_2.png +0 -0
  348. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/123_3.png +0 -0
  349. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/123_4.png +0 -0
  350. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/123_5.png +0 -0
  351. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/123_6.png +0 -0
  352. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/123_7.png +0 -0
  353. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/124_0.png +0 -0
  354. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/124_1.png +0 -0
  355. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/124_2.png +0 -0
  356. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/124_3.png +0 -0
  357. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/124_4.png +0 -0
  358. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/124_5.png +0 -0
  359. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/124_6.png +0 -0
  360. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/124_7.png +0 -0
  361. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/125_0.png +0 -0
  362. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/125_1.png +0 -0
  363. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/125_2.png +0 -0
  364. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/125_3.png +0 -0
  365. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/125_4.png +0 -0
  366. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/125_5.png +0 -0
  367. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/125_6.png +0 -0
  368. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/125_7.png +0 -0
  369. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/126_0.png +0 -0
  370. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/126_1.png +0 -0
  371. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/126_2.png +0 -0
  372. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/126_3.png +0 -0
  373. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/126_4.png +0 -0
  374. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/126_5.png +0 -0
  375. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/126_6.png +0 -0
  376. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/126_7.png +0 -0
  377. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/32_0.png +0 -0
  378. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/32_1.png +0 -0
  379. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/32_2.png +0 -0
  380. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/32_3.png +0 -0
  381. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/32_4.png +0 -0
  382. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/32_5.png +0 -0
  383. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/32_6.png +0 -0
  384. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/32_7.png +0 -0
  385. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/33_0.png +0 -0
  386. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/33_1.png +0 -0
  387. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/33_2.png +0 -0
  388. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/33_3.png +0 -0
  389. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/33_4.png +0 -0
  390. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/33_5.png +0 -0
  391. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/33_6.png +0 -0
  392. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/33_7.png +0 -0
  393. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/34_0.png +0 -0
  394. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/34_1.png +0 -0
  395. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/34_2.png +0 -0
  396. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/34_3.png +0 -0
  397. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/34_4.png +0 -0
  398. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/34_5.png +0 -0
  399. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/34_6.png +0 -0
  400. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/34_7.png +0 -0
  401. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/35_0.png +0 -0
  402. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/35_1.png +0 -0
  403. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/35_2.png +0 -0
  404. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/35_3.png +0 -0
  405. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/35_4.png +0 -0
  406. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/35_5.png +0 -0
  407. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/35_6.png +0 -0
  408. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/35_7.png +0 -0
  409. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/36_0.png +0 -0
  410. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/36_1.png +0 -0
  411. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/36_2.png +0 -0
  412. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/36_3.png +0 -0
  413. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/36_4.png +0 -0
  414. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/36_5.png +0 -0
  415. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/36_6.png +0 -0
  416. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/36_7.png +0 -0
  417. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/37_0.png +0 -0
  418. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/37_1.png +0 -0
  419. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/37_2.png +0 -0
  420. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/37_3.png +0 -0
  421. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/37_4.png +0 -0
  422. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/37_5.png +0 -0
  423. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/37_6.png +0 -0
  424. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/37_7.png +0 -0
  425. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/38_0.png +0 -0
  426. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/38_1.png +0 -0
  427. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/38_2.png +0 -0
  428. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/38_3.png +0 -0
  429. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/38_4.png +0 -0
  430. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/38_5.png +0 -0
  431. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/38_6.png +0 -0
  432. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/38_7.png +0 -0
  433. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/39_0.png +0 -0
  434. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/39_1.png +0 -0
  435. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/39_2.png +0 -0
  436. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/39_3.png +0 -0
  437. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/39_4.png +0 -0
  438. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/39_5.png +0 -0
  439. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/39_6.png +0 -0
  440. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/39_7.png +0 -0
  441. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/40_0.png +0 -0
  442. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/40_1.png +0 -0
  443. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/40_2.png +0 -0
  444. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/40_3.png +0 -0
  445. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/40_4.png +0 -0
  446. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/40_5.png +0 -0
  447. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/40_6.png +0 -0
  448. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/40_7.png +0 -0
  449. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/41_0.png +0 -0
  450. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/41_1.png +0 -0
  451. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/41_2.png +0 -0
  452. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/41_3.png +0 -0
  453. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/41_4.png +0 -0
  454. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/41_5.png +0 -0
  455. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/41_6.png +0 -0
  456. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/41_7.png +0 -0
  457. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/42_0.png +0 -0
  458. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/42_1.png +0 -0
  459. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/42_2.png +0 -0
  460. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/42_3.png +0 -0
  461. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/42_4.png +0 -0
  462. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/42_5.png +0 -0
  463. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/42_6.png +0 -0
  464. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/42_7.png +0 -0
  465. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/43_0.png +0 -0
  466. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/43_1.png +0 -0
  467. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/43_2.png +0 -0
  468. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/43_3.png +0 -0
  469. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/43_4.png +0 -0
  470. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/43_5.png +0 -0
  471. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/43_6.png +0 -0
  472. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/43_7.png +0 -0
  473. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/44_0.png +0 -0
  474. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/44_1.png +0 -0
  475. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/44_2.png +0 -0
  476. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/44_3.png +0 -0
  477. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/44_4.png +0 -0
  478. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/44_5.png +0 -0
  479. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/44_6.png +0 -0
  480. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/44_7.png +0 -0
  481. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/45_0.png +0 -0
  482. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/45_1.png +0 -0
  483. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/45_2.png +0 -0
  484. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/45_3.png +0 -0
  485. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/45_4.png +0 -0
  486. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/45_5.png +0 -0
  487. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/45_6.png +0 -0
  488. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/45_7.png +0 -0
  489. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/46_0.png +0 -0
  490. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/46_1.png +0 -0
  491. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/46_2.png +0 -0
  492. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/46_3.png +0 -0
  493. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/46_4.png +0 -0
  494. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/46_5.png +0 -0
  495. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/46_6.png +0 -0
  496. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/46_7.png +0 -0
  497. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/47_0.png +0 -0
  498. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/47_1.png +0 -0
  499. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/47_2.png +0 -0
  500. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/47_3.png +0 -0
  501. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/47_4.png +0 -0
  502. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/47_5.png +0 -0
  503. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/47_6.png +0 -0
  504. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/47_7.png +0 -0
  505. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/48_0.png +0 -0
  506. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/48_1.png +0 -0
  507. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/48_2.png +0 -0
  508. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/48_3.png +0 -0
  509. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/48_4.png +0 -0
  510. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/48_5.png +0 -0
  511. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/48_6.png +0 -0
  512. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/48_7.png +0 -0
  513. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/49_0.png +0 -0
  514. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/49_1.png +0 -0
  515. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/49_2.png +0 -0
  516. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/49_3.png +0 -0
  517. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/49_4.png +0 -0
  518. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/49_5.png +0 -0
  519. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/49_6.png +0 -0
  520. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/49_7.png +0 -0
  521. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/50_0.png +0 -0
  522. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/50_1.png +0 -0
  523. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/50_2.png +0 -0
  524. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/50_3.png +0 -0
  525. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/50_4.png +0 -0
  526. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/50_5.png +0 -0
  527. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/50_6.png +0 -0
  528. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/50_7.png +0 -0
  529. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/51_0.png +0 -0
  530. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/51_1.png +0 -0
  531. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/51_2.png +0 -0
  532. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/51_3.png +0 -0
  533. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/51_4.png +0 -0
  534. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/51_5.png +0 -0
  535. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/51_6.png +0 -0
  536. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/51_7.png +0 -0
  537. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/52_0.png +0 -0
  538. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/52_1.png +0 -0
  539. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/52_2.png +0 -0
  540. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/52_3.png +0 -0
  541. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/52_4.png +0 -0
  542. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/52_5.png +0 -0
  543. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/52_6.png +0 -0
  544. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/52_7.png +0 -0
  545. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/53_0.png +0 -0
  546. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/53_1.png +0 -0
  547. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/53_2.png +0 -0
  548. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/53_3.png +0 -0
  549. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/53_4.png +0 -0
  550. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/53_5.png +0 -0
  551. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/53_6.png +0 -0
  552. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/53_7.png +0 -0
  553. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/54_0.png +0 -0
  554. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/54_1.png +0 -0
  555. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/54_2.png +0 -0
  556. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/54_3.png +0 -0
  557. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/54_4.png +0 -0
  558. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/54_5.png +0 -0
  559. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/54_6.png +0 -0
  560. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/54_7.png +0 -0
  561. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/55_0.png +0 -0
  562. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/55_1.png +0 -0
  563. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/55_2.png +0 -0
  564. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/55_3.png +0 -0
  565. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/55_4.png +0 -0
  566. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/55_5.png +0 -0
  567. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/55_6.png +0 -0
  568. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/55_7.png +0 -0
  569. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/56_0.png +0 -0
  570. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/56_1.png +0 -0
  571. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/56_2.png +0 -0
  572. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/56_3.png +0 -0
  573. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/56_4.png +0 -0
  574. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/56_5.png +0 -0
  575. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/56_6.png +0 -0
  576. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/56_7.png +0 -0
  577. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/57_0.png +0 -0
  578. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/57_1.png +0 -0
  579. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/57_2.png +0 -0
  580. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/57_3.png +0 -0
  581. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/57_4.png +0 -0
  582. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/57_5.png +0 -0
  583. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/57_6.png +0 -0
  584. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/57_7.png +0 -0
  585. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/58_0.png +0 -0
  586. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/58_1.png +0 -0
  587. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/58_2.png +0 -0
  588. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/58_3.png +0 -0
  589. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/58_4.png +0 -0
  590. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/58_5.png +0 -0
  591. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/58_6.png +0 -0
  592. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/58_7.png +0 -0
  593. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/59_0.png +0 -0
  594. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/59_1.png +0 -0
  595. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/59_2.png +0 -0
  596. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/59_3.png +0 -0
  597. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/59_4.png +0 -0
  598. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/59_5.png +0 -0
  599. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/59_6.png +0 -0
  600. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/59_7.png +0 -0
  601. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/60_0.png +0 -0
  602. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/60_1.png +0 -0
  603. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/60_2.png +0 -0
  604. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/60_3.png +0 -0
  605. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/60_4.png +0 -0
  606. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/60_5.png +0 -0
  607. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/60_6.png +0 -0
  608. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/60_7.png +0 -0
  609. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/61_0.png +0 -0
  610. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/61_1.png +0 -0
  611. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/61_2.png +0 -0
  612. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/61_3.png +0 -0
  613. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/61_4.png +0 -0
  614. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/61_5.png +0 -0
  615. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/61_6.png +0 -0
  616. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/61_7.png +0 -0
  617. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/62_0.png +0 -0
  618. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/62_1.png +0 -0
  619. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/62_2.png +0 -0
  620. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/62_3.png +0 -0
  621. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/62_4.png +0 -0
  622. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/62_5.png +0 -0
  623. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/62_6.png +0 -0
  624. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/62_7.png +0 -0
  625. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/63_0.png +0 -0
  626. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/63_1.png +0 -0
  627. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/63_2.png +0 -0
  628. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/63_3.png +0 -0
  629. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/63_4.png +0 -0
  630. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/63_5.png +0 -0
  631. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/63_6.png +0 -0
  632. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/63_7.png +0 -0
  633. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/64_0.png +0 -0
  634. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/64_1.png +0 -0
  635. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/64_2.png +0 -0
  636. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/64_3.png +0 -0
  637. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/64_4.png +0 -0
  638. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/64_5.png +0 -0
  639. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/64_6.png +0 -0
  640. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/64_7.png +0 -0
  641. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/65_0.png +0 -0
  642. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/65_1.png +0 -0
  643. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/65_2.png +0 -0
  644. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/65_3.png +0 -0
  645. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/65_4.png +0 -0
  646. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/65_5.png +0 -0
  647. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/65_6.png +0 -0
  648. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/65_7.png +0 -0
  649. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/66_0.png +0 -0
  650. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/66_1.png +0 -0
  651. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/66_2.png +0 -0
  652. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/66_3.png +0 -0
  653. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/66_4.png +0 -0
  654. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/66_5.png +0 -0
  655. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/66_6.png +0 -0
  656. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/66_7.png +0 -0
  657. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/67_0.png +0 -0
  658. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/67_1.png +0 -0
  659. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/67_2.png +0 -0
  660. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/67_3.png +0 -0
  661. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/67_4.png +0 -0
  662. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/67_5.png +0 -0
  663. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/67_6.png +0 -0
  664. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/67_7.png +0 -0
  665. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/68_0.png +0 -0
  666. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/68_1.png +0 -0
  667. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/68_2.png +0 -0
  668. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/68_3.png +0 -0
  669. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/68_4.png +0 -0
  670. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/68_5.png +0 -0
  671. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/68_6.png +0 -0
  672. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/68_7.png +0 -0
  673. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/69_0.png +0 -0
  674. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/69_1.png +0 -0
  675. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/69_2.png +0 -0
  676. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/69_3.png +0 -0
  677. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/69_4.png +0 -0
  678. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/69_5.png +0 -0
  679. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/69_6.png +0 -0
  680. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/69_7.png +0 -0
  681. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/70_0.png +0 -0
  682. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/70_1.png +0 -0
  683. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/70_2.png +0 -0
  684. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/70_3.png +0 -0
  685. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/70_4.png +0 -0
  686. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/70_5.png +0 -0
  687. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/70_6.png +0 -0
  688. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/70_7.png +0 -0
  689. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/71_0.png +0 -0
  690. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/71_1.png +0 -0
  691. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/71_2.png +0 -0
  692. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/71_3.png +0 -0
  693. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/71_4.png +0 -0
  694. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/71_5.png +0 -0
  695. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/71_6.png +0 -0
  696. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/71_7.png +0 -0
  697. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/72_0.png +0 -0
  698. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/72_1.png +0 -0
  699. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/72_2.png +0 -0
  700. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/72_3.png +0 -0
  701. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/72_4.png +0 -0
  702. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/72_5.png +0 -0
  703. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/72_6.png +0 -0
  704. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/72_7.png +0 -0
  705. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/73_0.png +0 -0
  706. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/73_1.png +0 -0
  707. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/73_2.png +0 -0
  708. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/73_3.png +0 -0
  709. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/73_4.png +0 -0
  710. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/73_5.png +0 -0
  711. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/73_6.png +0 -0
  712. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/73_7.png +0 -0
  713. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/74_0.png +0 -0
  714. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/74_1.png +0 -0
  715. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/74_2.png +0 -0
  716. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/74_3.png +0 -0
  717. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/74_4.png +0 -0
  718. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/74_5.png +0 -0
  719. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/74_6.png +0 -0
  720. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/74_7.png +0 -0
  721. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/75_0.png +0 -0
  722. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/75_1.png +0 -0
  723. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/75_2.png +0 -0
  724. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/75_3.png +0 -0
  725. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/75_4.png +0 -0
  726. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/75_5.png +0 -0
  727. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/75_6.png +0 -0
  728. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/75_7.png +0 -0
  729. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/76_0.png +0 -0
  730. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/76_1.png +0 -0
  731. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/76_2.png +0 -0
  732. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/76_3.png +0 -0
  733. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/76_4.png +0 -0
  734. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/76_5.png +0 -0
  735. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/76_6.png +0 -0
  736. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/76_7.png +0 -0
  737. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/77_0.png +0 -0
  738. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/77_1.png +0 -0
  739. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/77_2.png +0 -0
  740. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/77_3.png +0 -0
  741. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/77_4.png +0 -0
  742. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/77_5.png +0 -0
  743. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/77_6.png +0 -0
  744. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/77_7.png +0 -0
  745. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/78_0.png +0 -0
  746. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/78_1.png +0 -0
  747. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/78_2.png +0 -0
  748. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/78_3.png +0 -0
  749. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/78_4.png +0 -0
  750. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/78_5.png +0 -0
  751. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/78_6.png +0 -0
  752. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/78_7.png +0 -0
  753. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/79_0.png +0 -0
  754. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/79_1.png +0 -0
  755. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/79_2.png +0 -0
  756. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/79_3.png +0 -0
  757. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/79_4.png +0 -0
  758. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/79_5.png +0 -0
  759. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/79_6.png +0 -0
  760. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/79_7.png +0 -0
  761. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/80_0.png +0 -0
  762. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/80_1.png +0 -0
  763. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/80_2.png +0 -0
  764. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/80_3.png +0 -0
  765. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/80_4.png +0 -0
  766. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/80_5.png +0 -0
  767. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/80_6.png +0 -0
  768. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/80_7.png +0 -0
  769. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/81_0.png +0 -0
  770. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/81_1.png +0 -0
  771. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/81_2.png +0 -0
  772. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/81_3.png +0 -0
  773. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/81_4.png +0 -0
  774. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/81_5.png +0 -0
  775. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/81_6.png +0 -0
  776. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/81_7.png +0 -0
  777. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/82_0.png +0 -0
  778. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/82_1.png +0 -0
  779. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/82_2.png +0 -0
  780. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/82_3.png +0 -0
  781. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/82_4.png +0 -0
  782. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/82_5.png +0 -0
  783. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/82_6.png +0 -0
  784. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/82_7.png +0 -0
  785. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/83_0.png +0 -0
  786. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/83_1.png +0 -0
  787. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/83_2.png +0 -0
  788. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/83_3.png +0 -0
  789. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/83_4.png +0 -0
  790. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/83_5.png +0 -0
  791. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/83_6.png +0 -0
  792. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/83_7.png +0 -0
  793. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/84_0.png +0 -0
  794. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/84_1.png +0 -0
  795. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/84_2.png +0 -0
  796. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/84_3.png +0 -0
  797. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/84_4.png +0 -0
  798. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/84_5.png +0 -0
  799. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/84_6.png +0 -0
  800. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/84_7.png +0 -0
  801. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/85_0.png +0 -0
  802. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/85_1.png +0 -0
  803. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/85_2.png +0 -0
  804. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/85_3.png +0 -0
  805. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/85_4.png +0 -0
  806. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/85_5.png +0 -0
  807. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/85_6.png +0 -0
  808. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/85_7.png +0 -0
  809. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/86_0.png +0 -0
  810. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/86_1.png +0 -0
  811. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/86_2.png +0 -0
  812. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/86_3.png +0 -0
  813. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/86_4.png +0 -0
  814. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/86_5.png +0 -0
  815. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/86_6.png +0 -0
  816. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/86_7.png +0 -0
  817. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/87_0.png +0 -0
  818. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/87_1.png +0 -0
  819. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/87_2.png +0 -0
  820. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/87_3.png +0 -0
  821. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/87_4.png +0 -0
  822. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/87_5.png +0 -0
  823. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/87_6.png +0 -0
  824. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/87_7.png +0 -0
  825. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/88_0.png +0 -0
  826. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/88_1.png +0 -0
  827. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/88_2.png +0 -0
  828. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/88_3.png +0 -0
  829. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/88_4.png +0 -0
  830. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/88_5.png +0 -0
  831. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/88_6.png +0 -0
  832. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/88_7.png +0 -0
  833. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/89_0.png +0 -0
  834. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/89_1.png +0 -0
  835. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/89_2.png +0 -0
  836. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/89_3.png +0 -0
  837. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/89_4.png +0 -0
  838. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/89_5.png +0 -0
  839. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/89_6.png +0 -0
  840. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/89_7.png +0 -0
  841. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/90_0.png +0 -0
  842. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/90_1.png +0 -0
  843. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/90_2.png +0 -0
  844. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/90_3.png +0 -0
  845. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/90_4.png +0 -0
  846. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/90_5.png +0 -0
  847. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/90_6.png +0 -0
  848. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/90_7.png +0 -0
  849. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/91_0.png +0 -0
  850. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/91_1.png +0 -0
  851. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/91_2.png +0 -0
  852. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/91_3.png +0 -0
  853. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/91_4.png +0 -0
  854. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/91_5.png +0 -0
  855. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/91_6.png +0 -0
  856. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/91_7.png +0 -0
  857. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/92_0.png +0 -0
  858. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/92_1.png +0 -0
  859. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/92_2.png +0 -0
  860. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/92_3.png +0 -0
  861. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/92_4.png +0 -0
  862. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/92_5.png +0 -0
  863. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/92_6.png +0 -0
  864. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/92_7.png +0 -0
  865. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/93_0.png +0 -0
  866. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/93_1.png +0 -0
  867. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/93_2.png +0 -0
  868. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/93_3.png +0 -0
  869. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/93_4.png +0 -0
  870. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/93_5.png +0 -0
  871. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/93_6.png +0 -0
  872. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/93_7.png +0 -0
  873. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/94_0.png +0 -0
  874. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/94_1.png +0 -0
  875. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/94_2.png +0 -0
  876. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/94_3.png +0 -0
  877. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/94_4.png +0 -0
  878. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/94_5.png +0 -0
  879. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/94_6.png +0 -0
  880. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/94_7.png +0 -0
  881. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/95_0.png +0 -0
  882. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/95_1.png +0 -0
  883. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/95_2.png +0 -0
  884. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/95_3.png +0 -0
  885. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/95_4.png +0 -0
  886. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/95_5.png +0 -0
  887. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/95_6.png +0 -0
  888. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/95_7.png +0 -0
  889. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/96_0.png +0 -0
  890. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/96_1.png +0 -0
  891. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/96_2.png +0 -0
  892. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/96_3.png +0 -0
  893. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/96_4.png +0 -0
  894. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/96_5.png +0 -0
  895. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/96_6.png +0 -0
  896. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/96_7.png +0 -0
  897. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/97_0.png +0 -0
  898. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/97_1.png +0 -0
  899. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/97_2.png +0 -0
  900. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/97_3.png +0 -0
  901. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/97_4.png +0 -0
  902. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/97_5.png +0 -0
  903. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/97_6.png +0 -0
  904. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/97_7.png +0 -0
  905. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/98_0.png +0 -0
  906. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/98_1.png +0 -0
  907. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/98_2.png +0 -0
  908. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/98_3.png +0 -0
  909. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/98_4.png +0 -0
  910. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/98_5.png +0 -0
  911. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/98_6.png +0 -0
  912. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/98_7.png +0 -0
  913. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/99_0.png +0 -0
  914. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/99_1.png +0 -0
  915. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/99_2.png +0 -0
  916. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/99_3.png +0 -0
  917. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/99_4.png +0 -0
  918. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/99_5.png +0 -0
  919. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/99_6.png +0 -0
  920. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/data/labels/99_7.png +0 -0
  921. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/yolo-image.cpp +0 -0
  922. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/yolo-image.h +0 -0
  923. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/examples/yolo/yolov3-tiny.cpp +0 -0
  924. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/ggml.pc.in +0 -0
  925. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/include/ggml-alloc.h +0 -0
  926. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/include/ggml-backend.h +0 -0
  927. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/include/ggml-blas.h +0 -0
  928. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/include/ggml-cann.h +0 -0
  929. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/include/ggml-cpp.h +0 -0
  930. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/include/ggml-cpu.h +0 -0
  931. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/include/ggml-cuda.h +0 -0
  932. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/include/ggml-hexagon.h +0 -0
  933. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/include/ggml-metal.h +0 -0
  934. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/include/ggml-opencl.h +0 -0
  935. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/include/ggml-openvino.h +0 -0
  936. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/include/ggml-opt.h +0 -0
  937. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/include/ggml-rpc.h +0 -0
  938. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/include/ggml-sycl.h +0 -0
  939. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/include/ggml-virtgpu.h +0 -0
  940. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/include/ggml-vulkan.h +0 -0
  941. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/include/ggml-webgpu.h +0 -0
  942. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/include/ggml-zdnn.h +0 -0
  943. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/include/ggml-zendnn.h +0 -0
  944. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/include/ggml.h +0 -0
  945. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/include/gguf.h +0 -0
  946. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/requirements.txt +0 -0
  947. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/scripts/gen-authors.sh +0 -0
  948. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/scripts/release.sh +0 -0
  949. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/scripts/sync-llama-am.sh +0 -0
  950. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/scripts/sync-llama.last +0 -0
  951. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/scripts/sync-llama.sh +0 -0
  952. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/scripts/sync-whisper-am.sh +0 -0
  953. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/scripts/sync-whisper.last +0 -0
  954. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/scripts/sync-whisper.sh +0 -0
  955. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/CMakeLists.txt +0 -0
  956. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-alloc.c +0 -0
  957. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-backend-dl.cpp +0 -0
  958. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-backend-dl.h +0 -0
  959. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-backend-impl.h +0 -0
  960. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-backend-meta.cpp +0 -0
  961. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-backend-reg.cpp +0 -0
  962. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-backend.cpp +0 -0
  963. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-blas/CMakeLists.txt +0 -0
  964. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-blas/ggml-blas.cpp +0 -0
  965. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cann/CMakeLists.txt +0 -0
  966. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cann/acl_tensor.cpp +0 -0
  967. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cann/acl_tensor.h +0 -0
  968. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cann/aclnn_ops.cpp +0 -0
  969. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cann/aclnn_ops.h +0 -0
  970. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cann/common.h +0 -0
  971. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cann/ggml-cann.cpp +0 -0
  972. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-common.h +0 -0
  973. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/CMakeLists.txt +0 -0
  974. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/amx/amx.cpp +0 -0
  975. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/amx/amx.h +0 -0
  976. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/amx/common.h +0 -0
  977. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/amx/mmq.cpp +0 -0
  978. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/amx/mmq.h +0 -0
  979. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/arch/arm/cpu-feats.cpp +0 -0
  980. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/arch/arm/quants.c +0 -0
  981. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/arch/arm/repack.cpp +0 -0
  982. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/arch/loongarch/quants.c +0 -0
  983. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/arch/powerpc/cpu-feats.cpp +0 -0
  984. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/arch/powerpc/quants.c +0 -0
  985. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/arch/riscv/cpu-feats.cpp +0 -0
  986. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/arch/riscv/quants.c +0 -0
  987. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/arch/riscv/repack.cpp +0 -0
  988. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/arch/s390/cpu-feats.cpp +0 -0
  989. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/arch/s390/quants.c +0 -0
  990. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/arch/wasm/quants.c +0 -0
  991. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/arch/x86/cpu-feats.cpp +0 -0
  992. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/arch/x86/quants.c +0 -0
  993. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/arch/x86/repack.cpp +0 -0
  994. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/arch-fallback.h +0 -0
  995. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/binary-ops.cpp +0 -0
  996. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/binary-ops.h +0 -0
  997. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/cmake/FindSIMD.cmake +0 -0
  998. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/cmake/FindSMTIME.cmake +0 -0
  999. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/common.h +0 -0
  1000. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/ggml-cpu-impl.h +0 -0
  1001. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/ggml-cpu.c +0 -0
  1002. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/ggml-cpu.cpp +0 -0
  1003. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/hbm.cpp +0 -0
  1004. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/hbm.h +0 -0
  1005. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/kleidiai/kernels.cpp +0 -0
  1006. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/kleidiai/kernels.h +0 -0
  1007. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/kleidiai/kleidiai.cpp +0 -0
  1008. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/kleidiai/kleidiai.h +0 -0
  1009. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/llamafile/sgemm.cpp +0 -0
  1010. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/llamafile/sgemm.h +0 -0
  1011. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/ops.cpp +0 -0
  1012. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/ops.h +0 -0
  1013. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/quants.c +0 -0
  1014. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/quants.h +0 -0
  1015. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/repack.cpp +0 -0
  1016. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/repack.h +0 -0
  1017. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/simd-gemm.h +0 -0
  1018. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/simd-mappings.h +0 -0
  1019. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/spacemit/ime.cpp +0 -0
  1020. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/spacemit/ime.h +0 -0
  1021. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/spacemit/ime1_kernels.cpp +0 -0
  1022. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/spacemit/ime2_kernels.cpp +0 -0
  1023. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/spacemit/ime_env.cpp +0 -0
  1024. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/spacemit/ime_env.h +0 -0
  1025. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/spacemit/ime_kernels.h +0 -0
  1026. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/spacemit/repack.cpp +0 -0
  1027. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/spacemit/repack.h +0 -0
  1028. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/spacemit/rvv_kernels.cpp +0 -0
  1029. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/spacemit/rvv_kernels.h +0 -0
  1030. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/spacemit/spine_barrier.h +0 -0
  1031. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/spacemit/spine_mem_pool.cpp +0 -0
  1032. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/spacemit/spine_mem_pool.h +0 -0
  1033. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/spacemit/spine_tcm.h +0 -0
  1034. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/traits.cpp +0 -0
  1035. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/traits.h +0 -0
  1036. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/unary-ops.cpp +0 -0
  1037. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/unary-ops.h +0 -0
  1038. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/vec.cpp +0 -0
  1039. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cpu/vec.h +0 -0
  1040. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/CMakeLists.txt +0 -0
  1041. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/acc.cu +0 -0
  1042. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/acc.cuh +0 -0
  1043. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/add-id.cu +0 -0
  1044. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/add-id.cuh +0 -0
  1045. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/allreduce.cu +0 -0
  1046. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/allreduce.cuh +0 -0
  1047. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/arange.cu +0 -0
  1048. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/arange.cuh +0 -0
  1049. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/argmax.cu +0 -0
  1050. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/argmax.cuh +0 -0
  1051. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/argsort.cu +0 -0
  1052. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/argsort.cuh +0 -0
  1053. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/binbcast.cu +0 -0
  1054. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/binbcast.cuh +0 -0
  1055. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/clamp.cu +0 -0
  1056. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/clamp.cuh +0 -0
  1057. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/common.cuh +0 -0
  1058. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/concat.cu +0 -0
  1059. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/concat.cuh +0 -0
  1060. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/conv-transpose-1d.cu +0 -0
  1061. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/conv-transpose-1d.cuh +0 -0
  1062. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/conv2d-dw.cu +0 -0
  1063. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/conv2d-dw.cuh +0 -0
  1064. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/conv2d-transpose.cu +0 -0
  1065. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/conv2d-transpose.cuh +0 -0
  1066. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/conv2d.cu +0 -0
  1067. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/conv2d.cuh +0 -0
  1068. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/convert.cu +0 -0
  1069. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/convert.cuh +0 -0
  1070. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/count-equal.cu +0 -0
  1071. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/count-equal.cuh +0 -0
  1072. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/cp-async.cuh +0 -0
  1073. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/cpy-utils.cuh +0 -0
  1074. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/cpy.cu +0 -0
  1075. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/cpy.cuh +0 -0
  1076. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/cross-entropy-loss.cu +0 -0
  1077. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/cross-entropy-loss.cuh +0 -0
  1078. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/cumsum.cu +0 -0
  1079. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/cumsum.cuh +0 -0
  1080. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/dequantize.cuh +0 -0
  1081. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/diag.cu +0 -0
  1082. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/diag.cuh +0 -0
  1083. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/diagmask.cu +0 -0
  1084. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/diagmask.cuh +0 -0
  1085. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/fattn-common.cuh +0 -0
  1086. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/fattn-mma-f16.cuh +0 -0
  1087. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/fattn-tile.cu +0 -0
  1088. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/fattn-tile.cuh +0 -0
  1089. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/fattn-vec.cuh +0 -0
  1090. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/fattn-wmma-f16.cu +0 -0
  1091. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/fattn-wmma-f16.cuh +0 -0
  1092. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/fattn.cu +0 -0
  1093. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/fattn.cuh +0 -0
  1094. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/fill.cu +0 -0
  1095. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/fill.cuh +0 -0
  1096. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/fwht.cu +0 -0
  1097. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/fwht.cuh +0 -0
  1098. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/gated_delta_net.cu +0 -0
  1099. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/gated_delta_net.cuh +0 -0
  1100. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/getrows.cu +0 -0
  1101. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/getrows.cuh +0 -0
  1102. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/ggml-cuda.cu +0 -0
  1103. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/gla.cu +0 -0
  1104. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/gla.cuh +0 -0
  1105. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/im2col.cu +0 -0
  1106. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/im2col.cuh +0 -0
  1107. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/mean.cu +0 -0
  1108. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/mean.cuh +0 -0
  1109. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/mma.cuh +0 -0
  1110. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/mmf.cu +0 -0
  1111. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/mmf.cuh +0 -0
  1112. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/mmid.cu +0 -0
  1113. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/mmid.cuh +0 -0
  1114. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/mmq.cu +0 -0
  1115. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/mmq.cuh +0 -0
  1116. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/mmvf.cu +0 -0
  1117. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/mmvf.cuh +0 -0
  1118. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/mmvq.cu +0 -0
  1119. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/mmvq.cuh +0 -0
  1120. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/norm.cu +0 -0
  1121. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/norm.cuh +0 -0
  1122. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/opt-step-adamw.cu +0 -0
  1123. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/opt-step-adamw.cuh +0 -0
  1124. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/opt-step-sgd.cu +0 -0
  1125. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/opt-step-sgd.cuh +0 -0
  1126. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/out-prod.cu +0 -0
  1127. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/out-prod.cuh +0 -0
  1128. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/pad.cu +0 -0
  1129. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/pad.cuh +0 -0
  1130. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/pad_reflect_1d.cu +0 -0
  1131. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/pad_reflect_1d.cuh +0 -0
  1132. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/pool2d.cu +0 -0
  1133. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/pool2d.cuh +0 -0
  1134. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/quantize.cu +0 -0
  1135. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/quantize.cuh +0 -0
  1136. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/reduce_rows.cuh +0 -0
  1137. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/roll.cu +0 -0
  1138. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/roll.cuh +0 -0
  1139. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/rope.cu +0 -0
  1140. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/rope.cuh +0 -0
  1141. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/scale.cu +0 -0
  1142. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/scale.cuh +0 -0
  1143. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/set-rows.cu +0 -0
  1144. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/set-rows.cuh +0 -0
  1145. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/set.cu +0 -0
  1146. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/set.cuh +0 -0
  1147. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/snake.cu +0 -0
  1148. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/snake.cuh +0 -0
  1149. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/softcap.cu +0 -0
  1150. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/softcap.cuh +0 -0
  1151. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/softmax.cu +0 -0
  1152. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/softmax.cuh +0 -0
  1153. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/solve_tri.cu +0 -0
  1154. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/solve_tri.cuh +0 -0
  1155. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/ssm-conv.cu +0 -0
  1156. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/ssm-conv.cuh +0 -0
  1157. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/ssm-scan.cu +0 -0
  1158. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/ssm-scan.cuh +0 -0
  1159. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/sum.cu +0 -0
  1160. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/sum.cuh +0 -0
  1161. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/sumrows.cu +0 -0
  1162. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/sumrows.cuh +0 -0
  1163. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_1-ncols2_16.cu +0 -0
  1164. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_1-ncols2_32.cu +0 -0
  1165. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_1-ncols2_8.cu +0 -0
  1166. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_16-ncols2_1.cu +0 -0
  1167. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_16-ncols2_2.cu +0 -0
  1168. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_16-ncols2_4.cu +0 -0
  1169. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_2-ncols2_16.cu +0 -0
  1170. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_2-ncols2_32.cu +0 -0
  1171. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_2-ncols2_4.cu +0 -0
  1172. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_2-ncols2_8.cu +0 -0
  1173. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_32-ncols2_1.cu +0 -0
  1174. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_32-ncols2_2.cu +0 -0
  1175. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_4-ncols2_16.cu +0 -0
  1176. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_4-ncols2_2.cu +0 -0
  1177. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_4-ncols2_4.cu +0 -0
  1178. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_4-ncols2_8.cu +0 -0
  1179. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_64-ncols2_1.cu +0 -0
  1180. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_8-ncols2_1.cu +0 -0
  1181. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_8-ncols2_2.cu +0 -0
  1182. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_8-ncols2_4.cu +0 -0
  1183. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_8-ncols2_8.cu +0 -0
  1184. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq112-dv112.cu +0 -0
  1185. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq128-dv128.cu +0 -0
  1186. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq192-dv128.cu +0 -0
  1187. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq256-dv256.cu +0 -0
  1188. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq320-dv256.cu +0 -0
  1189. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq40-dv40.cu +0 -0
  1190. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq512-dv512.cu +0 -0
  1191. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq576-dv512.cu +0 -0
  1192. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq64-dv64.cu +0 -0
  1193. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq72-dv72.cu +0 -0
  1194. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq80-dv80.cu +0 -0
  1195. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq96-dv96.cu +0 -0
  1196. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-bf16.cu +0 -0
  1197. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-f16.cu +0 -0
  1198. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-q4_0.cu +0 -0
  1199. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-q4_1.cu +0 -0
  1200. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-q5_0.cu +0 -0
  1201. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-q5_1.cu +0 -0
  1202. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-q8_0.cu +0 -0
  1203. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-bf16.cu +0 -0
  1204. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-f16.cu +0 -0
  1205. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-q4_0.cu +0 -0
  1206. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-q4_1.cu +0 -0
  1207. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-q5_0.cu +0 -0
  1208. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-q5_1.cu +0 -0
  1209. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-q8_0.cu +0 -0
  1210. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-bf16.cu +0 -0
  1211. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-f16.cu +0 -0
  1212. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-q4_0.cu +0 -0
  1213. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-q4_1.cu +0 -0
  1214. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-q5_0.cu +0 -0
  1215. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-q5_1.cu +0 -0
  1216. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-q8_0.cu +0 -0
  1217. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-bf16.cu +0 -0
  1218. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-f16.cu +0 -0
  1219. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-q4_0.cu +0 -0
  1220. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-q4_1.cu +0 -0
  1221. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-q5_0.cu +0 -0
  1222. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-q5_1.cu +0 -0
  1223. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-q8_0.cu +0 -0
  1224. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-bf16.cu +0 -0
  1225. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-f16.cu +0 -0
  1226. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-q4_0.cu +0 -0
  1227. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-q4_1.cu +0 -0
  1228. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-q5_0.cu +0 -0
  1229. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-q5_1.cu +0 -0
  1230. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-q8_0.cu +0 -0
  1231. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-bf16.cu +0 -0
  1232. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-f16.cu +0 -0
  1233. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-q4_0.cu +0 -0
  1234. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-q4_1.cu +0 -0
  1235. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-q5_0.cu +0 -0
  1236. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-q5_1.cu +0 -0
  1237. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-q8_0.cu +0 -0
  1238. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-bf16.cu +0 -0
  1239. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-f16.cu +0 -0
  1240. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-q4_0.cu +0 -0
  1241. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-q4_1.cu +0 -0
  1242. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-q5_0.cu +0 -0
  1243. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-q5_1.cu +0 -0
  1244. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-q8_0.cu +0 -0
  1245. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/generate_cu_files.py +0 -0
  1246. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_1.cu +0 -0
  1247. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_10.cu +0 -0
  1248. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_11.cu +0 -0
  1249. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_12.cu +0 -0
  1250. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_13.cu +0 -0
  1251. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_14.cu +0 -0
  1252. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_15.cu +0 -0
  1253. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_16.cu +0 -0
  1254. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_2.cu +0 -0
  1255. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_3.cu +0 -0
  1256. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_4.cu +0 -0
  1257. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_5.cu +0 -0
  1258. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_6.cu +0 -0
  1259. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_7.cu +0 -0
  1260. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_8.cu +0 -0
  1261. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_9.cu +0 -0
  1262. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-iq1_s.cu +0 -0
  1263. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-iq2_s.cu +0 -0
  1264. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-iq2_xs.cu +0 -0
  1265. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-iq2_xxs.cu +0 -0
  1266. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-iq3_s.cu +0 -0
  1267. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-iq3_xxs.cu +0 -0
  1268. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-iq4_nl.cu +0 -0
  1269. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-iq4_xs.cu +0 -0
  1270. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-mxfp4.cu +0 -0
  1271. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-nvfp4.cu +0 -0
  1272. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-q1_0.cu +0 -0
  1273. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-q2_k.cu +0 -0
  1274. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-q3_k.cu +0 -0
  1275. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-q4_0.cu +0 -0
  1276. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-q4_1.cu +0 -0
  1277. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-q4_k.cu +0 -0
  1278. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-q5_0.cu +0 -0
  1279. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-q5_1.cu +0 -0
  1280. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-q5_k.cu +0 -0
  1281. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-q6_k.cu +0 -0
  1282. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/template-instances/mmq-instance-q8_0.cu +0 -0
  1283. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/top-k.cu +0 -0
  1284. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/top-k.cuh +0 -0
  1285. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/topk-moe.cu +0 -0
  1286. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/topk-moe.cuh +0 -0
  1287. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/tri.cu +0 -0
  1288. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/tri.cuh +0 -0
  1289. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/tsembd.cu +0 -0
  1290. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/tsembd.cuh +0 -0
  1291. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/unary.cu +0 -0
  1292. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/unary.cuh +0 -0
  1293. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/upscale.cu +0 -0
  1294. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/upscale.cuh +0 -0
  1295. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/vecdotq.cuh +0 -0
  1296. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/vendors/cuda.h +0 -0
  1297. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/vendors/hip.h +0 -0
  1298. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/vendors/musa.h +0 -0
  1299. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/wkv.cu +0 -0
  1300. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-cuda/wkv.cuh +0 -0
  1301. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/CMakeLists.txt +0 -0
  1302. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/ggml-hexagon.cpp +0 -0
  1303. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/CMakeLists.txt +0 -0
  1304. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/act-ops.c +0 -0
  1305. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/argsort-ops.c +0 -0
  1306. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/binary-ops.c +0 -0
  1307. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/cmake-toolchain.cmake +0 -0
  1308. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/concat-ops.c +0 -0
  1309. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/cpy-ops.c +0 -0
  1310. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/cumsum-ops.c +0 -0
  1311. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/diag-ops.c +0 -0
  1312. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/fill-ops.c +0 -0
  1313. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/flash-attn-ops.c +0 -0
  1314. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/gated-delta-net-ops.c +0 -0
  1315. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/get-rows-ops.c +0 -0
  1316. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hex-dma.c +0 -0
  1317. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hex-dma.h +0 -0
  1318. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hex-dump.h +0 -0
  1319. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hex-fastdiv.h +0 -0
  1320. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hex-utils.h +0 -0
  1321. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hmx-flash-attn-ops.c +0 -0
  1322. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hmx-matmul-ops.c +0 -0
  1323. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hmx-ops.h +0 -0
  1324. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hmx-profile.h +0 -0
  1325. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hmx-queue.c +0 -0
  1326. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hmx-queue.h +0 -0
  1327. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hmx-utils.h +0 -0
  1328. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/htp-ctx.h +0 -0
  1329. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/htp-ops.h +0 -0
  1330. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/htp_iface.idl +0 -0
  1331. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hvx-arith.h +0 -0
  1332. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hvx-base.h +0 -0
  1333. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hvx-copy.h +0 -0
  1334. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hvx-div.h +0 -0
  1335. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hvx-dump.h +0 -0
  1336. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hvx-exp.h +0 -0
  1337. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hvx-floor.h +0 -0
  1338. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hvx-inverse.h +0 -0
  1339. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hvx-reduce.h +0 -0
  1340. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hvx-repl.h +0 -0
  1341. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hvx-scale.h +0 -0
  1342. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hvx-sigmoid.h +0 -0
  1343. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hvx-sin-cos.h +0 -0
  1344. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hvx-sqrt.h +0 -0
  1345. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hvx-types.h +0 -0
  1346. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/hvx-utils.h +0 -0
  1347. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/main.c +0 -0
  1348. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/matmul-ops.c +0 -0
  1349. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/pad-ops.c +0 -0
  1350. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/repeat-ops.c +0 -0
  1351. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/rope-ops.c +0 -0
  1352. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/set-rows-ops.c +0 -0
  1353. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/softmax-ops.c +0 -0
  1354. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/solve-tri-ops.c +0 -0
  1355. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/ssm-conv.c +0 -0
  1356. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/sum-rows-ops.c +0 -0
  1357. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/unary-ops.c +0 -0
  1358. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/vtcm-utils.h +0 -0
  1359. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/worker-pool.c +0 -0
  1360. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp/worker-pool.h +0 -0
  1361. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp-drv.cpp +0 -0
  1362. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp-drv.h +0 -0
  1363. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/htp-opnode.h +0 -0
  1364. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/libdl.h +0 -0
  1365. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hexagon/libggml-htp.inf +0 -0
  1366. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-hip/CMakeLists.txt +0 -0
  1367. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-impl.h +0 -0
  1368. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-metal/CMakeLists.txt +0 -0
  1369. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-metal/ggml-metal-common.cpp +0 -0
  1370. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-metal/ggml-metal-common.h +0 -0
  1371. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-metal/ggml-metal-context.h +0 -0
  1372. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-metal/ggml-metal-context.m +0 -0
  1373. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-metal/ggml-metal-device.cpp +0 -0
  1374. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-metal/ggml-metal-device.h +0 -0
  1375. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-metal/ggml-metal-device.m +0 -0
  1376. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-metal/ggml-metal-impl.h +0 -0
  1377. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-metal/ggml-metal-ops.cpp +0 -0
  1378. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-metal/ggml-metal-ops.h +0 -0
  1379. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-metal/ggml-metal.cpp +0 -0
  1380. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-metal/ggml-metal.metal +0 -0
  1381. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-musa/CMakeLists.txt +0 -0
  1382. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-musa/mudnn.cu +0 -0
  1383. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-musa/mudnn.cuh +0 -0
  1384. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/CMakeLists.txt +0 -0
  1385. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/ggml-opencl.cpp +0 -0
  1386. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/add.cl +0 -0
  1387. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/add_id.cl +0 -0
  1388. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/argsort.cl +0 -0
  1389. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/clamp.cl +0 -0
  1390. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/concat.cl +0 -0
  1391. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/conv2d.cl +0 -0
  1392. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/conv2d_f16_f32.cl +0 -0
  1393. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/cpy.cl +0 -0
  1394. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/cumsum.cl +0 -0
  1395. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/cvt.cl +0 -0
  1396. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/diag.cl +0 -0
  1397. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/diag_mask_inf.cl +0 -0
  1398. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/div.cl +0 -0
  1399. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/embed_kernel.py +0 -0
  1400. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/exp.cl +0 -0
  1401. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/expm1.cl +0 -0
  1402. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/fill.cl +0 -0
  1403. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/flash_attn_f16.cl +0 -0
  1404. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/flash_attn_f32.cl +0 -0
  1405. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/flash_attn_f32_f16.cl +0 -0
  1406. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gated_delta_net.cl +0 -0
  1407. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gelu.cl +0 -0
  1408. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemm_moe_mxfp4_f32.cl +0 -0
  1409. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemm_moe_mxfp4_f32_ns.cl +0 -0
  1410. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemm_moe_q4_0_f32_ns.cl +0 -0
  1411. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemm_moe_q4_1_f32_ns.cl +0 -0
  1412. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemm_moe_q4_k_f32_ns.cl +0 -0
  1413. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemm_moe_q5_0_f32_ns.cl +0 -0
  1414. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemm_moe_q5_1_f32_ns.cl +0 -0
  1415. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemm_moe_q5_k_f32_ns.cl +0 -0
  1416. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemm_moe_q6_k_f32_ns.cl +0 -0
  1417. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemm_noshuffle_iq4_nl_f32.cl +0 -0
  1418. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q4_0_f32.cl +0 -0
  1419. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q4_1_f32.cl +0 -0
  1420. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q4_k_f32.cl +0 -0
  1421. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q5_k_f32.cl +0 -0
  1422. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q6_k_f32.cl +0 -0
  1423. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q8_0_f32.cl +0 -0
  1424. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemm_xmem_f16_f32_os8.cl +0 -0
  1425. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemv_moe_mxfp4_f32.cl +0 -0
  1426. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemv_moe_mxfp4_f32_ns.cl +0 -0
  1427. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemv_moe_q4_0_f32_ns.cl +0 -0
  1428. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemv_moe_q4_1_f32_ns.cl +0 -0
  1429. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemv_moe_q4_k_f32_ns.cl +0 -0
  1430. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemv_moe_q5_0_f32_ns.cl +0 -0
  1431. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemv_moe_q5_1_f32_ns.cl +0 -0
  1432. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemv_moe_q5_k_f32_ns.cl +0 -0
  1433. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemv_moe_q6_k_f32_ns.cl +0 -0
  1434. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemv_noshuffle_iq4_nl_f32.cl +0 -0
  1435. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q4_0_f32.cl +0 -0
  1436. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q4_0_f32_spec.cl +0 -0
  1437. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q4_1_f32.cl +0 -0
  1438. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q4_k_f32.cl +0 -0
  1439. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q5_k_f32.cl +0 -0
  1440. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q6_k_f32.cl +0 -0
  1441. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q8_0_f32.cl +0 -0
  1442. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/get_rows.cl +0 -0
  1443. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/glu.cl +0 -0
  1444. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/group_norm.cl +0 -0
  1445. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/im2col_f16.cl +0 -0
  1446. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/im2col_f32.cl +0 -0
  1447. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/l2_norm.cl +0 -0
  1448. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mean.cl +0 -0
  1449. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/moe_reorder_b.cl +0 -0
  1450. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/moe_sort_by_expert.cl +0 -0
  1451. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul.cl +0 -0
  1452. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mat_f16_f32.cl +0 -0
  1453. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mm_f16_f32_kq_kqv.cl +0 -0
  1454. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mm_f16_f32_l4_lm.cl +0 -0
  1455. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mm_f32_f32_l4_lm.cl +0 -0
  1456. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mm_iq4_nl_f32_l4_lm.cl +0 -0
  1457. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mm_q4_0_f32_l4_lm.cl +0 -0
  1458. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mm_q4_1_f32_l4_lm.cl +0 -0
  1459. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mm_q4_k_f32_l4_lm.cl +0 -0
  1460. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mm_q5_k_f32_l4_lm.cl +0 -0
  1461. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mm_q6_k_f32_l4_lm.cl +0 -0
  1462. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mm_q8_0_f32_l4_lm.cl +0 -0
  1463. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_f16_f16.cl +0 -0
  1464. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_f16_f32.cl +0 -0
  1465. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_f16_f32_1row.cl +0 -0
  1466. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_f16_f32_l4.cl +0 -0
  1467. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_f32_f32.cl +0 -0
  1468. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_id_mxfp4_f32.cl +0 -0
  1469. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_id_mxfp4_f32_flat.cl +0 -0
  1470. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_id_q4_0_f32_8x_flat.cl +0 -0
  1471. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_id_q8_0_f32.cl +0 -0
  1472. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_id_q8_0_f32_flat.cl +0 -0
  1473. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_iq4_nl_f32.cl +0 -0
  1474. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_iq4_nl_f32_flat.cl +0 -0
  1475. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_mxfp4_f32.cl +0 -0
  1476. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_mxfp4_f32_flat.cl +0 -0
  1477. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32.cl +0 -0
  1478. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32_1d_16x_flat.cl +0 -0
  1479. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32_1d_8x_flat.cl +0 -0
  1480. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32_8x_flat.cl +0 -0
  1481. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32_v.cl +0 -0
  1482. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q4_1_f32.cl +0 -0
  1483. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q4_1_f32_flat.cl +0 -0
  1484. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q4_k_f32.cl +0 -0
  1485. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q4_k_f32_flat.cl +0 -0
  1486. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q5_k_f32.cl +0 -0
  1487. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q5_k_f32_flat.cl +0 -0
  1488. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q6_k_f32.cl +0 -0
  1489. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q6_k_f32_flat.cl +0 -0
  1490. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q8_0_f32.cl +0 -0
  1491. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/mul_mv_q8_0_f32_flat.cl +0 -0
  1492. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/neg.cl +0 -0
  1493. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/norm.cl +0 -0
  1494. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/pad.cl +0 -0
  1495. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/relu.cl +0 -0
  1496. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/repeat.cl +0 -0
  1497. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/rms_norm.cl +0 -0
  1498. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/rope.cl +0 -0
  1499. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/scale.cl +0 -0
  1500. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/set_rows.cl +0 -0
  1501. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/sigmoid.cl +0 -0
  1502. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/silu.cl +0 -0
  1503. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/softmax_4_f16.cl +0 -0
  1504. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/softmax_4_f32.cl +0 -0
  1505. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/softmax_f16.cl +0 -0
  1506. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/softmax_f32.cl +0 -0
  1507. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/softplus.cl +0 -0
  1508. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/solve_tri.cl +0 -0
  1509. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/sqr.cl +0 -0
  1510. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/sqrt.cl +0 -0
  1511. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/ssm_conv.cl +0 -0
  1512. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/sub.cl +0 -0
  1513. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/sum_rows.cl +0 -0
  1514. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/tanh.cl +0 -0
  1515. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/transpose.cl +0 -0
  1516. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/tri.cl +0 -0
  1517. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/tsembd.cl +0 -0
  1518. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opencl/kernels/upscale.cl +0 -0
  1519. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/.clang-format +0 -0
  1520. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/CMakeLists.txt +0 -0
  1521. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/ggml-decoder.cpp +0 -0
  1522. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/ggml-decoder.h +0 -0
  1523. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/ggml-openvino-extra.cpp +0 -0
  1524. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/ggml-openvino-extra.h +0 -0
  1525. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/ggml-openvino.cpp +0 -0
  1526. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/ggml-quants.cpp +0 -0
  1527. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/ggml-quants.h +0 -0
  1528. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/decoder.h +0 -0
  1529. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/frontend.cpp +0 -0
  1530. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/frontend.h +0 -0
  1531. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/input_model.cpp +0 -0
  1532. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/input_model.h +0 -0
  1533. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/node_context.h +0 -0
  1534. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/op/cont.cpp +0 -0
  1535. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/op/cpy.cpp +0 -0
  1536. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/op/flash_attn_ext.cpp +0 -0
  1537. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/op/get_rows.cpp +0 -0
  1538. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/op/glu_geglu.cpp +0 -0
  1539. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/op/glu_swiglu.cpp +0 -0
  1540. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/op/mulmat.cpp +0 -0
  1541. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/op/permute.cpp +0 -0
  1542. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/op/reshape.cpp +0 -0
  1543. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/op/rms_norm.cpp +0 -0
  1544. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/op/rope.cpp +0 -0
  1545. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/op/scale.cpp +0 -0
  1546. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/op/set_rows.cpp +0 -0
  1547. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/op/softmax.cpp +0 -0
  1548. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/op/transpose.cpp +0 -0
  1549. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/op/unary_gelu.cpp +0 -0
  1550. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/op/unary_silu.cpp +0 -0
  1551. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/op/view.cpp +0 -0
  1552. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/op_table.cpp +0 -0
  1553. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/op_table.h +0 -0
  1554. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/pass/fuse_to_sdpa.cpp +0 -0
  1555. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/pass/fuse_to_sdpa.h +0 -0
  1556. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/pass/mark_decompression_convert_constant_folding.h +0 -0
  1557. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/pass/squeeze_matmul.cpp +0 -0
  1558. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/pass/squeeze_matmul.h +0 -0
  1559. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/rt_info/weightless_caching_attributes.hpp +0 -0
  1560. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/translate_session.cpp +0 -0
  1561. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/translate_session.h +0 -0
  1562. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/utils.cpp +0 -0
  1563. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/openvino/utils.h +0 -0
  1564. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/utils.cpp +0 -0
  1565. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-openvino/utils.h +0 -0
  1566. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-opt.cpp +0 -0
  1567. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-quants.c +0 -0
  1568. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-quants.h +0 -0
  1569. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-rpc/CMakeLists.txt +0 -0
  1570. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-rpc/ggml-rpc.cpp +0 -0
  1571. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-rpc/transport.cpp +0 -0
  1572. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-rpc/transport.h +0 -0
  1573. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/CMakeLists.txt +0 -0
  1574. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/add-id.cpp +0 -0
  1575. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/add-id.hpp +0 -0
  1576. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/backend.hpp +0 -0
  1577. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/binbcast.cpp +0 -0
  1578. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/binbcast.hpp +0 -0
  1579. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/common.cpp +0 -0
  1580. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/common.hpp +0 -0
  1581. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/concat.cpp +0 -0
  1582. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/concat.hpp +0 -0
  1583. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/conv.cpp +0 -0
  1584. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/conv.hpp +0 -0
  1585. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/convert.cpp +0 -0
  1586. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/convert.hpp +0 -0
  1587. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/count-equal.cpp +0 -0
  1588. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/count-equal.hpp +0 -0
  1589. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/cpy.cpp +0 -0
  1590. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/cpy.hpp +0 -0
  1591. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/cumsum.cpp +0 -0
  1592. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/cumsum.hpp +0 -0
  1593. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/dequantize.hpp +0 -0
  1594. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/diag.cpp +0 -0
  1595. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/diag.hpp +0 -0
  1596. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/dmmv.cpp +0 -0
  1597. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/dmmv.hpp +0 -0
  1598. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/dpct/helper.hpp +0 -0
  1599. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/element_wise.cpp +0 -0
  1600. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/element_wise.hpp +0 -0
  1601. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/fattn-buffers.cpp +0 -0
  1602. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/fattn-buffers.hpp +0 -0
  1603. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/fattn-common.hpp +0 -0
  1604. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/fattn-tile.cpp +0 -0
  1605. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/fattn-tile.hpp +0 -0
  1606. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/fattn-vec.hpp +0 -0
  1607. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/fattn.cpp +0 -0
  1608. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/fattn.hpp +0 -0
  1609. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/fill.cpp +0 -0
  1610. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/fill.hpp +0 -0
  1611. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/gated_delta_net.cpp +0 -0
  1612. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/gated_delta_net.hpp +0 -0
  1613. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/gemm.hpp +0 -0
  1614. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/getrows.cpp +0 -0
  1615. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/getrows.hpp +0 -0
  1616. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/ggml-sycl.cpp +0 -0
  1617. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/gla.cpp +0 -0
  1618. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/gla.hpp +0 -0
  1619. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/im2col.cpp +0 -0
  1620. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/im2col.hpp +0 -0
  1621. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/mmq.cpp +0 -0
  1622. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/mmq.hpp +0 -0
  1623. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/mmvq.cpp +0 -0
  1624. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/mmvq.hpp +0 -0
  1625. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/norm.cpp +0 -0
  1626. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/norm.hpp +0 -0
  1627. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/outprod.cpp +0 -0
  1628. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/outprod.hpp +0 -0
  1629. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/pad.cpp +0 -0
  1630. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/pad.hpp +0 -0
  1631. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/pad_reflect_1d.cpp +0 -0
  1632. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/pad_reflect_1d.hpp +0 -0
  1633. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/presets.hpp +0 -0
  1634. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/quantize.hpp +0 -0
  1635. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/quants.hpp +0 -0
  1636. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/repeat_back.cpp +0 -0
  1637. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/repeat_back.hpp +0 -0
  1638. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/roll.cpp +0 -0
  1639. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/roll.hpp +0 -0
  1640. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/rope.cpp +0 -0
  1641. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/rope.hpp +0 -0
  1642. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/set.cpp +0 -0
  1643. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/set.hpp +0 -0
  1644. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/set_rows.cpp +0 -0
  1645. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/set_rows.hpp +0 -0
  1646. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/softmax.cpp +0 -0
  1647. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/softmax.hpp +0 -0
  1648. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/solve_tri.cpp +0 -0
  1649. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/solve_tri.hpp +0 -0
  1650. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/ssm_conv.cpp +0 -0
  1651. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/ssm_conv.hpp +0 -0
  1652. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/ssm_scan.cpp +0 -0
  1653. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/ssm_scan.hpp +0 -0
  1654. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/sycl_hw.cpp +0 -0
  1655. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/sycl_hw.hpp +0 -0
  1656. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq112-dv112.cpp +0 -0
  1657. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq128-dv128.cpp +0 -0
  1658. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq256-dv256.cpp +0 -0
  1659. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq40-dv40.cpp +0 -0
  1660. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq512-dv512.cpp +0 -0
  1661. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq576-dv512.cpp +0 -0
  1662. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq64-dv64.cpp +0 -0
  1663. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq72-dv72.cpp +0 -0
  1664. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq80-dv80.cpp +0 -0
  1665. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq96-dv96.cpp +0 -0
  1666. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-f16.cpp +0 -0
  1667. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q4_0.cpp +0 -0
  1668. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q4_1.cpp +0 -0
  1669. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q5_0.cpp +0 -0
  1670. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q5_1.cpp +0 -0
  1671. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q8_0.cpp +0 -0
  1672. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-f16.cpp +0 -0
  1673. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q4_0.cpp +0 -0
  1674. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q4_1.cpp +0 -0
  1675. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q5_0.cpp +0 -0
  1676. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q5_1.cpp +0 -0
  1677. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q8_0.cpp +0 -0
  1678. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-f16.cpp +0 -0
  1679. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q4_0.cpp +0 -0
  1680. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q4_1.cpp +0 -0
  1681. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q5_0.cpp +0 -0
  1682. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q5_1.cpp +0 -0
  1683. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q8_0.cpp +0 -0
  1684. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-f16.cpp +0 -0
  1685. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q4_0.cpp +0 -0
  1686. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q4_1.cpp +0 -0
  1687. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q5_0.cpp +0 -0
  1688. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q5_1.cpp +0 -0
  1689. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q8_0.cpp +0 -0
  1690. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-f16.cpp +0 -0
  1691. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q4_0.cpp +0 -0
  1692. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q4_1.cpp +0 -0
  1693. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q5_0.cpp +0 -0
  1694. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q5_1.cpp +0 -0
  1695. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q8_0.cpp +0 -0
  1696. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-f16.cpp +0 -0
  1697. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q4_0.cpp +0 -0
  1698. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q4_1.cpp +0 -0
  1699. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q5_0.cpp +0 -0
  1700. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q5_1.cpp +0 -0
  1701. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q8_0.cpp +0 -0
  1702. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/tsembd.cpp +0 -0
  1703. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/tsembd.hpp +0 -0
  1704. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/type.hpp +0 -0
  1705. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/upscale.cpp +0 -0
  1706. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/upscale.hpp +0 -0
  1707. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/vecdotq.hpp +0 -0
  1708. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/wkv.cpp +0 -0
  1709. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-sycl/wkv.hpp +0 -0
  1710. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-threading.cpp +0 -0
  1711. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-threading.h +0 -0
  1712. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/CMakeLists.txt +0 -0
  1713. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/apir_cs_ggml-rpc-front.cpp +0 -0
  1714. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/backend/CMakeLists.txt +0 -0
  1715. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/backend/apir_cs_ggml-rpc-back.cpp +0 -0
  1716. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/backend/backend-convert.h +0 -0
  1717. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/backend/backend-dispatched-backend.cpp +0 -0
  1718. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/backend/backend-dispatched-buffer-type.cpp +0 -0
  1719. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/backend/backend-dispatched-buffer.cpp +0 -0
  1720. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/backend/backend-dispatched-device.cpp +0 -0
  1721. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/backend/backend-dispatched.cpp +0 -0
  1722. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/backend/backend-dispatched.gen.h +0 -0
  1723. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/backend/backend-dispatched.h +0 -0
  1724. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/backend/backend-virgl-apir.h +0 -0
  1725. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/backend/backend.cpp +0 -0
  1726. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/backend/shared/api_remoting.h +0 -0
  1727. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/backend/shared/apir_backend.gen.h +0 -0
  1728. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/backend/shared/apir_backend.h +0 -0
  1729. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/backend/shared/apir_cs.h +0 -0
  1730. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/backend/shared/apir_cs_ggml.h +0 -0
  1731. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/backend/shared/apir_cs_rpc.h +0 -0
  1732. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/ggml-backend-buffer-type.cpp +0 -0
  1733. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/ggml-backend-buffer.cpp +0 -0
  1734. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/ggml-backend-device.cpp +0 -0
  1735. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/ggml-backend-reg.cpp +0 -0
  1736. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/ggml-backend.cpp +0 -0
  1737. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/ggml-remoting.h +0 -0
  1738. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/ggmlremoting_functions.yaml +0 -0
  1739. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/include/apir_hw.h +0 -0
  1740. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/regenerate_remoting.py +0 -0
  1741. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/virtgpu-apir.h +0 -0
  1742. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/virtgpu-forward-backend.cpp +0 -0
  1743. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/virtgpu-forward-buffer-type.cpp +0 -0
  1744. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/virtgpu-forward-buffer.cpp +0 -0
  1745. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/virtgpu-forward-device.cpp +0 -0
  1746. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/virtgpu-forward-impl.h +0 -0
  1747. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/virtgpu-forward.gen.h +0 -0
  1748. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/virtgpu-shm.cpp +0 -0
  1749. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/virtgpu-shm.h +0 -0
  1750. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/virtgpu-utils.cpp +0 -0
  1751. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/virtgpu-utils.h +0 -0
  1752. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/virtgpu.cpp +0 -0
  1753. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-virtgpu/virtgpu.h +0 -0
  1754. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/CMakeLists.txt +0 -0
  1755. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/cmake/host-toolchain.cmake.in +0 -0
  1756. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/ggml-vulkan.cpp +0 -0
  1757. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/CMakeLists.txt +0 -0
  1758. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/abs.comp +0 -0
  1759. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/acc.comp +0 -0
  1760. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/add.comp +0 -0
  1761. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/add1.comp +0 -0
  1762. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/add_id.comp +0 -0
  1763. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/arange.comp +0 -0
  1764. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/argmax.comp +0 -0
  1765. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/argsort.comp +0 -0
  1766. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/argsort_large.comp +0 -0
  1767. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/ceil.comp +0 -0
  1768. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/clamp.comp +0 -0
  1769. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/concat.comp +0 -0
  1770. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/contig_copy.comp +0 -0
  1771. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/conv2d_dw.comp +0 -0
  1772. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/conv2d_mm.comp +0 -0
  1773. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/conv_transpose_1d.comp +0 -0
  1774. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/copy.comp +0 -0
  1775. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/copy_from_quant.comp +0 -0
  1776. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/copy_to_quant.comp +0 -0
  1777. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/copy_transpose.comp +0 -0
  1778. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/cos.comp +0 -0
  1779. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/count_equal.comp +0 -0
  1780. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/count_experts.comp +0 -0
  1781. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/cumsum.comp +0 -0
  1782. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/cumsum_multipass1.comp +0 -0
  1783. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/cumsum_multipass2.comp +0 -0
  1784. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_f32.comp +0 -0
  1785. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_funcs.glsl +0 -0
  1786. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_funcs_cm2.glsl +0 -0
  1787. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_head.glsl +0 -0
  1788. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq1_m.comp +0 -0
  1789. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq1_s.comp +0 -0
  1790. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq2_s.comp +0 -0
  1791. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq2_xs.comp +0 -0
  1792. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq2_xxs.comp +0 -0
  1793. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq3_s.comp +0 -0
  1794. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq3_xxs.comp +0 -0
  1795. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq4_nl.comp +0 -0
  1796. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq4_xs.comp +0 -0
  1797. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_mxfp4.comp +0 -0
  1798. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_nvfp4.comp +0 -0
  1799. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q1_0.comp +0 -0
  1800. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q2_k.comp +0 -0
  1801. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q3_k.comp +0 -0
  1802. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q4_0.comp +0 -0
  1803. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q4_1.comp +0 -0
  1804. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q4_k.comp +0 -0
  1805. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q5_0.comp +0 -0
  1806. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q5_1.comp +0 -0
  1807. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q5_k.comp +0 -0
  1808. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q6_k.comp +0 -0
  1809. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q8_0.comp +0 -0
  1810. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/diag.comp +0 -0
  1811. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/diag_mask_inf.comp +0 -0
  1812. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/div.comp +0 -0
  1813. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/elu.comp +0 -0
  1814. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/exp.comp +0 -0
  1815. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/feature-tests/bfloat16.comp +0 -0
  1816. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/feature-tests/coopmat.comp +0 -0
  1817. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/feature-tests/coopmat2.comp +0 -0
  1818. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/feature-tests/coopmat2_decode_vector.comp +0 -0
  1819. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/feature-tests/integer_dot.comp +0 -0
  1820. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/fill.comp +0 -0
  1821. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn.comp +0 -0
  1822. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_base.glsl +0 -0
  1823. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_cm1.comp +0 -0
  1824. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_cm2.comp +0 -0
  1825. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_dequant.glsl +0 -0
  1826. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_mask_opt.comp +0 -0
  1827. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_mmq_funcs.glsl +0 -0
  1828. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_split_k_reduce.comp +0 -0
  1829. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/floor.comp +0 -0
  1830. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/fwht.comp +0 -0
  1831. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/gated_delta_net.comp +0 -0
  1832. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/geglu.comp +0 -0
  1833. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/geglu_erf.comp +0 -0
  1834. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/geglu_quick.comp +0 -0
  1835. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/gelu.comp +0 -0
  1836. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/gelu_erf.comp +0 -0
  1837. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/gelu_quick.comp +0 -0
  1838. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/generic_binary_head.glsl +0 -0
  1839. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/generic_head.glsl +0 -0
  1840. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/generic_unary_head.glsl +0 -0
  1841. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/get_rows.comp +0 -0
  1842. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/get_rows_quant.comp +0 -0
  1843. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/glu_head.glsl +0 -0
  1844. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/glu_main.glsl +0 -0
  1845. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/group_norm.comp +0 -0
  1846. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/hardsigmoid.comp +0 -0
  1847. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/hardswish.comp +0 -0
  1848. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/im2col.comp +0 -0
  1849. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/im2col_3d.comp +0 -0
  1850. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/l2_norm.comp +0 -0
  1851. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/leaky_relu.comp +0 -0
  1852. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/log.comp +0 -0
  1853. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul.comp +0 -0
  1854. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_split_k_reduce.comp +0 -0
  1855. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec.comp +0 -0
  1856. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_base.glsl +0 -0
  1857. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iface.glsl +0 -0
  1858. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq1_m.comp +0 -0
  1859. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq1_s.comp +0 -0
  1860. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq2_s.comp +0 -0
  1861. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq2_xs.comp +0 -0
  1862. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq2_xxs.comp +0 -0
  1863. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq3_s.comp +0 -0
  1864. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq3_xxs.comp +0 -0
  1865. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_nc.comp +0 -0
  1866. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_p021.comp +0 -0
  1867. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q2_k.comp +0 -0
  1868. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q3_k.comp +0 -0
  1869. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q4_k.comp +0 -0
  1870. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q5_k.comp +0 -0
  1871. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q6_k.comp +0 -0
  1872. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vecq.comp +0 -0
  1873. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vecq_funcs.glsl +0 -0
  1874. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mm.comp +0 -0
  1875. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mm_cm2.comp +0 -0
  1876. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mm_funcs.glsl +0 -0
  1877. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mm_id_funcs.glsl +0 -0
  1878. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq.comp +0 -0
  1879. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq_funcs.glsl +0 -0
  1880. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq_shmem_types.glsl +0 -0
  1881. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/multi_add.comp +0 -0
  1882. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/neg.comp +0 -0
  1883. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/norm.comp +0 -0
  1884. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/opt_step_adamw.comp +0 -0
  1885. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/opt_step_sgd.comp +0 -0
  1886. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/pad.comp +0 -0
  1887. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/pool2d.comp +0 -0
  1888. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/quantize_q8_1.comp +0 -0
  1889. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/reglu.comp +0 -0
  1890. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/relu.comp +0 -0
  1891. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/repeat.comp +0 -0
  1892. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/repeat_back.comp +0 -0
  1893. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/rms_norm.comp +0 -0
  1894. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/rms_norm_back.comp +0 -0
  1895. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/rms_norm_partials.comp +0 -0
  1896. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/roll.comp +0 -0
  1897. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/rope_funcs.glsl +0 -0
  1898. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/rope_head.glsl +0 -0
  1899. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/rope_multi.comp +0 -0
  1900. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/rope_neox.comp +0 -0
  1901. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/rope_norm.comp +0 -0
  1902. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/rope_params.glsl +0 -0
  1903. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/rope_vision.comp +0 -0
  1904. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/round.comp +0 -0
  1905. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/scale.comp +0 -0
  1906. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/sgn.comp +0 -0
  1907. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/sigmoid.comp +0 -0
  1908. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/silu.comp +0 -0
  1909. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/silu_back.comp +0 -0
  1910. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/sin.comp +0 -0
  1911. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/snake.comp +0 -0
  1912. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/soft_max.comp +0 -0
  1913. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/soft_max_back.comp +0 -0
  1914. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/soft_max_large1.comp +0 -0
  1915. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/soft_max_large2.comp +0 -0
  1916. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/soft_max_large3.comp +0 -0
  1917. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/soft_max_large_common.glsl +0 -0
  1918. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/softplus.comp +0 -0
  1919. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/solve_tri.comp +0 -0
  1920. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/sqrt.comp +0 -0
  1921. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/square.comp +0 -0
  1922. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/ssm_conv.comp +0 -0
  1923. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/ssm_scan.comp +0 -0
  1924. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/step.comp +0 -0
  1925. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/sub.comp +0 -0
  1926. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/sum_rows.comp +0 -0
  1927. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/sum_rows.glsl +0 -0
  1928. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/swiglu.comp +0 -0
  1929. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/swiglu_oai.comp +0 -0
  1930. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/tanh.comp +0 -0
  1931. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/timestep_embedding.comp +0 -0
  1932. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/topk_argsort.comp +0 -0
  1933. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/topk_moe.comp +0 -0
  1934. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/topk_nary_search.comp +0 -0
  1935. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/tri.comp +0 -0
  1936. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/trunc.comp +0 -0
  1937. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/types.glsl +0 -0
  1938. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/upscale.comp +0 -0
  1939. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/utils.glsl +0 -0
  1940. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/vulkan-shaders-gen.cpp +0 -0
  1941. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/wkv6.comp +0 -0
  1942. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/wkv7.comp +0 -0
  1943. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-vulkan/vulkan-shaders/xielu.comp +0 -0
  1944. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/CMakeLists.txt +0 -0
  1945. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/ggml-webgpu-shader-lib.hpp +0 -0
  1946. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/ggml-webgpu.cpp +0 -0
  1947. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/pre_wgsl.hpp +0 -0
  1948. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/add_id.wgsl +0 -0
  1949. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/argmax.wgsl +0 -0
  1950. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/argsort.wgsl +0 -0
  1951. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/argsort_merge.wgsl +0 -0
  1952. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/binary.wgsl +0 -0
  1953. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/common_decls.tmpl +0 -0
  1954. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/concat.wgsl +0 -0
  1955. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/conv2d.wgsl +0 -0
  1956. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/cpy.wgsl +0 -0
  1957. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/cumsum.wgsl +0 -0
  1958. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/embed_wgsl.py +0 -0
  1959. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/flash_attn.wgsl +0 -0
  1960. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/flash_attn_tile.wgsl +0 -0
  1961. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/flash_attn_vec_blk.wgsl +0 -0
  1962. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/flash_attn_vec_reduce.wgsl +0 -0
  1963. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/flash_attn_vec_split.wgsl +0 -0
  1964. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/gated_delta_net.wgsl +0 -0
  1965. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/get_rows.wgsl +0 -0
  1966. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/glu.wgsl +0 -0
  1967. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/im2col.wgsl +0 -0
  1968. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/memset.wgsl +0 -0
  1969. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_decls.tmpl +0 -0
  1970. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_id.wgsl +0 -0
  1971. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_id_gather.wgsl +0 -0
  1972. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_id_vec.wgsl +0 -0
  1973. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_reg_tile.wgsl +0 -0
  1974. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_subgroup_matrix.wgsl +0 -0
  1975. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_vec.wgsl +0 -0
  1976. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_vec_acc.tmpl +0 -0
  1977. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_vec_q_acc.tmpl +0 -0
  1978. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/pad.wgsl +0 -0
  1979. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/quantize_q8.wgsl +0 -0
  1980. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/repeat.wgsl +0 -0
  1981. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/rms_norm_mul.wgsl +0 -0
  1982. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/rope.wgsl +0 -0
  1983. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/row_norm.wgsl +0 -0
  1984. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/scale.wgsl +0 -0
  1985. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/set.wgsl +0 -0
  1986. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/set_rows.wgsl +0 -0
  1987. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/soft_max.wgsl +0 -0
  1988. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/solve_tri.wgsl +0 -0
  1989. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/ssm_conv.wgsl +0 -0
  1990. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/ssm_scan.wgsl +0 -0
  1991. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/sum_rows.wgsl +0 -0
  1992. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/unary.wgsl +0 -0
  1993. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-webgpu/wgsl-shaders/upscale.wgsl +0 -0
  1994. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-zdnn/.gitignore +0 -0
  1995. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-zdnn/CMakeLists.txt +0 -0
  1996. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-zdnn/common.hpp +0 -0
  1997. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-zdnn/ggml-zdnn.cpp +0 -0
  1998. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-zdnn/mmf.cpp +0 -0
  1999. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-zdnn/mmf.hpp +0 -0
  2000. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-zdnn/utils.cpp +0 -0
  2001. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-zdnn/utils.hpp +0 -0
  2002. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-zendnn/CMakeLists.txt +0 -0
  2003. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml-zendnn/ggml-zendnn.cpp +0 -0
  2004. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml.c +0 -0
  2005. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/ggml.cpp +0 -0
  2006. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/src/gguf.cpp +0 -0
  2007. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/tests/CMakeLists.txt +0 -0
  2008. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/tests/test-arange.cpp +0 -0
  2009. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/tests/test-backend-ops.cpp +0 -0
  2010. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/tests/test-cont.c +0 -0
  2011. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/tests/test-conv-transpose-1d.cpp +0 -0
  2012. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/tests/test-conv-transpose.c +0 -0
  2013. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/tests/test-conv1d-dw-c1.cpp +0 -0
  2014. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/tests/test-conv1d-dw-c2.cpp +0 -0
  2015. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/tests/test-conv1d.cpp +0 -0
  2016. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/tests/test-conv2d-dw.cpp +0 -0
  2017. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/tests/test-conv2d.cpp +0 -0
  2018. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/tests/test-customop.c +0 -0
  2019. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/tests/test-dup.c +0 -0
  2020. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/tests/test-interpolate.cpp +0 -0
  2021. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/tests/test-opt.cpp +0 -0
  2022. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/tests/test-pad-reflect-1d.cpp +0 -0
  2023. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/tests/test-pool.c +0 -0
  2024. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/tests/test-quantize-fns.cpp +0 -0
  2025. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/tests/test-quantize-perf.cpp +0 -0
  2026. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/tests/test-rel-pos.c +0 -0
  2027. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/tests/test-roll.cpp +0 -0
  2028. {ggml_python-0.0.38 → ggml_python-0.0.40}/vendor/ggml/tests/test-timestep_embedding.cpp +0 -0
@@ -12,10 +12,10 @@ jobs:
12
12
  ruff:
13
13
  runs-on: ubuntu-latest
14
14
  steps:
15
- - uses: actions/checkout@v4
15
+ - uses: actions/checkout@v6
16
16
 
17
17
  - name: Set up Python
18
- uses: actions/setup-python@v5
18
+ uses: actions/setup-python@v6
19
19
  with:
20
20
  python-version: "3.12"
21
21
 
@@ -2,7 +2,12 @@ name: Publish
2
2
 
3
3
  # Based on: https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/
4
4
 
5
- on: workflow_dispatch
5
+ on:
6
+ workflow_dispatch:
7
+ push:
8
+ tags:
9
+ - "v*.*.*"
10
+ - "!v*.*.*-*"
6
11
 
7
12
  jobs:
8
13
  build-n-publish:
@@ -10,11 +15,11 @@ jobs:
10
15
  runs-on: ubuntu-latest
11
16
 
12
17
  steps:
13
- - uses: actions/checkout@v4
18
+ - uses: actions/checkout@v6
14
19
  with:
15
20
  submodules: "true"
16
21
  - name: Set up Python
17
- uses: actions/setup-python@v5
22
+ uses: actions/setup-python@v6
18
23
  with:
19
24
  python-version: "3.8"
20
25
  - name: Install dependencies
@@ -25,8 +30,6 @@ jobs:
25
30
  run: |
26
31
  python3 -m build --sdist
27
32
  - name: Publish distribution to PyPI
28
- # TODO: move to tag based releases
29
- # if: startsWith(github.ref, 'refs/tags')
30
33
  uses: pypa/gh-action-pypi-publish@release/v1
31
34
  with:
32
35
  password: ${{ secrets.PYPI_API_TOKEN }}
@@ -16,11 +16,11 @@ jobs:
16
16
  python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
17
17
 
18
18
  steps:
19
- - uses: actions/checkout@v4
19
+ - uses: actions/checkout@v6
20
20
  with:
21
21
  submodules: "recursive"
22
22
  - name: Set up Python ${{ matrix.python-version }}
23
- uses: actions/setup-python@v5
23
+ uses: actions/setup-python@v6
24
24
  with:
25
25
  python-version: ${{ matrix.python-version }}
26
26
  cache: "pip"
@@ -38,6 +38,32 @@ jobs:
38
38
  run: |
39
39
  python -m pytest -s -vvvv
40
40
 
41
+ build-linux-onnx:
42
+ runs-on: ubuntu-latest
43
+
44
+ steps:
45
+ - uses: actions/checkout@v6
46
+ with:
47
+ submodules: "recursive"
48
+ - name: Set up Python 3.11
49
+ uses: actions/setup-python@v6
50
+ with:
51
+ python-version: "3.11"
52
+ cache: "pip"
53
+ - name: Install dependencies
54
+ run: |
55
+ python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools
56
+ python3 -m pip install \
57
+ --verbose \
58
+ --config-settings cmake.args='-DCMAKE_BUILD_TYPE=Debug;-DCMAKE_CXX_FLAGS=-g3;-DCMAKE_C_FLAGS=-g3' \
59
+ --config-settings cmake.verbose=true \
60
+ --config-settings logging.level=INFO \
61
+ --config-settings install.strip=false \
62
+ --editable ".[test,onnx,onnx-tests]"
63
+ - name: Test ONNX backend
64
+ run: |
65
+ python -m pytest -s -vvvv tests/test_ggml_onnx.py
66
+
41
67
  build-windows:
42
68
  runs-on: windows-latest
43
69
  strategy:
@@ -45,11 +71,11 @@ jobs:
45
71
  python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
46
72
 
47
73
  steps:
48
- - uses: actions/checkout@v4
74
+ - uses: actions/checkout@v6
49
75
  with:
50
76
  submodules: "recursive"
51
77
  - name: Set up Python ${{ matrix.python-version }}
52
- uses: actions/setup-python@v5
78
+ uses: actions/setup-python@v6
53
79
  with:
54
80
  python-version: ${{ matrix.python-version }}
55
81
  cache: "pip"
@@ -69,11 +95,11 @@ jobs:
69
95
  python-version: ["3.9", "3.10", "3.11", "3.12"]
70
96
 
71
97
  steps:
72
- - uses: actions/checkout@v4
98
+ - uses: actions/checkout@v6
73
99
  with:
74
100
  submodules: "recursive"
75
101
  - name: Set up Python ${{ matrix.python-version }}
76
- uses: actions/setup-python@v5
102
+ uses: actions/setup-python@v6
77
103
  with:
78
104
  python-version: ${{ matrix.python-version }}
79
105
  cache: "pip"
@@ -99,11 +125,11 @@ jobs:
99
125
  build-macos-intel:
100
126
  runs-on: macos-15-intel
101
127
  steps:
102
- - uses: actions/checkout@v4
128
+ - uses: actions/checkout@v6
103
129
  with:
104
130
  submodules: "recursive"
105
131
  - name: Set up Python 3.9
106
- uses: actions/setup-python@v5
132
+ uses: actions/setup-python@v6
107
133
  with:
108
134
  python-version: "3.9"
109
135
  cache: "pip"
@@ -130,11 +156,11 @@ jobs:
130
156
  runs-on: macos-15
131
157
 
132
158
  steps:
133
- - uses: actions/checkout@v4
159
+ - uses: actions/checkout@v6
134
160
  with:
135
161
  submodules: "recursive"
136
162
  - name: Set up Python
137
- uses: actions/setup-python@v5
163
+ uses: actions/setup-python@v6
138
164
  with:
139
165
  python-version: "3.9"
140
166
  cache: "pip"
@@ -1,6 +1,11 @@
1
1
  name: Wheels CUDA
2
2
 
3
- on: workflow_dispatch
3
+ on:
4
+ workflow_dispatch:
5
+ push:
6
+ tags:
7
+ - "v*.*.*"
8
+ - "!v*.*.*-*"
4
9
 
5
10
  permissions:
6
11
  contents: write
@@ -63,17 +68,17 @@ jobs:
63
68
  with:
64
69
  arch: x64
65
70
 
66
- - uses: actions/checkout@v4
71
+ - uses: actions/checkout@v6
67
72
  with:
68
73
  submodules: "recursive"
69
74
 
70
- - uses: actions/setup-python@v5
75
+ - uses: actions/setup-python@v6
71
76
  with:
72
77
  python-version: ${{ matrix.pyver }}
73
78
  cache: "pip"
74
79
 
75
80
  - name: Setup Mamba
76
- uses: conda-incubator/setup-miniconda@v3.1.0
81
+ uses: conda-incubator/setup-miniconda@v4.0.1
77
82
  with:
78
83
  activate-environment: "ggml"
79
84
  python-version: ${{ matrix.pyver }}
@@ -224,7 +229,7 @@ jobs:
224
229
  # Publish tags that reflect the actual installed toolkit version.
225
230
  Write-Output "CUDA_VERSION=$cudaTagVersion" >> $env:GITHUB_ENV
226
231
 
227
- - uses: softprops/action-gh-release@v2
232
+ - uses: softprops/action-gh-release@v3
228
233
  if: startsWith(github.ref, 'refs/tags/')
229
234
  with:
230
235
  files: dist/*
@@ -1,9 +1,11 @@
1
1
  name: Wheels Index
2
2
 
3
3
  on:
4
- # Trigger on any new release
5
- release:
6
- types: [published]
4
+ # Trigger when release-asset workflows complete.
5
+ workflow_run:
6
+ workflows: ["Publish", "Wheels", "Wheels CUDA", "Wheels Metal", "Wheels Vulkan", "Wheels ROCm"]
7
+ types:
8
+ - completed
7
9
 
8
10
  # Allows you to run this workflow manually from the Actions tab
9
11
  workflow_dispatch:
@@ -29,11 +31,14 @@ jobs:
29
31
  runs-on: ubuntu-latest
30
32
  steps:
31
33
  - name: Checkout
32
- uses: actions/checkout@v4
34
+ uses: actions/checkout@v6
33
35
  - name: Setup Pages
34
- uses: actions/configure-pages@v5
36
+ uses: actions/configure-pages@v6
35
37
  - name: Build
38
+ env:
39
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36
40
  run: |
41
+ ./scripts/get-releases.sh
37
42
  ./scripts/releases-to-pep-503.sh index/whl/cpu '^[v]?[0-9]+\.[0-9]+\.[0-9]+$'
38
43
  ./scripts/releases-to-pep-503.sh index/whl/cu118 '^[v]?[0-9]+\.[0-9]+\.[0-9]+-cu118$'
39
44
  ./scripts/releases-to-pep-503.sh index/whl/cu121 '^[v]?[0-9]+\.[0-9]+\.[0-9]+-cu121$'
@@ -43,12 +48,15 @@ jobs:
43
48
  ./scripts/releases-to-pep-503.sh index/whl/cu125 '^[v]?[0-9]+\.[0-9]+\.[0-9]+-cu125$'
44
49
  ./scripts/releases-to-pep-503.sh index/whl/cu130 '^[v]?[0-9]+\.[0-9]+\.[0-9]+-cu130$'
45
50
  ./scripts/releases-to-pep-503.sh index/whl/cu132 '^[v]?[0-9]+\.[0-9]+\.[0-9]+-cu132$'
51
+ ./scripts/releases-to-pep-503.sh index/whl/vulkan '^[v]?[0-9]+\.[0-9]+\.[0-9]+-vulkan$'
52
+ ./scripts/releases-to-pep-503.sh index/whl/rocm72 '^[v]?[0-9]+\.[0-9]+\.[0-9]+-rocm72$'
53
+ ./scripts/releases-to-pep-503.sh index/whl/hip-radeon '^[v]?[0-9]+\.[0-9]+\.[0-9]+-hip-radeon$'
46
54
  ./scripts/releases-to-pep-503.sh index/whl/metal '^[v]?[0-9]+\.[0-9]+\.[0-9]+-metal$'
47
55
  - name: Upload artifact
48
- uses: actions/upload-pages-artifact@v3
56
+ uses: actions/upload-pages-artifact@v5
49
57
  with:
50
58
  # Upload entire repository
51
- path: "index"
59
+ path: 'index'
52
60
  - name: Deploy to GitHub Pages
53
61
  id: deployment
54
- uses: actions/deploy-pages@v4
62
+ uses: actions/deploy-pages@v5
@@ -1,6 +1,11 @@
1
1
  name: Wheels Metal
2
2
 
3
- on: workflow_dispatch
3
+ on:
4
+ workflow_dispatch:
5
+ push:
6
+ tags:
7
+ - "v*.*.*"
8
+ - "!v*.*.*-*"
4
9
 
5
10
  permissions:
6
11
  contents: write
@@ -14,18 +19,18 @@ jobs:
14
19
  os: [macos-14, macos-15]
15
20
 
16
21
  steps:
17
- - uses: actions/checkout@v4
22
+ - uses: actions/checkout@v6
18
23
  with:
19
24
  submodules: "recursive"
20
25
 
21
26
  # Used to host cibuildwheel.
22
- - uses: actions/setup-python@v5
27
+ - uses: actions/setup-python@v6
23
28
  with:
24
29
  python-version: "3.12"
25
30
  cache: "pip"
26
31
 
27
32
  - name: Build wheels
28
- uses: pypa/cibuildwheel@v2.22.0
33
+ uses: pypa/cibuildwheel@v3.4.1
29
34
  env:
30
35
  CIBW_REPAIR_WHEEL_COMMAND: ""
31
36
  CIBW_ARCHS: "arm64"
@@ -37,7 +42,7 @@ jobs:
37
42
  package-dir: .
38
43
  output-dir: wheelhouse
39
44
 
40
- - uses: actions/upload-artifact@v4
45
+ - uses: actions/upload-artifact@v7
41
46
  with:
42
47
  name: wheels-mac_${{ matrix.os }}
43
48
  path: ./wheelhouse/*.whl
@@ -49,12 +54,12 @@ jobs:
49
54
  runs-on: ubuntu-latest
50
55
 
51
56
  steps:
52
- - uses: actions/download-artifact@v4
57
+ - uses: actions/download-artifact@v8
53
58
  with:
54
59
  merge-multiple: true
55
60
  path: dist
56
61
 
57
- - uses: softprops/action-gh-release@v2
62
+ - uses: softprops/action-gh-release@v3
58
63
  with:
59
64
  files: dist/*
60
65
  # Set release name to <tag>-metal.
@@ -0,0 +1,228 @@
1
+ name: Wheels ROCm
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ amdgpu_targets:
7
+ description: AMDGPU targets to compile into the Linux ROCm wheel
8
+ required: false
9
+ default: gfx908;gfx90a;gfx942;gfx1030;gfx1100;gfx1101;gfx1102;gfx1150;gfx1151;gfx1200;gfx1201
10
+ windows_amdgpu_targets:
11
+ description: AMDGPU targets to compile into the Windows HIP Radeon wheel
12
+ required: false
13
+ default: gfx1150;gfx1151;gfx1200;gfx1201;gfx1100;gfx1101;gfx1102;gfx1030;gfx1031;gfx1032
14
+ push:
15
+ tags:
16
+ - "v*.*.*"
17
+ - "!v*.*.*-*"
18
+
19
+ permissions:
20
+ contents: write
21
+
22
+ jobs:
23
+ build_wheels:
24
+ name: Build Wheel ${{ matrix.os }} ${{ matrix.pyver }} ROCm ${{ matrix.rocm }}
25
+ runs-on: ${{ matrix.os }}
26
+ container:
27
+ image: rocm/dev-ubuntu-22.04:${{ matrix.rocm }}-complete
28
+ strategy:
29
+ matrix:
30
+ include:
31
+ - os: ubuntu-22.04
32
+ pyver: "3.9"
33
+ rocm: "7.2.4"
34
+ amdgpu_targets: gfx908;gfx90a;gfx942;gfx1030;gfx1100;gfx1101;gfx1102;gfx1150;gfx1151;gfx1200;gfx1201
35
+
36
+ steps:
37
+ - name: Install system dependencies
38
+ run: |
39
+ apt-get update
40
+ apt-get install -y --no-install-recommends git cmake lsb-release ninja-build
41
+
42
+ - uses: actions/checkout@v6
43
+ with:
44
+ submodules: "recursive"
45
+
46
+ - uses: actions/setup-python@v6
47
+ with:
48
+ python-version: ${{ matrix.pyver }}
49
+
50
+ - name: Install dependencies
51
+ run: |
52
+ python -m pip install --upgrade pip
53
+ python -m pip install build wheel
54
+
55
+ - name: Build wheel
56
+ env:
57
+ MATRIX_AMDGPU_TARGETS: ${{ matrix.amdgpu_targets }}
58
+ INPUT_AMDGPU_TARGETS: ${{ inputs.amdgpu_targets }}
59
+ run: |
60
+ export ROCM_PATH="${ROCM_PATH:-/opt/rocm}"
61
+ export HIP_PATH="${HIP_PATH:-$ROCM_PATH}"
62
+ export PATH="$ROCM_PATH/bin:$ROCM_PATH/llvm/bin:$PATH"
63
+ export LD_LIBRARY_PATH="$ROCM_PATH/lib:$ROCM_PATH/lib64:${LD_LIBRARY_PATH:-}"
64
+ export CC="$ROCM_PATH/llvm/bin/clang"
65
+ export CXX="$ROCM_PATH/llvm/bin/clang++"
66
+ export HIPCXX="$ROCM_PATH/llvm/bin/clang"
67
+ export CMAKE_GENERATOR=Ninja
68
+
69
+ hipconfig --version
70
+ hipcc --version
71
+
72
+ rocm_tag="$(hipconfig --version | sed -E 's/^([0-9]+)\.([0-9]+).*/\1\2/')"
73
+ echo "ROCM_VERSION=$rocm_tag" >> "$GITHUB_ENV"
74
+
75
+ amdgpu_targets="${INPUT_AMDGPU_TARGETS:-$MATRIX_AMDGPU_TARGETS}"
76
+ export CMAKE_ARGS="-DGGML_HIP=on -DGGML_NATIVE=off -DGGML_AVX=off -DGGML_AVX2=off -DGGML_FMA=off -DGGML_F16C=off -DAMDGPU_TARGETS=$amdgpu_targets -DCMAKE_HIP_ARCHITECTURES=$amdgpu_targets"
77
+ python -m build --wheel
78
+
79
+ - uses: actions/upload-artifact@v7
80
+ with:
81
+ name: wheels-rocm${{ env.ROCM_VERSION }}-${{ matrix.os }}
82
+ path: dist/*.whl
83
+
84
+ - uses: softprops/action-gh-release@v3
85
+ if: startsWith(github.ref, 'refs/tags/')
86
+ with:
87
+ files: dist/*
88
+ # Set tag_name to <tag>-rocm<rocm_version>.
89
+ tag_name: ${{ github.ref_name }}-rocm${{ env.ROCM_VERSION }}
90
+ env:
91
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
92
+
93
+ build_wheels_windows_hip:
94
+ name: Build Wheel windows-2022 ${{ matrix.pyver }} HIP ${{ matrix.name }}
95
+ runs-on: windows-2022
96
+ env:
97
+ HIPSDK_INSTALLER_VERSION: "26.Q1"
98
+ strategy:
99
+ matrix:
100
+ include:
101
+ - name: radeon
102
+ pyver: "3.9"
103
+ amdgpu_targets: gfx1150;gfx1151;gfx1200;gfx1201;gfx1100;gfx1101;gfx1102;gfx1030;gfx1031;gfx1032
104
+
105
+ steps:
106
+ - uses: actions/checkout@v6
107
+ with:
108
+ submodules: "recursive"
109
+
110
+ - uses: actions/setup-python@v6
111
+ with:
112
+ python-version: ${{ matrix.pyver }}
113
+ cache: "pip"
114
+
115
+ - name: Grab rocWMMA package
116
+ run: |
117
+ curl -o rocwmma.deb "https://repo.radeon.com/rocm/apt/7.2.1/pool/main/r/rocwmma-dev/rocwmma-dev_2.2.0.70201-81~24.04_amd64.deb"
118
+ 7z x rocwmma.deb
119
+ 7z x data.tar
120
+
121
+ - name: Cache ROCm installation
122
+ id: cache-rocm
123
+ uses: actions/cache@v5
124
+ with:
125
+ path: C:\Program Files\AMD\ROCm
126
+ key: cache-gha-rocm-${{ env.HIPSDK_INSTALLER_VERSION }}-${{ runner.os }}
127
+
128
+ - name: Install ROCm
129
+ if: steps.cache-rocm.outputs.cache-hit != 'true'
130
+ run: |
131
+ $ErrorActionPreference = "Stop"
132
+ Write-Host "Downloading AMD HIP SDK installer"
133
+ Invoke-WebRequest `
134
+ -Uri "https://download.amd.com/developer/eula/rocm-hub/AMD-Software-PRO-Edition-${{ env.HIPSDK_INSTALLER_VERSION }}-Win11-For-HIP.exe" `
135
+ -OutFile "${env:RUNNER_TEMP}\rocm-install.exe"
136
+ Write-Host "Installing AMD HIP SDK"
137
+ $proc = Start-Process "${env:RUNNER_TEMP}\rocm-install.exe" -ArgumentList '-install' -NoNewWindow -PassThru
138
+ $completed = $proc.WaitForExit(1800000)
139
+ if (-not $completed) {
140
+ Write-Error "ROCm installation timed out after 30 minutes"
141
+ $proc.Kill()
142
+ exit 1
143
+ }
144
+ if ($proc.ExitCode -ne 0) {
145
+ Write-Error "ROCm installation failed with exit code $($proc.ExitCode)"
146
+ exit 1
147
+ }
148
+
149
+ - name: Verify ROCm
150
+ run: |
151
+ $clangPath = Get-ChildItem 'C:\Program Files\AMD\ROCm\*\bin\clang.exe' | Select-Object -First 1
152
+ if (-not $clangPath) {
153
+ Write-Error "ROCm installation not found"
154
+ exit 1
155
+ }
156
+ & $clangPath.FullName --version
157
+
158
+ - name: Install dependencies
159
+ run: |
160
+ python -m pip install --upgrade pip
161
+ python -m pip install build wheel
162
+
163
+ - name: Build wheel
164
+ env:
165
+ MATRIX_AMDGPU_TARGETS: ${{ matrix.amdgpu_targets }}
166
+ INPUT_AMDGPU_TARGETS: ${{ inputs.windows_amdgpu_targets }}
167
+ run: |
168
+ $ErrorActionPreference = "Stop"
169
+ $hipPath = Resolve-Path 'C:\Program Files\AMD\ROCm\*\bin\clang.exe' | Split-Path | Split-Path
170
+ $rocwmmaInclude = (Join-Path $PWD 'opt\rocm-7.2.1\include').Replace('\', '/')
171
+ $amdgpuTargets = if ($env:INPUT_AMDGPU_TARGETS) { $env:INPUT_AMDGPU_TARGETS } else { $env:MATRIX_AMDGPU_TARGETS }
172
+
173
+ $env:HIP_PATH = $hipPath
174
+ $env:ROCM_PATH = $hipPath
175
+ $env:CMAKE_PREFIX_PATH = $hipPath
176
+ $env:HIP_PLATFORM = 'amd'
177
+ $env:PATH = "$hipPath\bin;$env:PATH"
178
+ $env:CC = "$hipPath\bin\clang.exe"
179
+ $env:CXX = "$hipPath\bin\clang++.exe"
180
+ $env:HIPCXX = "$hipPath\bin\clang.exe"
181
+ $env:CMAKE_GENERATOR = 'Unix Makefiles'
182
+ $env:CXXFLAGS = "-I$rocwmmaInclude -Wno-ignored-attributes -Wno-nested-anon-types"
183
+ $env:CMAKE_ARGS = "-DGGML_HIP=ON -DGGML_HIP_ROCWMMA_FATTN=ON -DGGML_NATIVE=OFF -DGGML_AVX=OFF -DGGML_AVX2=OFF -DGGML_FMA=OFF -DGGML_F16C=OFF -DGPU_TARGETS=$amdgpuTargets"
184
+
185
+ python -m build --wheel
186
+
187
+ - name: Bundle ROCm runtime DLLs
188
+ run: |
189
+ $ErrorActionPreference = "Stop"
190
+ $hipPath = Resolve-Path 'C:\Program Files\AMD\ROCm\*\bin\clang.exe' | Split-Path | Split-Path
191
+ $wheel = Get-ChildItem dist\*.whl | Select-Object -First 1
192
+ python -m wheel unpack $wheel.FullName -d wheel-unpacked
193
+ $wheelRoot = Get-ChildItem wheel-unpacked -Directory | Select-Object -First 1
194
+ $libDir = Join-Path $wheelRoot.FullName 'ggml\lib'
195
+ New-Item -ItemType Directory -Force $libDir | Out-Null
196
+
197
+ $dllPatterns = @(
198
+ 'amdhip64.dll',
199
+ 'hiprtc*.dll',
200
+ 'libhipblas.dll',
201
+ 'libhipblaslt.dll',
202
+ 'rocblas.dll'
203
+ )
204
+ foreach ($pattern in $dllPatterns) {
205
+ Copy-Item (Join-Path $hipPath "bin\$pattern") $libDir -ErrorAction SilentlyContinue
206
+ }
207
+
208
+ New-Item -ItemType Directory -Force (Join-Path $libDir 'rocblas\library') | Out-Null
209
+ New-Item -ItemType Directory -Force (Join-Path $libDir 'hipblaslt\library') | Out-Null
210
+ Copy-Item "$hipPath\bin\rocblas\library\*" (Join-Path $libDir 'rocblas\library') -Recurse -Force
211
+ Copy-Item "$hipPath\bin\hipblaslt\library\*" (Join-Path $libDir 'hipblaslt\library') -Recurse -Force
212
+
213
+ Remove-Item dist\*.whl
214
+ python -m wheel pack $wheelRoot.FullName -d dist
215
+
216
+ - uses: actions/upload-artifact@v7
217
+ with:
218
+ name: wheels-hip-${{ matrix.name }}-windows-2022
219
+ path: dist/*.whl
220
+
221
+ - uses: softprops/action-gh-release@v3
222
+ if: startsWith(github.ref, 'refs/tags/')
223
+ with:
224
+ files: dist/*
225
+ # Set tag_name to <tag>-hip-radeon.
226
+ tag_name: ${{ github.ref_name }}-hip-${{ matrix.name }}
227
+ env:
228
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -0,0 +1,128 @@
1
+ name: Wheels Vulkan
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "v*.*.*"
7
+ - "!v*.*.*-*"
8
+ workflow_dispatch:
9
+
10
+ permissions:
11
+ contents: write
12
+
13
+ env:
14
+ VULKAN_SDK_VERSION: "1.4.341.0"
15
+ VULKAN_SDK_LINUX_SHA256: "ed66477d587a5587dc3601b1c2cdcc1fab5529c505f53a00171876cecd9b4fbe"
16
+
17
+ jobs:
18
+ build_wheels:
19
+ name: Build Vulkan wheel on ${{ matrix.os }}
20
+ runs-on: ${{ matrix.os }}
21
+ strategy:
22
+ fail-fast: false
23
+ matrix:
24
+ include:
25
+ - os: ubuntu-22.04
26
+ pyver: "3.9"
27
+ artifact: wheels-vulkan-ubuntu-22.04
28
+ - os: windows-2022
29
+ pyver: "3.9"
30
+ artifact: wheels-vulkan-windows-2022
31
+
32
+ steps:
33
+ - name: Set up MSVC
34
+ if: runner.os == 'Windows'
35
+ uses: ilammy/msvc-dev-cmd@v1
36
+ with:
37
+ arch: x64
38
+
39
+ - uses: actions/checkout@v6
40
+ with:
41
+ submodules: "recursive"
42
+
43
+ - uses: actions/setup-python@v6
44
+ with:
45
+ python-version: ${{ matrix.pyver }}
46
+ cache: "pip"
47
+
48
+ - name: Install Vulkan SDK
49
+ if: runner.os == 'Linux'
50
+ run: |
51
+ curl -fL \
52
+ "https://sdk.lunarg.com/sdk/download/${VULKAN_SDK_VERSION}/linux/vulkansdk-linux-x86_64-${VULKAN_SDK_VERSION}.tar.xz" \
53
+ -o vulkan-sdk.tar.xz
54
+ echo "${VULKAN_SDK_LINUX_SHA256} vulkan-sdk.tar.xz" | sha256sum -c -
55
+ mkdir -p "$RUNNER_TEMP/vulkan-sdk"
56
+ tar -xf vulkan-sdk.tar.xz -C "$RUNNER_TEMP/vulkan-sdk"
57
+ source "$RUNNER_TEMP/vulkan-sdk/${VULKAN_SDK_VERSION}/setup-env.sh"
58
+ {
59
+ echo "VULKAN_SDK=$VULKAN_SDK"
60
+ echo "LD_LIBRARY_PATH=$VULKAN_SDK/lib:${LD_LIBRARY_PATH:-}"
61
+ } >> "$GITHUB_ENV"
62
+ echo "$VULKAN_SDK/bin" >> "$GITHUB_PATH"
63
+ "$VULKAN_SDK/bin/glslc" --version
64
+
65
+ - name: Install Vulkan SDK
66
+ if: runner.os == 'Windows'
67
+ shell: pwsh
68
+ run: |
69
+ choco install vulkan-sdk --version="$env:VULKAN_SDK_VERSION" --no-progress -y
70
+ $vulkanSdk = Join-Path 'C:\VulkanSDK' $env:VULKAN_SDK_VERSION
71
+ if (-not (Test-Path $vulkanSdk)) {
72
+ throw "Failed to find Vulkan SDK at $vulkanSdk"
73
+ }
74
+ "VULKAN_SDK=$vulkanSdk" >> $env:GITHUB_ENV
75
+ "$vulkanSdk\Bin" >> $env:GITHUB_PATH
76
+ & "$vulkanSdk\Bin\glslc.exe" --version
77
+
78
+ - name: Install build dependencies
79
+ run: |
80
+ python -m pip install --upgrade pip
81
+ python -m pip install build wheel
82
+
83
+ - name: Install Windows build dependencies
84
+ if: runner.os == 'Windows'
85
+ run: python -m pip install ninja
86
+
87
+ - name: Build Vulkan wheel
88
+ if: runner.os == 'Linux'
89
+ run: |
90
+ export CMAKE_ARGS="-DGGML_NATIVE=off -DGGML_METAL=OFF -DGGML_VULKAN=on"
91
+ python -m build --wheel
92
+ mkdir -p wheelhouse
93
+ cp dist/*.whl wheelhouse/
94
+
95
+ - name: Build Vulkan wheel
96
+ if: runner.os == 'Windows'
97
+ shell: pwsh
98
+ run: |
99
+ $env:CMAKE_GENERATOR = 'Ninja'
100
+ $env:CMAKE_ARGS = '-DGGML_NATIVE=off -DGGML_VULKAN=on'
101
+ python -m build --wheel
102
+ New-Item -ItemType Directory -Force wheelhouse | Out-Null
103
+ Copy-Item dist/*.whl wheelhouse/
104
+
105
+ - uses: actions/upload-artifact@v7
106
+ with:
107
+ name: ${{ matrix.artifact }}
108
+ path: ./wheelhouse/*.whl
109
+
110
+ release:
111
+ name: Release
112
+ needs: [build_wheels]
113
+ if: startsWith(github.ref, 'refs/tags/')
114
+ runs-on: ubuntu-latest
115
+
116
+ steps:
117
+ - uses: actions/download-artifact@v8
118
+ with:
119
+ merge-multiple: true
120
+ path: dist
121
+
122
+ - uses: softprops/action-gh-release@v3
123
+ with:
124
+ files: dist/*
125
+ # Set release name to <tag>-vulkan.
126
+ tag_name: ${{ github.ref_name }}-vulkan
127
+ env:
128
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}