transcribe-cpp-native 0.1.2__tar.gz → 0.2.0__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 (3072) hide show
  1. transcribe_cpp_native-0.2.0/.gitignore +90 -0
  2. transcribe_cpp_native-0.2.0/CMakeLists.txt +460 -0
  3. transcribe_cpp_native-0.2.0/Cargo.lock +357 -0
  4. transcribe_cpp_native-0.2.0/Cargo.toml +91 -0
  5. transcribe_cpp_native-0.2.0/PKG-INFO +52 -0
  6. transcribe_cpp_native-0.2.0/README.md +226 -0
  7. transcribe_cpp_native-0.2.0/RELEASING.md +41 -0
  8. transcribe_cpp_native-0.2.0/bindings/python/README.md +104 -0
  9. transcribe_cpp_native-0.2.0/bindings/python/pyproject.toml +71 -0
  10. transcribe_cpp_native-0.2.0/bindings/python/src/transcribe_cpp/__init__.py +1490 -0
  11. transcribe_cpp_native-0.2.0/bindings/python/src/transcribe_cpp/_generated.py +435 -0
  12. transcribe_cpp_native-0.2.0/bindings/python/src/transcribe_cpp/_library.py +386 -0
  13. transcribe_cpp_native-0.2.0/bindings/python/tests/test_backends.py +107 -0
  14. transcribe_cpp_native-0.2.0/bindings/python/tests/test_device_select.py +38 -0
  15. transcribe_cpp_native-0.2.0/bindings/python/tests/test_family_ext.py +220 -0
  16. transcribe_cpp_native-0.2.0/bindings/python/tests/test_provider_discovery.py +342 -0
  17. transcribe_cpp_native-0.2.0/bindings/python/uv.lock +416 -0
  18. transcribe_cpp_native-0.2.0/bindings/rust/sys/README.md +98 -0
  19. transcribe_cpp_native-0.2.0/bindings/rust/sys/build.rs +530 -0
  20. transcribe_cpp_native-0.2.0/bindings/rust/sys/src/transcribe_sys.rs +1346 -0
  21. transcribe_cpp_native-0.2.0/bindings/rust/transcribe-cpp/Cargo.toml +49 -0
  22. transcribe_cpp_native-0.2.0/bindings/rust/transcribe-cpp/README.md +162 -0
  23. transcribe_cpp_native-0.2.0/bindings/rust/transcribe-cpp/examples/backend-select.rs +94 -0
  24. transcribe_cpp_native-0.2.0/bindings/rust/transcribe-cpp/src/backend.rs +195 -0
  25. transcribe_cpp_native-0.2.0/bindings/rust/transcribe-cpp/src/family.rs +261 -0
  26. transcribe_cpp_native-0.2.0/bindings/rust/transcribe-cpp/src/lib.rs +95 -0
  27. transcribe_cpp_native-0.2.0/bindings/rust/transcribe-cpp/src/model.rs +339 -0
  28. transcribe_cpp_native-0.2.0/bindings/rust/transcribe-cpp/src/result.rs +186 -0
  29. transcribe_cpp_native-0.2.0/bindings/rust/transcribe-cpp/src/session.rs +629 -0
  30. transcribe_cpp_native-0.2.0/bindings/rust/transcribe-cpp/src/types.rs +335 -0
  31. transcribe_cpp_native-0.2.0/bindings/rust/transcribe-cpp/tests/degradation.rs +90 -0
  32. transcribe_cpp_native-0.2.0/bindings/rust/transcribe-cpp/tests/device_select.rs +60 -0
  33. transcribe_cpp_native-0.2.0/bindings/rust/transcribe-cpp/tests/no_model.rs +129 -0
  34. transcribe_cpp_native-0.2.0/bindings/swift/README.md +124 -0
  35. transcribe_cpp_native-0.2.0/bindings/swift/Sources/TranscribeCpp/ABIHash.swift +20 -0
  36. transcribe_cpp_native-0.2.0/bindings/swift/Sources/TranscribeCpp/Backend.swift +132 -0
  37. transcribe_cpp_native-0.2.0/bindings/swift/Sources/TranscribeCpp/Family.swift +207 -0
  38. transcribe_cpp_native-0.2.0/bindings/swift/Sources/TranscribeCpp/Model.swift +107 -0
  39. transcribe_cpp_native-0.2.0/bindings/swift/Sources/TranscribeCpp/Options.swift +198 -0
  40. transcribe_cpp_native-0.2.0/bindings/swift/Sources/TranscribeCpp/Session.swift +270 -0
  41. transcribe_cpp_native-0.2.0/bindings/swift/Sources/TranscribeCpp/TranscribeCpp.swift +95 -0
  42. transcribe_cpp_native-0.2.0/bindings/swift/Sources/TranscribeCpp/Transcript.swift +159 -0
  43. transcribe_cpp_native-0.2.0/bindings/swift/Sources/backend-select/main.swift +42 -0
  44. transcribe_cpp_native-0.2.0/bindings/swift/Tests/TranscribeCppTests/DeviceSelectTests.swift +33 -0
  45. transcribe_cpp_native-0.2.0/bindings/swift/Tests/TranscribeCppTests/NoModelTests.swift +113 -0
  46. transcribe_cpp_native-0.2.0/bindings/typescript/README.md +263 -0
  47. transcribe_cpp_native-0.2.0/bindings/typescript/examples/backend-select.mjs +45 -0
  48. transcribe_cpp_native-0.2.0/bindings/typescript/package-lock.json +309 -0
  49. transcribe_cpp_native-0.2.0/bindings/typescript/package.json +51 -0
  50. transcribe_cpp_native-0.2.0/bindings/typescript/src/_generated.ts +291 -0
  51. transcribe_cpp_native-0.2.0/bindings/typescript/src/ffi.ts +272 -0
  52. transcribe_cpp_native-0.2.0/bindings/typescript/src/index.ts +1474 -0
  53. transcribe_cpp_native-0.2.0/bindings/typescript/src/types.ts +258 -0
  54. transcribe_cpp_native-0.2.0/bindings/typescript/test/device-select.test.mjs +44 -0
  55. transcribe_cpp_native-0.2.0/bindings/typescript/test/no-model.test.mjs +117 -0
  56. transcribe_cpp_native-0.2.0/cmake/transcribe-backend-kinds.cmake +53 -0
  57. transcribe_cpp_native-0.2.0/cmake/transcribe-install.cmake +269 -0
  58. transcribe_cpp_native-0.2.0/docs/bindings.md +103 -0
  59. transcribe_cpp_native-0.2.0/docs/build-windows.md +220 -0
  60. transcribe_cpp_native-0.2.0/docs/environment-variables.md +100 -0
  61. transcribe_cpp_native-0.2.0/docs/extension-kinds.md +56 -0
  62. transcribe_cpp_native-0.2.0/docs/migrating-to-0.2.md +158 -0
  63. transcribe_cpp_native-0.2.0/docs/models/diar_streaming_sortformer_4spk-v2.1.md +217 -0
  64. transcribe_cpp_native-0.2.0/docs/models/granite-speech-4.1-2b-plus.md +207 -0
  65. transcribe_cpp_native-0.2.0/docs/models/granite-speech.md +115 -0
  66. transcribe_cpp_native-0.2.0/docs/models/moss-transcribe-diarize.md +231 -0
  67. transcribe_cpp_native-0.2.0/docs/models/multitalker-parakeet-streaming-0.6b-v1.md +280 -0
  68. transcribe_cpp_native-0.2.0/docs/models/parakeet-primeline.md +169 -0
  69. transcribe_cpp_native-0.2.0/docs/models/parakeet.md +127 -0
  70. transcribe_cpp_native-0.2.0/docs/porting/families/_intake-schema.json +312 -0
  71. transcribe_cpp_native-0.2.0/docs/porting/families/moss.md +227 -0
  72. transcribe_cpp_native-0.2.0/docs/porting/families/parakeet.md +536 -0
  73. transcribe_cpp_native-0.2.0/docs/porting/families/sortformer.md +256 -0
  74. transcribe_cpp_native-0.2.0/docs/tools/README.md +75 -0
  75. transcribe_cpp_native-0.2.0/docs/tools/hf-metadata-schema.md +73 -0
  76. transcribe_cpp_native-0.2.0/docs/tools/wer.md +230 -0
  77. transcribe_cpp_native-0.2.0/examples/bench/batch_bench.cpp +223 -0
  78. transcribe_cpp_native-0.2.0/examples/cli/main.cpp +1498 -0
  79. transcribe_cpp_native-0.2.0/include/transcribe/extensions.h +23 -0
  80. transcribe_cpp_native-0.2.0/include/transcribe/sortformer.h +81 -0
  81. transcribe_cpp_native-0.2.0/include/transcribe.abihash +1 -0
  82. transcribe_cpp_native-0.2.0/include/transcribe.h +2653 -0
  83. transcribe_cpp_native-0.2.0/scripts/batch_tensor_parity.py +166 -0
  84. transcribe_cpp_native-0.2.0/scripts/bench/run.py +804 -0
  85. transcribe_cpp_native-0.2.0/scripts/ci/check_lane_mirror.py +206 -0
  86. transcribe_cpp_native-0.2.0/scripts/ci/link_smoke.c +57 -0
  87. transcribe_cpp_native-0.2.0/scripts/ci/wheel_smoke.py +182 -0
  88. transcribe_cpp_native-0.2.0/scripts/compose-multitalker-bundle.py +169 -0
  89. transcribe_cpp_native-0.2.0/scripts/convert-moss.py +705 -0
  90. transcribe_cpp_native-0.2.0/scripts/convert-parakeet.py +1902 -0
  91. transcribe_cpp_native-0.2.0/scripts/convert-sortformer.py +316 -0
  92. transcribe_cpp_native-0.2.0/scripts/diar/compare_compress_spkcache.py +238 -0
  93. transcribe_cpp_native-0.2.0/scripts/diar/fetch_ami_forced_alignment.py +73 -0
  94. transcribe_cpp_native-0.2.0/scripts/diar/ingest_ami.py +127 -0
  95. transcribe_cpp_native-0.2.0/scripts/diar/ingest_ami_seglst.py +154 -0
  96. transcribe_cpp_native-0.2.0/scripts/diar/modal_multitalker_cpp.py +139 -0
  97. transcribe_cpp_native-0.2.0/scripts/diar/modal_multitalker_ref.py +127 -0
  98. transcribe_cpp_native-0.2.0/scripts/diar/postprocessing/diar_streaming_sortformer_4spk-v2_callhome-part1.yaml +11 -0
  99. transcribe_cpp_native-0.2.0/scripts/diar/postprocessing/diar_streaming_sortformer_4spk-v2_dihard3-dev.yaml +11 -0
  100. transcribe_cpp_native-0.2.0/scripts/diar/run_cpp_multitalker.py +116 -0
  101. transcribe_cpp_native-0.2.0/scripts/diar/run_cpp_sortformer.py +171 -0
  102. transcribe_cpp_native-0.2.0/scripts/diar/run_reference_sortformer_nemo.py +130 -0
  103. transcribe_cpp_native-0.2.0/scripts/diar/score_cpwer.py +126 -0
  104. transcribe_cpp_native-0.2.0/scripts/diar/score_der.py +130 -0
  105. transcribe_cpp_native-0.2.0/scripts/dump_reference_moss_author.py +518 -0
  106. transcribe_cpp_native-0.2.0/scripts/dump_reference_multitalker_nemo.py +320 -0
  107. transcribe_cpp_native-0.2.0/scripts/dump_reference_sortformer_nemo.py +299 -0
  108. transcribe_cpp_native-0.2.0/scripts/envs/moss/pyproject.toml +17 -0
  109. transcribe_cpp_native-0.2.0/scripts/envs/moss/uv.lock +1274 -0
  110. transcribe_cpp_native-0.2.0/scripts/envs/sortformer/pyproject.toml +28 -0
  111. transcribe_cpp_native-0.2.0/scripts/envs/sortformer/uv.lock +3225 -0
  112. transcribe_cpp_native-0.2.0/scripts/gen_multitalker_oracle_audio.py +119 -0
  113. transcribe_cpp_native-0.2.0/scripts/gen_sortformer_oracle_audio.py +112 -0
  114. transcribe_cpp_native-0.2.0/scripts/hf_cards/diar_streaming_sortformer_4spk-v2.1.yaml +86 -0
  115. transcribe_cpp_native-0.2.0/scripts/hf_cards/generate.py +169 -0
  116. transcribe_cpp_native-0.2.0/scripts/hf_cards/granite-speech-4.1-2b-plus.yaml +115 -0
  117. transcribe_cpp_native-0.2.0/scripts/hf_cards/moss-transcribe-diarize.yaml +109 -0
  118. transcribe_cpp_native-0.2.0/scripts/hf_cards/multitalker-parakeet-streaming-0.6b-v1.yaml +123 -0
  119. transcribe_cpp_native-0.2.0/scripts/hf_cards/parakeet-primeline.yaml +134 -0
  120. transcribe_cpp_native-0.2.0/scripts/intake.py +474 -0
  121. transcribe_cpp_native-0.2.0/scripts/lib/quant_policy.py +76 -0
  122. transcribe_cpp_native-0.2.0/scripts/lib/test_quant_policy_sync.py +236 -0
  123. transcribe_cpp_native-0.2.0/scripts/release/prepare.py +224 -0
  124. transcribe_cpp_native-0.2.0/scripts/validate.py +1000 -0
  125. transcribe_cpp_native-0.2.0/scripts/wer/der.py +546 -0
  126. transcribe_cpp_native-0.2.0/scripts/wer/remote/modal_sweep.py +1246 -0
  127. transcribe_cpp_native-0.2.0/scripts/wer/run.py +520 -0
  128. transcribe_cpp_native-0.2.0/scripts/wer/run_reference_moss_author.py +200 -0
  129. transcribe_cpp_native-0.2.0/scripts/wer/score.py +302 -0
  130. transcribe_cpp_native-0.2.0/scripts/wer/test_der.py +131 -0
  131. transcribe_cpp_native-0.2.0/src/CMakeLists.txt +289 -0
  132. transcribe_cpp_native-0.2.0/src/arch/canary/model.cpp +1832 -0
  133. transcribe_cpp_native-0.2.0/src/arch/canary_qwen/model.cpp +1695 -0
  134. transcribe_cpp_native-0.2.0/src/arch/cohere/model.cpp +1768 -0
  135. transcribe_cpp_native-0.2.0/src/arch/funasr_nano/model.cpp +1398 -0
  136. transcribe_cpp_native-0.2.0/src/arch/gigaam/model.cpp +799 -0
  137. transcribe_cpp_native-0.2.0/src/arch/granite/diarize.cpp +142 -0
  138. transcribe_cpp_native-0.2.0/src/arch/granite/diarize.h +56 -0
  139. transcribe_cpp_native-0.2.0/src/arch/granite/model.cpp +1844 -0
  140. transcribe_cpp_native-0.2.0/src/arch/granite_nar/model.cpp +785 -0
  141. transcribe_cpp_native-0.2.0/src/arch/medasr/model.cpp +995 -0
  142. transcribe_cpp_native-0.2.0/src/arch/moonshine/model.cpp +1145 -0
  143. transcribe_cpp_native-0.2.0/src/arch/moonshine_streaming/model.cpp +2215 -0
  144. transcribe_cpp_native-0.2.0/src/arch/moss/capabilities.cpp +25 -0
  145. transcribe_cpp_native-0.2.0/src/arch/moss/decoder.cpp +486 -0
  146. transcribe_cpp_native-0.2.0/src/arch/moss/decoder.h +154 -0
  147. transcribe_cpp_native-0.2.0/src/arch/moss/diarize.cpp +325 -0
  148. transcribe_cpp_native-0.2.0/src/arch/moss/diarize.h +67 -0
  149. transcribe_cpp_native-0.2.0/src/arch/moss/encoder.cpp +269 -0
  150. transcribe_cpp_native-0.2.0/src/arch/moss/encoder.h +73 -0
  151. transcribe_cpp_native-0.2.0/src/arch/moss/model.cpp +1376 -0
  152. transcribe_cpp_native-0.2.0/src/arch/moss/moss.h +104 -0
  153. transcribe_cpp_native-0.2.0/src/arch/moss/weights.cpp +443 -0
  154. transcribe_cpp_native-0.2.0/src/arch/moss/weights.h +182 -0
  155. transcribe_cpp_native-0.2.0/src/arch/parakeet/encoder.cpp +983 -0
  156. transcribe_cpp_native-0.2.0/src/arch/parakeet/encoder.h +307 -0
  157. transcribe_cpp_native-0.2.0/src/arch/parakeet/model.cpp +3378 -0
  158. transcribe_cpp_native-0.2.0/src/arch/parakeet/multitalker.cpp +702 -0
  159. transcribe_cpp_native-0.2.0/src/arch/parakeet/parakeet.h +390 -0
  160. transcribe_cpp_native-0.2.0/src/arch/parakeet/weights.cpp +948 -0
  161. transcribe_cpp_native-0.2.0/src/arch/parakeet/weights.h +396 -0
  162. transcribe_cpp_native-0.2.0/src/arch/qwen3_asr/model.cpp +1731 -0
  163. transcribe_cpp_native-0.2.0/src/arch/sensevoice/model.cpp +880 -0
  164. transcribe_cpp_native-0.2.0/src/arch/sortformer/capabilities.cpp +35 -0
  165. transcribe_cpp_native-0.2.0/src/arch/sortformer/model.cpp +1148 -0
  166. transcribe_cpp_native-0.2.0/src/arch/sortformer/sortformer.h +269 -0
  167. transcribe_cpp_native-0.2.0/src/arch/sortformer/stream.cpp +475 -0
  168. transcribe_cpp_native-0.2.0/src/arch/sortformer/weights.cpp +202 -0
  169. transcribe_cpp_native-0.2.0/src/arch/sortformer/weights.h +125 -0
  170. transcribe_cpp_native-0.2.0/src/arch/voxtral/decoder.cpp +582 -0
  171. transcribe_cpp_native-0.2.0/src/arch/voxtral/decoder.h +194 -0
  172. transcribe_cpp_native-0.2.0/src/arch/voxtral/model.cpp +1602 -0
  173. transcribe_cpp_native-0.2.0/src/arch/voxtral_realtime/model.cpp +2653 -0
  174. transcribe_cpp_native-0.2.0/src/arch/whisper/bin_load.cpp +659 -0
  175. transcribe_cpp_native-0.2.0/src/arch/whisper/model.cpp +3421 -0
  176. transcribe_cpp_native-0.2.0/src/causal_lm/causal_lm.cpp +993 -0
  177. transcribe_cpp_native-0.2.0/src/causal_lm/causal_lm.h +354 -0
  178. transcribe_cpp_native-0.2.0/src/transcribe-arch.cpp +111 -0
  179. transcribe_cpp_native-0.2.0/src/transcribe-backend.cpp +151 -0
  180. transcribe_cpp_native-0.2.0/src/transcribe-backend.h +99 -0
  181. transcribe_cpp_native-0.2.0/src/transcribe-batch-util.cpp +367 -0
  182. transcribe_cpp_native-0.2.0/src/transcribe-batch-util.h +163 -0
  183. transcribe_cpp_native-0.2.0/src/transcribe-load-common.cpp +672 -0
  184. transcribe_cpp_native-0.2.0/src/transcribe-load-common.h +175 -0
  185. transcribe_cpp_native-0.2.0/src/transcribe-mel.cpp +862 -0
  186. transcribe_cpp_native-0.2.0/src/transcribe-mel.h +177 -0
  187. transcribe_cpp_native-0.2.0/src/transcribe-model.cpp +95 -0
  188. transcribe_cpp_native-0.2.0/src/transcribe-model.h +219 -0
  189. transcribe_cpp_native-0.2.0/src/transcribe-session.h +286 -0
  190. transcribe_cpp_native-0.2.0/src/transcribe.cpp +3255 -0
  191. transcribe_cpp_native-0.2.0/tests/CMakeLists.txt +1304 -0
  192. transcribe_cpp_native-0.2.0/tests/api_smoke.c +841 -0
  193. transcribe_cpp_native-0.2.0/tests/backend_classification_unit.cpp +48 -0
  194. transcribe_cpp_native-0.2.0/tests/backend_init_throw_unit.cpp +185 -0
  195. transcribe_cpp_native-0.2.0/tests/backend_init_unit.cpp +281 -0
  196. transcribe_cpp_native-0.2.0/tests/backend_metal_simdgroup_gate_unit.cpp +165 -0
  197. transcribe_cpp_native-0.2.0/tests/backend_probe_order_unit.cpp +64 -0
  198. transcribe_cpp_native-0.2.0/tests/batch_mask_unit.cpp +109 -0
  199. transcribe_cpp_native-0.2.0/tests/cli_device_arg_smoke.cmake +22 -0
  200. transcribe_cpp_native-0.2.0/tests/cli_output_smoke.cmake +36 -0
  201. transcribe_cpp_native-0.2.0/tests/cmake/ep-prefix-parent/CMakeLists.txt +32 -0
  202. transcribe_cpp_native-0.2.0/tests/debug_dump_unit.cpp +268 -0
  203. transcribe_cpp_native-0.2.0/tests/golden/batch/moss-transcribe-diarize.cpu.json +19 -0
  204. transcribe_cpp_native-0.2.0/tests/golden/batch/multitalker-parakeet-streaming-0.6b-v1.cpu.json +15 -0
  205. transcribe_cpp_native-0.2.0/tests/golden/moss/moss-transcribe-diarize.manifest.json +59 -0
  206. transcribe_cpp_native-0.2.0/tests/golden/parakeet/multitalker-2spk-mix.rttm +3 -0
  207. transcribe_cpp_native-0.2.0/tests/golden/parakeet/multitalker-parakeet-streaming-0.6b-v1.manifest.json +53 -0
  208. transcribe_cpp_native-0.2.0/tests/golden/sortformer/diar_streaming_sortformer_4spk-v2.1.manifest.json +55 -0
  209. transcribe_cpp_native-0.2.0/tests/golden/sortformer/sortformer-2spk-mix.rttm +4 -0
  210. transcribe_cpp_native-0.2.0/tests/granite_diarize_parser_unit.cpp +174 -0
  211. transcribe_cpp_native-0.2.0/tests/moss_diarize_parser_unit.cpp +247 -0
  212. transcribe_cpp_native-0.2.0/tests/parakeet_multitalker_e2e_smoke.cpp +171 -0
  213. transcribe_cpp_native-0.2.0/tests/prefill_chunk_mask_unit.cpp +155 -0
  214. transcribe_cpp_native-0.2.0/tests/run_dispatch_unit.cpp +453 -0
  215. transcribe_cpp_native-0.2.0/tests/sortformer_stream_ext_unit.cpp +188 -0
  216. transcribe_cpp_native-0.2.0/tests/stream_dispatch_unit.cpp +1591 -0
  217. transcribe_cpp_native-0.2.0/tests/tolerances/moss.json +92 -0
  218. transcribe_cpp_native-0.2.0/tests/tolerances/multitalker-parakeet-streaming-0.6b-v1.json +96 -0
  219. transcribe_cpp_native-0.2.0/tests/tolerances/multitalker-parakeet-streaming-0.6b-v1.streaming.json +83 -0
  220. transcribe_cpp_native-0.2.0/tests/tolerances/sortformer.json +35 -0
  221. transcribe_cpp_native-0.2.0/tests/whisper_bin_parser_unit.cpp +310 -0
  222. transcribe_cpp_native-0.2.0/tools/transcribe-bench/main.cpp +516 -0
  223. transcribe_cpp_native-0.1.2/.gitignore +0 -86
  224. transcribe_cpp_native-0.1.2/CMakeLists.txt +0 -430
  225. transcribe_cpp_native-0.1.2/Cargo.lock +0 -357
  226. transcribe_cpp_native-0.1.2/Cargo.toml +0 -90
  227. transcribe_cpp_native-0.1.2/PKG-INFO +0 -52
  228. transcribe_cpp_native-0.1.2/README.md +0 -202
  229. transcribe_cpp_native-0.1.2/RELEASING.md +0 -41
  230. transcribe_cpp_native-0.1.2/bindings/python/README.md +0 -92
  231. transcribe_cpp_native-0.1.2/bindings/python/pyproject.toml +0 -71
  232. transcribe_cpp_native-0.1.2/bindings/python/src/transcribe_cpp/__init__.py +0 -1373
  233. transcribe_cpp_native-0.1.2/bindings/python/src/transcribe_cpp/_generated.py +0 -397
  234. transcribe_cpp_native-0.1.2/bindings/python/src/transcribe_cpp/_library.py +0 -386
  235. transcribe_cpp_native-0.1.2/bindings/python/tests/test_backends.py +0 -98
  236. transcribe_cpp_native-0.1.2/bindings/python/tests/test_device_select.py +0 -55
  237. transcribe_cpp_native-0.1.2/bindings/python/tests/test_family_ext.py +0 -206
  238. transcribe_cpp_native-0.1.2/bindings/python/tests/test_provider_discovery.py +0 -341
  239. transcribe_cpp_native-0.1.2/bindings/python/uv.lock +0 -416
  240. transcribe_cpp_native-0.1.2/bindings/rust/sys/README.md +0 -58
  241. transcribe_cpp_native-0.1.2/bindings/rust/sys/build.rs +0 -362
  242. transcribe_cpp_native-0.1.2/bindings/rust/sys/src/transcribe_sys.rs +0 -1225
  243. transcribe_cpp_native-0.1.2/bindings/rust/transcribe-cpp/Cargo.toml +0 -48
  244. transcribe_cpp_native-0.1.2/bindings/rust/transcribe-cpp/README.md +0 -141
  245. transcribe_cpp_native-0.1.2/bindings/rust/transcribe-cpp/examples/backend-select.rs +0 -75
  246. transcribe_cpp_native-0.1.2/bindings/rust/transcribe-cpp/src/backend.rs +0 -162
  247. transcribe_cpp_native-0.1.2/bindings/rust/transcribe-cpp/src/family.rs +0 -207
  248. transcribe_cpp_native-0.1.2/bindings/rust/transcribe-cpp/src/lib.rs +0 -94
  249. transcribe_cpp_native-0.1.2/bindings/rust/transcribe-cpp/src/model.rs +0 -328
  250. transcribe_cpp_native-0.1.2/bindings/rust/transcribe-cpp/src/result.rs +0 -155
  251. transcribe_cpp_native-0.1.2/bindings/rust/transcribe-cpp/src/session.rs +0 -602
  252. transcribe_cpp_native-0.1.2/bindings/rust/transcribe-cpp/src/types.rs +0 -304
  253. transcribe_cpp_native-0.1.2/bindings/rust/transcribe-cpp/tests/degradation.rs +0 -89
  254. transcribe_cpp_native-0.1.2/bindings/rust/transcribe-cpp/tests/device_select.rs +0 -92
  255. transcribe_cpp_native-0.1.2/bindings/rust/transcribe-cpp/tests/no_model.rs +0 -128
  256. transcribe_cpp_native-0.1.2/bindings/swift/README.md +0 -118
  257. transcribe_cpp_native-0.1.2/bindings/swift/Sources/TranscribeCpp/ABIHash.swift +0 -20
  258. transcribe_cpp_native-0.1.2/bindings/swift/Sources/TranscribeCpp/Backend.swift +0 -128
  259. transcribe_cpp_native-0.1.2/bindings/swift/Sources/TranscribeCpp/Family.swift +0 -172
  260. transcribe_cpp_native-0.1.2/bindings/swift/Sources/TranscribeCpp/Model.swift +0 -104
  261. transcribe_cpp_native-0.1.2/bindings/swift/Sources/TranscribeCpp/Options.swift +0 -182
  262. transcribe_cpp_native-0.1.2/bindings/swift/Sources/TranscribeCpp/Session.swift +0 -254
  263. transcribe_cpp_native-0.1.2/bindings/swift/Sources/TranscribeCpp/TranscribeCpp.swift +0 -94
  264. transcribe_cpp_native-0.1.2/bindings/swift/Sources/TranscribeCpp/Transcript.swift +0 -137
  265. transcribe_cpp_native-0.1.2/bindings/swift/Sources/backend-select/main.swift +0 -37
  266. transcribe_cpp_native-0.1.2/bindings/swift/Tests/TranscribeCppTests/DeviceSelectTests.swift +0 -83
  267. transcribe_cpp_native-0.1.2/bindings/swift/Tests/TranscribeCppTests/NoModelTests.swift +0 -112
  268. transcribe_cpp_native-0.1.2/bindings/typescript/README.md +0 -254
  269. transcribe_cpp_native-0.1.2/bindings/typescript/examples/backend-select.mjs +0 -34
  270. transcribe_cpp_native-0.1.2/bindings/typescript/package-lock.json +0 -309
  271. transcribe_cpp_native-0.1.2/bindings/typescript/package.json +0 -51
  272. transcribe_cpp_native-0.1.2/bindings/typescript/src/_generated.ts +0 -266
  273. transcribe_cpp_native-0.1.2/bindings/typescript/src/ffi.ts +0 -250
  274. transcribe_cpp_native-0.1.2/bindings/typescript/src/index.ts +0 -1403
  275. transcribe_cpp_native-0.1.2/bindings/typescript/src/types.ts +0 -225
  276. transcribe_cpp_native-0.1.2/bindings/typescript/test/device-select.test.mjs +0 -58
  277. transcribe_cpp_native-0.1.2/bindings/typescript/test/no-model.test.mjs +0 -109
  278. transcribe_cpp_native-0.1.2/cmake/transcribe-backend-kinds.cmake +0 -50
  279. transcribe_cpp_native-0.1.2/cmake/transcribe-install.cmake +0 -214
  280. transcribe_cpp_native-0.1.2/docs/bindings.md +0 -74
  281. transcribe_cpp_native-0.1.2/docs/build-windows.md +0 -217
  282. transcribe_cpp_native-0.1.2/docs/environment-variables.md +0 -100
  283. transcribe_cpp_native-0.1.2/docs/extension-kinds.md +0 -55
  284. transcribe_cpp_native-0.1.2/docs/models/granite-speech-4.1-2b-plus.md +0 -200
  285. transcribe_cpp_native-0.1.2/docs/models/granite-speech.md +0 -113
  286. transcribe_cpp_native-0.1.2/docs/models/parakeet.md +0 -115
  287. transcribe_cpp_native-0.1.2/docs/porting/families/_intake-schema.json +0 -312
  288. transcribe_cpp_native-0.1.2/docs/porting/families/parakeet.md +0 -486
  289. transcribe_cpp_native-0.1.2/docs/tools/README.md +0 -75
  290. transcribe_cpp_native-0.1.2/docs/tools/hf-metadata-schema.md +0 -65
  291. transcribe_cpp_native-0.1.2/docs/tools/wer.md +0 -152
  292. transcribe_cpp_native-0.1.2/examples/bench/batch_bench.cpp +0 -220
  293. transcribe_cpp_native-0.1.2/examples/cli/main.cpp +0 -1286
  294. transcribe_cpp_native-0.1.2/include/transcribe/extensions.h +0 -22
  295. transcribe_cpp_native-0.1.2/include/transcribe.abihash +0 -1
  296. transcribe_cpp_native-0.1.2/include/transcribe.h +0 -2503
  297. transcribe_cpp_native-0.1.2/scripts/batch_tensor_parity.py +0 -139
  298. transcribe_cpp_native-0.1.2/scripts/bench/run.py +0 -787
  299. transcribe_cpp_native-0.1.2/scripts/ci/check_lane_mirror.py +0 -205
  300. transcribe_cpp_native-0.1.2/scripts/ci/link_smoke.c +0 -57
  301. transcribe_cpp_native-0.1.2/scripts/ci/wheel_smoke.py +0 -182
  302. transcribe_cpp_native-0.1.2/scripts/convert-parakeet.py +0 -1801
  303. transcribe_cpp_native-0.1.2/scripts/hf_cards/generate.py +0 -163
  304. transcribe_cpp_native-0.1.2/scripts/hf_cards/granite-speech-4.1-2b-plus.yaml +0 -112
  305. transcribe_cpp_native-0.1.2/scripts/intake.py +0 -469
  306. transcribe_cpp_native-0.1.2/scripts/lib/quant_policy.py +0 -66
  307. transcribe_cpp_native-0.1.2/scripts/lib/test_quant_policy_sync.py +0 -229
  308. transcribe_cpp_native-0.1.2/scripts/release/prepare.py +0 -213
  309. transcribe_cpp_native-0.1.2/scripts/validate.py +0 -955
  310. transcribe_cpp_native-0.1.2/scripts/wer/remote/modal_sweep.py +0 -1243
  311. transcribe_cpp_native-0.1.2/scripts/wer/run.py +0 -490
  312. transcribe_cpp_native-0.1.2/scripts/wer/score.py +0 -277
  313. transcribe_cpp_native-0.1.2/src/CMakeLists.txt +0 -268
  314. transcribe_cpp_native-0.1.2/src/arch/canary/model.cpp +0 -1826
  315. transcribe_cpp_native-0.1.2/src/arch/canary_qwen/model.cpp +0 -1693
  316. transcribe_cpp_native-0.1.2/src/arch/cohere/model.cpp +0 -1766
  317. transcribe_cpp_native-0.1.2/src/arch/funasr_nano/model.cpp +0 -1396
  318. transcribe_cpp_native-0.1.2/src/arch/gigaam/model.cpp +0 -798
  319. transcribe_cpp_native-0.1.2/src/arch/granite/model.cpp +0 -1791
  320. transcribe_cpp_native-0.1.2/src/arch/granite_nar/model.cpp +0 -784
  321. transcribe_cpp_native-0.1.2/src/arch/medasr/model.cpp +0 -993
  322. transcribe_cpp_native-0.1.2/src/arch/moonshine/model.cpp +0 -1143
  323. transcribe_cpp_native-0.1.2/src/arch/moonshine_streaming/model.cpp +0 -2212
  324. transcribe_cpp_native-0.1.2/src/arch/parakeet/encoder.cpp +0 -866
  325. transcribe_cpp_native-0.1.2/src/arch/parakeet/encoder.h +0 -275
  326. transcribe_cpp_native-0.1.2/src/arch/parakeet/model.cpp +0 -3150
  327. transcribe_cpp_native-0.1.2/src/arch/parakeet/parakeet.h +0 -296
  328. transcribe_cpp_native-0.1.2/src/arch/parakeet/weights.cpp +0 -879
  329. transcribe_cpp_native-0.1.2/src/arch/parakeet/weights.h +0 -370
  330. transcribe_cpp_native-0.1.2/src/arch/qwen3_asr/model.cpp +0 -1729
  331. transcribe_cpp_native-0.1.2/src/arch/sensevoice/model.cpp +0 -878
  332. transcribe_cpp_native-0.1.2/src/arch/voxtral/decoder.cpp +0 -461
  333. transcribe_cpp_native-0.1.2/src/arch/voxtral/decoder.h +0 -154
  334. transcribe_cpp_native-0.1.2/src/arch/voxtral/model.cpp +0 -1469
  335. transcribe_cpp_native-0.1.2/src/arch/voxtral_realtime/model.cpp +0 -2648
  336. transcribe_cpp_native-0.1.2/src/arch/whisper/bin_load.cpp +0 -659
  337. transcribe_cpp_native-0.1.2/src/arch/whisper/model.cpp +0 -3367
  338. transcribe_cpp_native-0.1.2/src/causal_lm/causal_lm.cpp +0 -941
  339. transcribe_cpp_native-0.1.2/src/causal_lm/causal_lm.h +0 -319
  340. transcribe_cpp_native-0.1.2/src/transcribe-arch.cpp +0 -103
  341. transcribe_cpp_native-0.1.2/src/transcribe-backend.cpp +0 -131
  342. transcribe_cpp_native-0.1.2/src/transcribe-backend.h +0 -89
  343. transcribe_cpp_native-0.1.2/src/transcribe-batch-util.cpp +0 -364
  344. transcribe_cpp_native-0.1.2/src/transcribe-batch-util.h +0 -163
  345. transcribe_cpp_native-0.1.2/src/transcribe-load-common.cpp +0 -668
  346. transcribe_cpp_native-0.1.2/src/transcribe-load-common.h +0 -182
  347. transcribe_cpp_native-0.1.2/src/transcribe-mel.cpp +0 -859
  348. transcribe_cpp_native-0.1.2/src/transcribe-mel.h +0 -169
  349. transcribe_cpp_native-0.1.2/src/transcribe-model.cpp +0 -93
  350. transcribe_cpp_native-0.1.2/src/transcribe-model.h +0 -219
  351. transcribe_cpp_native-0.1.2/src/transcribe-session.h +0 -264
  352. transcribe_cpp_native-0.1.2/src/transcribe.cpp +0 -3113
  353. transcribe_cpp_native-0.1.2/tests/CMakeLists.txt +0 -1168
  354. transcribe_cpp_native-0.1.2/tests/api_smoke.c +0 -810
  355. transcribe_cpp_native-0.1.2/tests/backend_classification_unit.cpp +0 -46
  356. transcribe_cpp_native-0.1.2/tests/backend_init_throw_unit.cpp +0 -184
  357. transcribe_cpp_native-0.1.2/tests/backend_init_unit.cpp +0 -271
  358. transcribe_cpp_native-0.1.2/tests/backend_metal_simdgroup_gate_unit.cpp +0 -164
  359. transcribe_cpp_native-0.1.2/tests/debug_dump_unit.cpp +0 -250
  360. transcribe_cpp_native-0.1.2/tests/run_dispatch_unit.cpp +0 -306
  361. transcribe_cpp_native-0.1.2/tests/stream_dispatch_unit.cpp +0 -1584
  362. transcribe_cpp_native-0.1.2/tests/whisper_bin_parser_unit.cpp +0 -259
  363. transcribe_cpp_native-0.1.2/tools/transcribe-bench/main.cpp +0 -494
  364. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/.cargo/config.toml +0 -0
  365. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/.clang-format +0 -0
  366. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/.git-blame-ignore-revs +0 -0
  367. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/AGENTS.md +0 -0
  368. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/CLAUDE.md +0 -0
  369. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/CMakePresets.json +0 -0
  370. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/CONTRIBUTING.md +0 -0
  371. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/LICENSE +0 -0
  372. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/THIRD-PARTY-LICENSES.md +0 -0
  373. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python/LICENSE +0 -0
  374. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python/_generate/README.md +0 -0
  375. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python/_generate/check_version_sync.py +0 -0
  376. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python/_generate/generate.py +0 -0
  377. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python/examples/stream_wav.py +0 -0
  378. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python/examples/transcribe_wav.py +0 -0
  379. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python/src/transcribe_cpp/_abi.py +0 -0
  380. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python/src/transcribe_cpp/errors.py +0 -0
  381. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python/src/transcribe_cpp/py.typed +0 -0
  382. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python/tests/conftest.py +0 -0
  383. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python/tests/test_abi.py +0 -0
  384. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python/tests/test_errors.py +0 -0
  385. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python/tests/test_example.py +0 -0
  386. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python/tests/test_lifetime.py +0 -0
  387. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python/tests/test_pcm.py +0 -0
  388. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python/tests/test_streaming.py +0 -0
  389. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python/tests/test_transcribe.py +0 -0
  390. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python/tests/test_utf8_paths.py +0 -0
  391. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python-native/README.md +0 -0
  392. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python-native/_contract.py.in +0 -0
  393. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python-native/transcribe_cpp_native/__init__.py +0 -0
  394. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python-native-cu12/LICENSE +0 -0
  395. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python-native-cu12/LICENSE-ggml +0 -0
  396. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python-native-cu12/LICENSE-miniz +0 -0
  397. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python-native-cu12/README.md +0 -0
  398. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python-native-cu12/pyproject.toml +0 -0
  399. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/python-native-cu12/transcribe_cpp_native_cu12/__init__.py +0 -0
  400. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/rust/sys/LICENSE +0 -0
  401. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/rust/sys/src/lib.rs +0 -0
  402. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/rust/transcribe-cpp/LICENSE +0 -0
  403. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/rust/transcribe-cpp/build.rs +0 -0
  404. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/rust/transcribe-cpp/examples/batch.rs +0 -0
  405. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/rust/transcribe-cpp/examples/common/mod.rs +0 -0
  406. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/rust/transcribe-cpp/examples/error-handling.rs +0 -0
  407. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/rust/transcribe-cpp/examples/streaming.rs +0 -0
  408. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/rust/transcribe-cpp/examples/transcribe-file.rs +0 -0
  409. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/rust/transcribe-cpp/src/cancel.rs +0 -0
  410. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/rust/transcribe-cpp/src/error.rs +0 -0
  411. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/rust/transcribe-cpp/src/logging.rs +0 -0
  412. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/rust/transcribe-cpp/src/streaming.rs +0 -0
  413. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/rust/transcribe-cpp/src/version.rs +0 -0
  414. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/rust/transcribe-cpp/tests/cancel.rs +0 -0
  415. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/rust/transcribe-cpp/tests/common/mod.rs +0 -0
  416. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/rust/transcribe-cpp/tests/extensions.rs +0 -0
  417. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/rust/transcribe-cpp/tests/family.rs +0 -0
  418. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/rust/transcribe-cpp/tests/streaming.rs +0 -0
  419. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/rust/transcribe-cpp/tests/transcribe.rs +0 -0
  420. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/rust/xtask/Cargo.toml +0 -0
  421. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/rust/xtask/src/main.rs +0 -0
  422. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/.gitignore +0 -0
  423. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Examples/TranscribeDemo/.gitignore +0 -0
  424. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Examples/TranscribeDemo/README.md +0 -0
  425. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Examples/TranscribeDemo/TranscribeDemo/Assets.xcassets/AccentColor.colorset/Contents.json +0 -0
  426. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Examples/TranscribeDemo/TranscribeDemo/Assets.xcassets/AppIcon.appiconset/Contents.json +0 -0
  427. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Examples/TranscribeDemo/TranscribeDemo/Assets.xcassets/Contents.json +0 -0
  428. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Examples/TranscribeDemo/TranscribeDemo/ContentView.swift +0 -0
  429. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Examples/TranscribeDemo/TranscribeDemo/Resources/jfk.wav +0 -0
  430. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Examples/TranscribeDemo/TranscribeDemo/TranscribeDemoApp.swift +0 -0
  431. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Examples/TranscribeDemo/TranscribeDemo/WavDecoder.swift +0 -0
  432. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Examples/TranscribeDemo/project.yml +0 -0
  433. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/LICENSE +0 -0
  434. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Package.swift +0 -0
  435. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Sources/ExampleSupport/ExampleSupport.swift +0 -0
  436. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Sources/TranscribeCpp/Cancellation.swift +0 -0
  437. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Sources/TranscribeCpp/Convenience.swift +0 -0
  438. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Sources/TranscribeCpp/Logging.swift +0 -0
  439. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Sources/TranscribeCpp/Streaming.swift +0 -0
  440. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Sources/TranscribeCpp/TranscribeError.swift +0 -0
  441. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Sources/batch/main.swift +0 -0
  442. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Sources/error-handling/main.swift +0 -0
  443. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Sources/streaming/main.swift +0 -0
  444. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Sources/transcribe-file/main.swift +0 -0
  445. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/THIRD-PARTY-LICENSES.md +0 -0
  446. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Tests/TranscribeCppTests/CancelTests.swift +0 -0
  447. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Tests/TranscribeCppTests/ExtensionTests.swift +0 -0
  448. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Tests/TranscribeCppTests/FamilyStreamTests.swift +0 -0
  449. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Tests/TranscribeCppTests/LoggingTests.swift +0 -0
  450. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Tests/TranscribeCppTests/StreamingTests.swift +0 -0
  451. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Tests/TranscribeCppTests/TestSupport.swift +0 -0
  452. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/swift/Tests/TranscribeCppTests/TranscribeTests.swift +0 -0
  453. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/.gitignore +0 -0
  454. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/LICENSE +0 -0
  455. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/examples/_support.mjs +0 -0
  456. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/examples/batch.mjs +0 -0
  457. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/examples/error-handling.mjs +0 -0
  458. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/examples/streaming.mjs +0 -0
  459. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/examples/transcribe-file.mjs +0 -0
  460. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/scripts/build-from-source.mjs +0 -0
  461. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/scripts/pack-platform.mjs +0 -0
  462. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/src/abi.ts +0 -0
  463. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/src/cuda.ts +0 -0
  464. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/src/errors.ts +0 -0
  465. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/src/loader.ts +0 -0
  466. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/src/native.ts +0 -0
  467. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/src/version.ts +0 -0
  468. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/test/batch.test.mjs +0 -0
  469. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/test/cancel.test.mjs +0 -0
  470. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/test/common.mjs +0 -0
  471. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/test/family.test.mjs +0 -0
  472. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/test/lifetime.test.mjs +0 -0
  473. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/test/pcm.test.mjs +0 -0
  474. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/test/streaming.test.mjs +0 -0
  475. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/test/transcribe.test.mjs +0 -0
  476. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/bindings/typescript/tsconfig.json +0 -0
  477. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/cmake/python-wheel-install.cmake +0 -0
  478. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/_templates/model-card.md.j2 +0 -0
  479. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/input-limits.md +0 -0
  480. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/model-family-testing.md +0 -0
  481. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/canary-180m-flash.md +0 -0
  482. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/canary-1b-flash.md +0 -0
  483. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/canary-1b-v2.md +0 -0
  484. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/canary-1b.md +0 -0
  485. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/canary-qwen-2.5b.md +0 -0
  486. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/canary.md +0 -0
  487. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/cohere-transcribe-03-2026.md +0 -0
  488. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/fun-asr-mlt-nano-2512.md +0 -0
  489. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/fun-asr-nano-2512.md +0 -0
  490. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/fun-asr-nano.md +0 -0
  491. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/gigaam-v3-ctc.md +0 -0
  492. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/gigaam-v3-e2e-ctc.md +0 -0
  493. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/gigaam-v3-e2e-rnnt.md +0 -0
  494. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/gigaam-v3-rnnt.md +0 -0
  495. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/gigaam.md +0 -0
  496. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/granite-4.0-1b-speech.md +0 -0
  497. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/granite-speech-4.1-2b-nar.md +0 -0
  498. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/granite-speech-4.1-2b.md +0 -0
  499. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/medasr.md +0 -0
  500. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/moonshine-base.md +0 -0
  501. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/moonshine-streaming-medium.md +0 -0
  502. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/moonshine-streaming-small.md +0 -0
  503. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/moonshine-streaming-tiny.md +0 -0
  504. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/moonshine-streaming.md +0 -0
  505. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/moonshine-tiny.md +0 -0
  506. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/moonshine.md +0 -0
  507. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/nemotron-3.5-asr-streaming-0.6b.md +0 -0
  508. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/nemotron-speech-streaming-en-0.6b.md +0 -0
  509. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/parakeet-ctc-0.6b.md +0 -0
  510. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/parakeet-ctc-1.1b.md +0 -0
  511. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/parakeet-rnnt-0.6b.md +0 -0
  512. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/parakeet-rnnt-1.1b.md +0 -0
  513. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/parakeet-tdt-0.6b-v2.md +0 -0
  514. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/parakeet-tdt-0.6b-v3.md +0 -0
  515. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/parakeet-tdt-1.1b.md +0 -0
  516. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/parakeet-tdt_ctc-1.1b.md +0 -0
  517. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/parakeet-tdt_ctc-110m.md +0 -0
  518. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/parakeet-unified-en-0.6b.md +0 -0
  519. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/qwen3-asr-0.6b.md +0 -0
  520. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/qwen3-asr-1.7b.md +0 -0
  521. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/qwen3-asr.md +0 -0
  522. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/sensevoice-small.md +0 -0
  523. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/voxtral-mini-3b-2507.md +0 -0
  524. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/voxtral-realtime.md +0 -0
  525. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/voxtral-small-24b-2507.md +0 -0
  526. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/voxtral.md +0 -0
  527. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/whisper-base.en.md +0 -0
  528. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/whisper-base.md +0 -0
  529. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/whisper-large-v2.md +0 -0
  530. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/whisper-large-v3-turbo.md +0 -0
  531. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/whisper-large-v3.md +0 -0
  532. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/whisper-large.md +0 -0
  533. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/whisper-medium.en.md +0 -0
  534. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/whisper-medium.md +0 -0
  535. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/whisper-small.en.md +0 -0
  536. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/whisper-small.md +0 -0
  537. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/whisper-tiny.en.md +0 -0
  538. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/whisper-tiny.md +0 -0
  539. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/models/whisper.md +0 -0
  540. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/0-porting.md +0 -0
  541. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/1-reference-research.md +0 -0
  542. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/1a-intake.md +0 -0
  543. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/2-artifacts-and-goldens.md +0 -0
  544. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/3-conversion.md +0 -0
  545. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/4-numerical-validation.md +0 -0
  546. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/4a-numerical-troubleshooting.md +0 -0
  547. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/5-benchmarks.md +0 -0
  548. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/6-family-checklist.md +0 -0
  549. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/families/_forward-map-template.md +0 -0
  550. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/families/_template.md +0 -0
  551. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/families/canary.md +0 -0
  552. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/families/canary_qwen.md +0 -0
  553. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/families/cohere.md +0 -0
  554. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/families/funasr_nano.md +0 -0
  555. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/families/gigaam.md +0 -0
  556. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/families/granite.md +0 -0
  557. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/families/granite_nar.md +0 -0
  558. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/families/medasr.md +0 -0
  559. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/families/moonshine.md +0 -0
  560. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/families/moonshine_streaming.md +0 -0
  561. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/families/qwen3_asr.md +0 -0
  562. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/families/sensevoice.md +0 -0
  563. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/families/voxtral.md +0 -0
  564. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/families/voxtral_realtime.md +0 -0
  565. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/families/whisper.md +0 -0
  566. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/porting/ggml-reference-map.md +0 -0
  567. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/tools/benchmarking.md +0 -0
  568. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/tools/compare-tensors.md +0 -0
  569. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/tools/conversion.md +0 -0
  570. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/tools/quantization.md +0 -0
  571. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/tools/reference-dumps.md +0 -0
  572. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/docs/tools/validate.md +0 -0
  573. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/examples/CMakeLists.txt +0 -0
  574. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/examples/bench/CMakeLists.txt +0 -0
  575. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/examples/cli/CMakeLists.txt +0 -0
  576. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/examples/common/CMakeLists.txt +0 -0
  577. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/examples/common/dr_wav.h +0 -0
  578. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/examples/common/wav.cpp +0 -0
  579. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/examples/common/wav.h +0 -0
  580. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/examples/hello/CMakeLists.txt +0 -0
  581. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/examples/hello/main.c +0 -0
  582. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/examples/hello_stream/CMakeLists.txt +0 -0
  583. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/examples/hello_stream/main.c +0 -0
  584. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/.editorconfig +0 -0
  585. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/.gitignore +0 -0
  586. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/.gitmodules +0 -0
  587. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/AUTHORS +0 -0
  588. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/CMakeLists.txt +0 -0
  589. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/CONTRIBUTING.md +0 -0
  590. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/LICENSE +0 -0
  591. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/README.md +0 -0
  592. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/UPSTREAM +0 -0
  593. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/ci/run.sh +0 -0
  594. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/cmake/FindNCCL.cmake +0 -0
  595. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/cmake/GitVars.cmake +0 -0
  596. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/cmake/common.cmake +0 -0
  597. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/cmake/ggml-config.cmake.in +0 -0
  598. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/docs/gguf.md +0 -0
  599. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/CMakeLists.txt +0 -0
  600. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/common-ggml.cpp +0 -0
  601. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/common-ggml.h +0 -0
  602. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/common.cpp +0 -0
  603. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/common.h +0 -0
  604. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/gpt-2/CMakeLists.txt +0 -0
  605. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/gpt-2/README.md +0 -0
  606. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/gpt-2/convert-cerebras-to-ggml.py +0 -0
  607. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/gpt-2/convert-ckpt-to-ggml.py +0 -0
  608. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/gpt-2/convert-h5-to-ggml.py +0 -0
  609. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/gpt-2/download-ggml-model.sh +0 -0
  610. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/gpt-2/download-model.sh +0 -0
  611. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/gpt-2/main-alloc.cpp +0 -0
  612. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/gpt-2/main-backend.cpp +0 -0
  613. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/gpt-2/main-batched.cpp +0 -0
  614. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/gpt-2/main-ctx.cpp +0 -0
  615. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/gpt-2/main-sched.cpp +0 -0
  616. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/gpt-2/quantize.cpp +0 -0
  617. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/gpt-j/CMakeLists.txt +0 -0
  618. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/gpt-j/README.md +0 -0
  619. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/gpt-j/convert-h5-to-ggml.py +0 -0
  620. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/gpt-j/download-ggml-model.sh +0 -0
  621. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/gpt-j/download-model.sh +0 -0
  622. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/gpt-j/main.cpp +0 -0
  623. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/gpt-j/quantize.cpp +0 -0
  624. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/magika/CMakeLists.txt +0 -0
  625. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/magika/README.md +0 -0
  626. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/magika/convert.py +0 -0
  627. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/magika/main.cpp +0 -0
  628. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/mnist/.gitignore +0 -0
  629. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/mnist/CMakeLists.txt +0 -0
  630. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/mnist/README.md +0 -0
  631. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/mnist/mnist-common.cpp +0 -0
  632. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/mnist/mnist-common.h +0 -0
  633. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/mnist/mnist-eval.cpp +0 -0
  634. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/mnist/mnist-train-cnn.py +0 -0
  635. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/mnist/mnist-train-fc.py +0 -0
  636. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/mnist/mnist-train.cpp +0 -0
  637. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/mnist/server.py +0 -0
  638. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/perf-metal/CMakeLists.txt +0 -0
  639. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/perf-metal/perf-metal.cpp +0 -0
  640. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/prompts/dolly-v2.txt +0 -0
  641. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/prompts/gpt-2-chinese.txt +0 -0
  642. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/prompts/gpt-2.txt +0 -0
  643. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/prompts/gpt-j.txt +0 -0
  644. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/prompts/gpt-neox-japanese.txt +0 -0
  645. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/prompts/gpt-neox.txt +0 -0
  646. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/prompts/polyglot-ko.txt +0 -0
  647. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/prompts/replit.txt +0 -0
  648. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/prompts/starcoder.txt +0 -0
  649. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/prompts/test-cases.txt +0 -0
  650. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/prompts/tokenize_huggingface.py +0 -0
  651. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/prompts/whisper.txt +0 -0
  652. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/python/README.md +0 -0
  653. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/python/api.h +0 -0
  654. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/python/example_add_quant.py +0 -0
  655. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/python/example_test_all_quants.py +0 -0
  656. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/python/ggml/__init__.py +0 -0
  657. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/python/ggml/__init__.pyi +0 -0
  658. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/python/ggml/cffi.py +0 -0
  659. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/python/ggml/ffi/__init__.pyi +0 -0
  660. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/python/ggml/utils.py +0 -0
  661. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/python/regenerate.py +0 -0
  662. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/python/stubs.py +0 -0
  663. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/python/test_tensor.py +0 -0
  664. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/sam/CMakeLists.txt +0 -0
  665. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/sam/README.md +0 -0
  666. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/sam/convert-pth-to-ggml.py +0 -0
  667. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/sam/example.jpg +0 -0
  668. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/sam/sam.cpp +0 -0
  669. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/simple/CMakeLists.txt +0 -0
  670. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/simple/README.md +0 -0
  671. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/simple/simple-backend.cpp +0 -0
  672. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/simple/simple-ctx.cpp +0 -0
  673. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/stb_image.h +0 -0
  674. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/stb_image_write.h +0 -0
  675. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/test-cmake/CMakeLists.txt +0 -0
  676. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/test-cmake/README.md +0 -0
  677. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/test-cmake/test-cmake.cpp +0 -0
  678. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/CMakeLists.txt +0 -0
  679. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/README.md +0 -0
  680. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/convert-yolov3-tiny.py +0 -0
  681. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/coco.names +0 -0
  682. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/100_0.png +0 -0
  683. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/100_1.png +0 -0
  684. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/100_2.png +0 -0
  685. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/100_3.png +0 -0
  686. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/100_4.png +0 -0
  687. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/100_5.png +0 -0
  688. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/100_6.png +0 -0
  689. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/100_7.png +0 -0
  690. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/101_0.png +0 -0
  691. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/101_1.png +0 -0
  692. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/101_2.png +0 -0
  693. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/101_3.png +0 -0
  694. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/101_4.png +0 -0
  695. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/101_5.png +0 -0
  696. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/101_6.png +0 -0
  697. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/101_7.png +0 -0
  698. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/102_0.png +0 -0
  699. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/102_1.png +0 -0
  700. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/102_2.png +0 -0
  701. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/102_3.png +0 -0
  702. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/102_4.png +0 -0
  703. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/102_5.png +0 -0
  704. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/102_6.png +0 -0
  705. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/102_7.png +0 -0
  706. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/103_0.png +0 -0
  707. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/103_1.png +0 -0
  708. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/103_2.png +0 -0
  709. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/103_3.png +0 -0
  710. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/103_4.png +0 -0
  711. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/103_5.png +0 -0
  712. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/103_6.png +0 -0
  713. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/103_7.png +0 -0
  714. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/104_0.png +0 -0
  715. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/104_1.png +0 -0
  716. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/104_2.png +0 -0
  717. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/104_3.png +0 -0
  718. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/104_4.png +0 -0
  719. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/104_5.png +0 -0
  720. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/104_6.png +0 -0
  721. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/104_7.png +0 -0
  722. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/105_0.png +0 -0
  723. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/105_1.png +0 -0
  724. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/105_2.png +0 -0
  725. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/105_3.png +0 -0
  726. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/105_4.png +0 -0
  727. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/105_5.png +0 -0
  728. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/105_6.png +0 -0
  729. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/105_7.png +0 -0
  730. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/106_0.png +0 -0
  731. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/106_1.png +0 -0
  732. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/106_2.png +0 -0
  733. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/106_3.png +0 -0
  734. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/106_4.png +0 -0
  735. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/106_5.png +0 -0
  736. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/106_6.png +0 -0
  737. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/106_7.png +0 -0
  738. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/107_0.png +0 -0
  739. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/107_1.png +0 -0
  740. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/107_2.png +0 -0
  741. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/107_3.png +0 -0
  742. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/107_4.png +0 -0
  743. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/107_5.png +0 -0
  744. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/107_6.png +0 -0
  745. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/107_7.png +0 -0
  746. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/108_0.png +0 -0
  747. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/108_1.png +0 -0
  748. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/108_2.png +0 -0
  749. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/108_3.png +0 -0
  750. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/108_4.png +0 -0
  751. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/108_5.png +0 -0
  752. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/108_6.png +0 -0
  753. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/108_7.png +0 -0
  754. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/109_0.png +0 -0
  755. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/109_1.png +0 -0
  756. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/109_2.png +0 -0
  757. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/109_3.png +0 -0
  758. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/109_4.png +0 -0
  759. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/109_5.png +0 -0
  760. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/109_6.png +0 -0
  761. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/109_7.png +0 -0
  762. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/110_0.png +0 -0
  763. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/110_1.png +0 -0
  764. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/110_2.png +0 -0
  765. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/110_3.png +0 -0
  766. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/110_4.png +0 -0
  767. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/110_5.png +0 -0
  768. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/110_6.png +0 -0
  769. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/110_7.png +0 -0
  770. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/111_0.png +0 -0
  771. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/111_1.png +0 -0
  772. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/111_2.png +0 -0
  773. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/111_3.png +0 -0
  774. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/111_4.png +0 -0
  775. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/111_5.png +0 -0
  776. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/111_6.png +0 -0
  777. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/111_7.png +0 -0
  778. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/112_0.png +0 -0
  779. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/112_1.png +0 -0
  780. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/112_2.png +0 -0
  781. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/112_3.png +0 -0
  782. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/112_4.png +0 -0
  783. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/112_5.png +0 -0
  784. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/112_6.png +0 -0
  785. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/112_7.png +0 -0
  786. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/113_0.png +0 -0
  787. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/113_1.png +0 -0
  788. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/113_2.png +0 -0
  789. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/113_3.png +0 -0
  790. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/113_4.png +0 -0
  791. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/113_5.png +0 -0
  792. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/113_6.png +0 -0
  793. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/113_7.png +0 -0
  794. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/114_0.png +0 -0
  795. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/114_1.png +0 -0
  796. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/114_2.png +0 -0
  797. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/114_3.png +0 -0
  798. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/114_4.png +0 -0
  799. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/114_5.png +0 -0
  800. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/114_6.png +0 -0
  801. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/114_7.png +0 -0
  802. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/115_0.png +0 -0
  803. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/115_1.png +0 -0
  804. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/115_2.png +0 -0
  805. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/115_3.png +0 -0
  806. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/115_4.png +0 -0
  807. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/115_5.png +0 -0
  808. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/115_6.png +0 -0
  809. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/115_7.png +0 -0
  810. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/116_0.png +0 -0
  811. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/116_1.png +0 -0
  812. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/116_2.png +0 -0
  813. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/116_3.png +0 -0
  814. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/116_4.png +0 -0
  815. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/116_5.png +0 -0
  816. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/116_6.png +0 -0
  817. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/116_7.png +0 -0
  818. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/117_0.png +0 -0
  819. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/117_1.png +0 -0
  820. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/117_2.png +0 -0
  821. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/117_3.png +0 -0
  822. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/117_4.png +0 -0
  823. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/117_5.png +0 -0
  824. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/117_6.png +0 -0
  825. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/117_7.png +0 -0
  826. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/118_0.png +0 -0
  827. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/118_1.png +0 -0
  828. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/118_2.png +0 -0
  829. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/118_3.png +0 -0
  830. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/118_4.png +0 -0
  831. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/118_5.png +0 -0
  832. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/118_6.png +0 -0
  833. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/118_7.png +0 -0
  834. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/119_0.png +0 -0
  835. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/119_1.png +0 -0
  836. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/119_2.png +0 -0
  837. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/119_3.png +0 -0
  838. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/119_4.png +0 -0
  839. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/119_5.png +0 -0
  840. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/119_6.png +0 -0
  841. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/119_7.png +0 -0
  842. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/120_0.png +0 -0
  843. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/120_1.png +0 -0
  844. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/120_2.png +0 -0
  845. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/120_3.png +0 -0
  846. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/120_4.png +0 -0
  847. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/120_5.png +0 -0
  848. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/120_6.png +0 -0
  849. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/120_7.png +0 -0
  850. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/121_0.png +0 -0
  851. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/121_1.png +0 -0
  852. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/121_2.png +0 -0
  853. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/121_3.png +0 -0
  854. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/121_4.png +0 -0
  855. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/121_5.png +0 -0
  856. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/121_6.png +0 -0
  857. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/121_7.png +0 -0
  858. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/122_0.png +0 -0
  859. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/122_1.png +0 -0
  860. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/122_2.png +0 -0
  861. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/122_3.png +0 -0
  862. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/122_4.png +0 -0
  863. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/122_5.png +0 -0
  864. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/122_6.png +0 -0
  865. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/122_7.png +0 -0
  866. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/123_0.png +0 -0
  867. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/123_1.png +0 -0
  868. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/123_2.png +0 -0
  869. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/123_3.png +0 -0
  870. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/123_4.png +0 -0
  871. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/123_5.png +0 -0
  872. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/123_6.png +0 -0
  873. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/123_7.png +0 -0
  874. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/124_0.png +0 -0
  875. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/124_1.png +0 -0
  876. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/124_2.png +0 -0
  877. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/124_3.png +0 -0
  878. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/124_4.png +0 -0
  879. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/124_5.png +0 -0
  880. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/124_6.png +0 -0
  881. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/124_7.png +0 -0
  882. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/125_0.png +0 -0
  883. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/125_1.png +0 -0
  884. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/125_2.png +0 -0
  885. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/125_3.png +0 -0
  886. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/125_4.png +0 -0
  887. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/125_5.png +0 -0
  888. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/125_6.png +0 -0
  889. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/125_7.png +0 -0
  890. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/126_0.png +0 -0
  891. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/126_1.png +0 -0
  892. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/126_2.png +0 -0
  893. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/126_3.png +0 -0
  894. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/126_4.png +0 -0
  895. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/126_5.png +0 -0
  896. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/126_6.png +0 -0
  897. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/126_7.png +0 -0
  898. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/32_0.png +0 -0
  899. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/32_1.png +0 -0
  900. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/32_2.png +0 -0
  901. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/32_3.png +0 -0
  902. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/32_4.png +0 -0
  903. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/32_5.png +0 -0
  904. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/32_6.png +0 -0
  905. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/32_7.png +0 -0
  906. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/33_0.png +0 -0
  907. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/33_1.png +0 -0
  908. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/33_2.png +0 -0
  909. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/33_3.png +0 -0
  910. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/33_4.png +0 -0
  911. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/33_5.png +0 -0
  912. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/33_6.png +0 -0
  913. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/33_7.png +0 -0
  914. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/34_0.png +0 -0
  915. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/34_1.png +0 -0
  916. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/34_2.png +0 -0
  917. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/34_3.png +0 -0
  918. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/34_4.png +0 -0
  919. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/34_5.png +0 -0
  920. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/34_6.png +0 -0
  921. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/34_7.png +0 -0
  922. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/35_0.png +0 -0
  923. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/35_1.png +0 -0
  924. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/35_2.png +0 -0
  925. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/35_3.png +0 -0
  926. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/35_4.png +0 -0
  927. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/35_5.png +0 -0
  928. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/35_6.png +0 -0
  929. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/35_7.png +0 -0
  930. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/36_0.png +0 -0
  931. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/36_1.png +0 -0
  932. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/36_2.png +0 -0
  933. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/36_3.png +0 -0
  934. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/36_4.png +0 -0
  935. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/36_5.png +0 -0
  936. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/36_6.png +0 -0
  937. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/36_7.png +0 -0
  938. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/37_0.png +0 -0
  939. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/37_1.png +0 -0
  940. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/37_2.png +0 -0
  941. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/37_3.png +0 -0
  942. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/37_4.png +0 -0
  943. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/37_5.png +0 -0
  944. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/37_6.png +0 -0
  945. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/37_7.png +0 -0
  946. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/38_0.png +0 -0
  947. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/38_1.png +0 -0
  948. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/38_2.png +0 -0
  949. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/38_3.png +0 -0
  950. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/38_4.png +0 -0
  951. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/38_5.png +0 -0
  952. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/38_6.png +0 -0
  953. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/38_7.png +0 -0
  954. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/39_0.png +0 -0
  955. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/39_1.png +0 -0
  956. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/39_2.png +0 -0
  957. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/39_3.png +0 -0
  958. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/39_4.png +0 -0
  959. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/39_5.png +0 -0
  960. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/39_6.png +0 -0
  961. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/39_7.png +0 -0
  962. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/40_0.png +0 -0
  963. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/40_1.png +0 -0
  964. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/40_2.png +0 -0
  965. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/40_3.png +0 -0
  966. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/40_4.png +0 -0
  967. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/40_5.png +0 -0
  968. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/40_6.png +0 -0
  969. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/40_7.png +0 -0
  970. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/41_0.png +0 -0
  971. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/41_1.png +0 -0
  972. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/41_2.png +0 -0
  973. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/41_3.png +0 -0
  974. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/41_4.png +0 -0
  975. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/41_5.png +0 -0
  976. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/41_6.png +0 -0
  977. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/41_7.png +0 -0
  978. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/42_0.png +0 -0
  979. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/42_1.png +0 -0
  980. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/42_2.png +0 -0
  981. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/42_3.png +0 -0
  982. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/42_4.png +0 -0
  983. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/42_5.png +0 -0
  984. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/42_6.png +0 -0
  985. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/42_7.png +0 -0
  986. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/43_0.png +0 -0
  987. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/43_1.png +0 -0
  988. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/43_2.png +0 -0
  989. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/43_3.png +0 -0
  990. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/43_4.png +0 -0
  991. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/43_5.png +0 -0
  992. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/43_6.png +0 -0
  993. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/43_7.png +0 -0
  994. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/44_0.png +0 -0
  995. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/44_1.png +0 -0
  996. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/44_2.png +0 -0
  997. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/44_3.png +0 -0
  998. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/44_4.png +0 -0
  999. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/44_5.png +0 -0
  1000. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/44_6.png +0 -0
  1001. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/44_7.png +0 -0
  1002. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/45_0.png +0 -0
  1003. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/45_1.png +0 -0
  1004. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/45_2.png +0 -0
  1005. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/45_3.png +0 -0
  1006. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/45_4.png +0 -0
  1007. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/45_5.png +0 -0
  1008. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/45_6.png +0 -0
  1009. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/45_7.png +0 -0
  1010. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/46_0.png +0 -0
  1011. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/46_1.png +0 -0
  1012. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/46_2.png +0 -0
  1013. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/46_3.png +0 -0
  1014. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/46_4.png +0 -0
  1015. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/46_5.png +0 -0
  1016. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/46_6.png +0 -0
  1017. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/46_7.png +0 -0
  1018. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/47_0.png +0 -0
  1019. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/47_1.png +0 -0
  1020. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/47_2.png +0 -0
  1021. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/47_3.png +0 -0
  1022. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/47_4.png +0 -0
  1023. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/47_5.png +0 -0
  1024. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/47_6.png +0 -0
  1025. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/47_7.png +0 -0
  1026. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/48_0.png +0 -0
  1027. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/48_1.png +0 -0
  1028. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/48_2.png +0 -0
  1029. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/48_3.png +0 -0
  1030. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/48_4.png +0 -0
  1031. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/48_5.png +0 -0
  1032. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/48_6.png +0 -0
  1033. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/48_7.png +0 -0
  1034. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/49_0.png +0 -0
  1035. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/49_1.png +0 -0
  1036. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/49_2.png +0 -0
  1037. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/49_3.png +0 -0
  1038. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/49_4.png +0 -0
  1039. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/49_5.png +0 -0
  1040. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/49_6.png +0 -0
  1041. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/49_7.png +0 -0
  1042. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/50_0.png +0 -0
  1043. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/50_1.png +0 -0
  1044. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/50_2.png +0 -0
  1045. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/50_3.png +0 -0
  1046. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/50_4.png +0 -0
  1047. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/50_5.png +0 -0
  1048. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/50_6.png +0 -0
  1049. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/50_7.png +0 -0
  1050. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/51_0.png +0 -0
  1051. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/51_1.png +0 -0
  1052. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/51_2.png +0 -0
  1053. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/51_3.png +0 -0
  1054. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/51_4.png +0 -0
  1055. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/51_5.png +0 -0
  1056. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/51_6.png +0 -0
  1057. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/51_7.png +0 -0
  1058. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/52_0.png +0 -0
  1059. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/52_1.png +0 -0
  1060. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/52_2.png +0 -0
  1061. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/52_3.png +0 -0
  1062. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/52_4.png +0 -0
  1063. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/52_5.png +0 -0
  1064. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/52_6.png +0 -0
  1065. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/52_7.png +0 -0
  1066. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/53_0.png +0 -0
  1067. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/53_1.png +0 -0
  1068. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/53_2.png +0 -0
  1069. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/53_3.png +0 -0
  1070. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/53_4.png +0 -0
  1071. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/53_5.png +0 -0
  1072. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/53_6.png +0 -0
  1073. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/53_7.png +0 -0
  1074. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/54_0.png +0 -0
  1075. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/54_1.png +0 -0
  1076. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/54_2.png +0 -0
  1077. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/54_3.png +0 -0
  1078. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/54_4.png +0 -0
  1079. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/54_5.png +0 -0
  1080. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/54_6.png +0 -0
  1081. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/54_7.png +0 -0
  1082. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/55_0.png +0 -0
  1083. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/55_1.png +0 -0
  1084. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/55_2.png +0 -0
  1085. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/55_3.png +0 -0
  1086. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/55_4.png +0 -0
  1087. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/55_5.png +0 -0
  1088. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/55_6.png +0 -0
  1089. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/55_7.png +0 -0
  1090. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/56_0.png +0 -0
  1091. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/56_1.png +0 -0
  1092. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/56_2.png +0 -0
  1093. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/56_3.png +0 -0
  1094. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/56_4.png +0 -0
  1095. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/56_5.png +0 -0
  1096. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/56_6.png +0 -0
  1097. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/56_7.png +0 -0
  1098. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/57_0.png +0 -0
  1099. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/57_1.png +0 -0
  1100. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/57_2.png +0 -0
  1101. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/57_3.png +0 -0
  1102. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/57_4.png +0 -0
  1103. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/57_5.png +0 -0
  1104. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/57_6.png +0 -0
  1105. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/57_7.png +0 -0
  1106. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/58_0.png +0 -0
  1107. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/58_1.png +0 -0
  1108. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/58_2.png +0 -0
  1109. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/58_3.png +0 -0
  1110. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/58_4.png +0 -0
  1111. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/58_5.png +0 -0
  1112. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/58_6.png +0 -0
  1113. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/58_7.png +0 -0
  1114. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/59_0.png +0 -0
  1115. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/59_1.png +0 -0
  1116. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/59_2.png +0 -0
  1117. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/59_3.png +0 -0
  1118. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/59_4.png +0 -0
  1119. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/59_5.png +0 -0
  1120. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/59_6.png +0 -0
  1121. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/59_7.png +0 -0
  1122. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/60_0.png +0 -0
  1123. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/60_1.png +0 -0
  1124. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/60_2.png +0 -0
  1125. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/60_3.png +0 -0
  1126. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/60_4.png +0 -0
  1127. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/60_5.png +0 -0
  1128. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/60_6.png +0 -0
  1129. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/60_7.png +0 -0
  1130. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/61_0.png +0 -0
  1131. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/61_1.png +0 -0
  1132. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/61_2.png +0 -0
  1133. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/61_3.png +0 -0
  1134. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/61_4.png +0 -0
  1135. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/61_5.png +0 -0
  1136. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/61_6.png +0 -0
  1137. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/61_7.png +0 -0
  1138. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/62_0.png +0 -0
  1139. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/62_1.png +0 -0
  1140. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/62_2.png +0 -0
  1141. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/62_3.png +0 -0
  1142. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/62_4.png +0 -0
  1143. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/62_5.png +0 -0
  1144. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/62_6.png +0 -0
  1145. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/62_7.png +0 -0
  1146. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/63_0.png +0 -0
  1147. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/63_1.png +0 -0
  1148. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/63_2.png +0 -0
  1149. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/63_3.png +0 -0
  1150. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/63_4.png +0 -0
  1151. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/63_5.png +0 -0
  1152. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/63_6.png +0 -0
  1153. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/63_7.png +0 -0
  1154. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/64_0.png +0 -0
  1155. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/64_1.png +0 -0
  1156. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/64_2.png +0 -0
  1157. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/64_3.png +0 -0
  1158. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/64_4.png +0 -0
  1159. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/64_5.png +0 -0
  1160. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/64_6.png +0 -0
  1161. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/64_7.png +0 -0
  1162. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/65_0.png +0 -0
  1163. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/65_1.png +0 -0
  1164. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/65_2.png +0 -0
  1165. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/65_3.png +0 -0
  1166. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/65_4.png +0 -0
  1167. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/65_5.png +0 -0
  1168. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/65_6.png +0 -0
  1169. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/65_7.png +0 -0
  1170. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/66_0.png +0 -0
  1171. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/66_1.png +0 -0
  1172. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/66_2.png +0 -0
  1173. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/66_3.png +0 -0
  1174. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/66_4.png +0 -0
  1175. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/66_5.png +0 -0
  1176. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/66_6.png +0 -0
  1177. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/66_7.png +0 -0
  1178. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/67_0.png +0 -0
  1179. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/67_1.png +0 -0
  1180. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/67_2.png +0 -0
  1181. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/67_3.png +0 -0
  1182. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/67_4.png +0 -0
  1183. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/67_5.png +0 -0
  1184. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/67_6.png +0 -0
  1185. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/67_7.png +0 -0
  1186. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/68_0.png +0 -0
  1187. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/68_1.png +0 -0
  1188. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/68_2.png +0 -0
  1189. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/68_3.png +0 -0
  1190. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/68_4.png +0 -0
  1191. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/68_5.png +0 -0
  1192. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/68_6.png +0 -0
  1193. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/68_7.png +0 -0
  1194. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/69_0.png +0 -0
  1195. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/69_1.png +0 -0
  1196. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/69_2.png +0 -0
  1197. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/69_3.png +0 -0
  1198. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/69_4.png +0 -0
  1199. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/69_5.png +0 -0
  1200. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/69_6.png +0 -0
  1201. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/69_7.png +0 -0
  1202. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/70_0.png +0 -0
  1203. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/70_1.png +0 -0
  1204. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/70_2.png +0 -0
  1205. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/70_3.png +0 -0
  1206. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/70_4.png +0 -0
  1207. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/70_5.png +0 -0
  1208. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/70_6.png +0 -0
  1209. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/70_7.png +0 -0
  1210. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/71_0.png +0 -0
  1211. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/71_1.png +0 -0
  1212. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/71_2.png +0 -0
  1213. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/71_3.png +0 -0
  1214. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/71_4.png +0 -0
  1215. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/71_5.png +0 -0
  1216. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/71_6.png +0 -0
  1217. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/71_7.png +0 -0
  1218. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/72_0.png +0 -0
  1219. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/72_1.png +0 -0
  1220. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/72_2.png +0 -0
  1221. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/72_3.png +0 -0
  1222. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/72_4.png +0 -0
  1223. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/72_5.png +0 -0
  1224. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/72_6.png +0 -0
  1225. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/72_7.png +0 -0
  1226. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/73_0.png +0 -0
  1227. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/73_1.png +0 -0
  1228. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/73_2.png +0 -0
  1229. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/73_3.png +0 -0
  1230. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/73_4.png +0 -0
  1231. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/73_5.png +0 -0
  1232. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/73_6.png +0 -0
  1233. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/73_7.png +0 -0
  1234. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/74_0.png +0 -0
  1235. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/74_1.png +0 -0
  1236. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/74_2.png +0 -0
  1237. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/74_3.png +0 -0
  1238. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/74_4.png +0 -0
  1239. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/74_5.png +0 -0
  1240. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/74_6.png +0 -0
  1241. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/74_7.png +0 -0
  1242. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/75_0.png +0 -0
  1243. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/75_1.png +0 -0
  1244. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/75_2.png +0 -0
  1245. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/75_3.png +0 -0
  1246. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/75_4.png +0 -0
  1247. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/75_5.png +0 -0
  1248. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/75_6.png +0 -0
  1249. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/75_7.png +0 -0
  1250. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/76_0.png +0 -0
  1251. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/76_1.png +0 -0
  1252. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/76_2.png +0 -0
  1253. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/76_3.png +0 -0
  1254. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/76_4.png +0 -0
  1255. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/76_5.png +0 -0
  1256. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/76_6.png +0 -0
  1257. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/76_7.png +0 -0
  1258. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/77_0.png +0 -0
  1259. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/77_1.png +0 -0
  1260. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/77_2.png +0 -0
  1261. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/77_3.png +0 -0
  1262. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/77_4.png +0 -0
  1263. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/77_5.png +0 -0
  1264. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/77_6.png +0 -0
  1265. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/77_7.png +0 -0
  1266. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/78_0.png +0 -0
  1267. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/78_1.png +0 -0
  1268. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/78_2.png +0 -0
  1269. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/78_3.png +0 -0
  1270. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/78_4.png +0 -0
  1271. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/78_5.png +0 -0
  1272. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/78_6.png +0 -0
  1273. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/78_7.png +0 -0
  1274. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/79_0.png +0 -0
  1275. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/79_1.png +0 -0
  1276. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/79_2.png +0 -0
  1277. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/79_3.png +0 -0
  1278. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/79_4.png +0 -0
  1279. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/79_5.png +0 -0
  1280. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/79_6.png +0 -0
  1281. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/79_7.png +0 -0
  1282. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/80_0.png +0 -0
  1283. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/80_1.png +0 -0
  1284. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/80_2.png +0 -0
  1285. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/80_3.png +0 -0
  1286. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/80_4.png +0 -0
  1287. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/80_5.png +0 -0
  1288. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/80_6.png +0 -0
  1289. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/80_7.png +0 -0
  1290. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/81_0.png +0 -0
  1291. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/81_1.png +0 -0
  1292. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/81_2.png +0 -0
  1293. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/81_3.png +0 -0
  1294. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/81_4.png +0 -0
  1295. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/81_5.png +0 -0
  1296. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/81_6.png +0 -0
  1297. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/81_7.png +0 -0
  1298. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/82_0.png +0 -0
  1299. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/82_1.png +0 -0
  1300. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/82_2.png +0 -0
  1301. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/82_3.png +0 -0
  1302. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/82_4.png +0 -0
  1303. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/82_5.png +0 -0
  1304. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/82_6.png +0 -0
  1305. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/82_7.png +0 -0
  1306. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/83_0.png +0 -0
  1307. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/83_1.png +0 -0
  1308. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/83_2.png +0 -0
  1309. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/83_3.png +0 -0
  1310. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/83_4.png +0 -0
  1311. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/83_5.png +0 -0
  1312. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/83_6.png +0 -0
  1313. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/83_7.png +0 -0
  1314. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/84_0.png +0 -0
  1315. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/84_1.png +0 -0
  1316. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/84_2.png +0 -0
  1317. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/84_3.png +0 -0
  1318. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/84_4.png +0 -0
  1319. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/84_5.png +0 -0
  1320. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/84_6.png +0 -0
  1321. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/84_7.png +0 -0
  1322. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/85_0.png +0 -0
  1323. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/85_1.png +0 -0
  1324. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/85_2.png +0 -0
  1325. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/85_3.png +0 -0
  1326. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/85_4.png +0 -0
  1327. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/85_5.png +0 -0
  1328. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/85_6.png +0 -0
  1329. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/85_7.png +0 -0
  1330. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/86_0.png +0 -0
  1331. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/86_1.png +0 -0
  1332. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/86_2.png +0 -0
  1333. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/86_3.png +0 -0
  1334. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/86_4.png +0 -0
  1335. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/86_5.png +0 -0
  1336. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/86_6.png +0 -0
  1337. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/86_7.png +0 -0
  1338. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/87_0.png +0 -0
  1339. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/87_1.png +0 -0
  1340. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/87_2.png +0 -0
  1341. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/87_3.png +0 -0
  1342. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/87_4.png +0 -0
  1343. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/87_5.png +0 -0
  1344. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/87_6.png +0 -0
  1345. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/87_7.png +0 -0
  1346. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/88_0.png +0 -0
  1347. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/88_1.png +0 -0
  1348. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/88_2.png +0 -0
  1349. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/88_3.png +0 -0
  1350. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/88_4.png +0 -0
  1351. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/88_5.png +0 -0
  1352. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/88_6.png +0 -0
  1353. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/88_7.png +0 -0
  1354. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/89_0.png +0 -0
  1355. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/89_1.png +0 -0
  1356. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/89_2.png +0 -0
  1357. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/89_3.png +0 -0
  1358. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/89_4.png +0 -0
  1359. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/89_5.png +0 -0
  1360. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/89_6.png +0 -0
  1361. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/89_7.png +0 -0
  1362. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/90_0.png +0 -0
  1363. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/90_1.png +0 -0
  1364. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/90_2.png +0 -0
  1365. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/90_3.png +0 -0
  1366. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/90_4.png +0 -0
  1367. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/90_5.png +0 -0
  1368. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/90_6.png +0 -0
  1369. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/90_7.png +0 -0
  1370. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/91_0.png +0 -0
  1371. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/91_1.png +0 -0
  1372. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/91_2.png +0 -0
  1373. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/91_3.png +0 -0
  1374. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/91_4.png +0 -0
  1375. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/91_5.png +0 -0
  1376. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/91_6.png +0 -0
  1377. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/91_7.png +0 -0
  1378. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/92_0.png +0 -0
  1379. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/92_1.png +0 -0
  1380. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/92_2.png +0 -0
  1381. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/92_3.png +0 -0
  1382. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/92_4.png +0 -0
  1383. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/92_5.png +0 -0
  1384. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/92_6.png +0 -0
  1385. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/92_7.png +0 -0
  1386. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/93_0.png +0 -0
  1387. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/93_1.png +0 -0
  1388. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/93_2.png +0 -0
  1389. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/93_3.png +0 -0
  1390. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/93_4.png +0 -0
  1391. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/93_5.png +0 -0
  1392. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/93_6.png +0 -0
  1393. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/93_7.png +0 -0
  1394. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/94_0.png +0 -0
  1395. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/94_1.png +0 -0
  1396. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/94_2.png +0 -0
  1397. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/94_3.png +0 -0
  1398. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/94_4.png +0 -0
  1399. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/94_5.png +0 -0
  1400. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/94_6.png +0 -0
  1401. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/94_7.png +0 -0
  1402. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/95_0.png +0 -0
  1403. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/95_1.png +0 -0
  1404. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/95_2.png +0 -0
  1405. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/95_3.png +0 -0
  1406. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/95_4.png +0 -0
  1407. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/95_5.png +0 -0
  1408. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/95_6.png +0 -0
  1409. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/95_7.png +0 -0
  1410. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/96_0.png +0 -0
  1411. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/96_1.png +0 -0
  1412. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/96_2.png +0 -0
  1413. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/96_3.png +0 -0
  1414. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/96_4.png +0 -0
  1415. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/96_5.png +0 -0
  1416. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/96_6.png +0 -0
  1417. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/96_7.png +0 -0
  1418. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/97_0.png +0 -0
  1419. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/97_1.png +0 -0
  1420. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/97_2.png +0 -0
  1421. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/97_3.png +0 -0
  1422. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/97_4.png +0 -0
  1423. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/97_5.png +0 -0
  1424. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/97_6.png +0 -0
  1425. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/97_7.png +0 -0
  1426. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/98_0.png +0 -0
  1427. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/98_1.png +0 -0
  1428. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/98_2.png +0 -0
  1429. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/98_3.png +0 -0
  1430. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/98_4.png +0 -0
  1431. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/98_5.png +0 -0
  1432. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/98_6.png +0 -0
  1433. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/98_7.png +0 -0
  1434. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/99_0.png +0 -0
  1435. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/99_1.png +0 -0
  1436. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/99_2.png +0 -0
  1437. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/99_3.png +0 -0
  1438. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/99_4.png +0 -0
  1439. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/99_5.png +0 -0
  1440. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/99_6.png +0 -0
  1441. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/data/labels/99_7.png +0 -0
  1442. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/yolo-image.cpp +0 -0
  1443. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/yolo-image.h +0 -0
  1444. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/examples/yolo/yolov3-tiny.cpp +0 -0
  1445. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/ggml.pc.in +0 -0
  1446. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/include/ggml-alloc.h +0 -0
  1447. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/include/ggml-backend.h +0 -0
  1448. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/include/ggml-blas.h +0 -0
  1449. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/include/ggml-cann.h +0 -0
  1450. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/include/ggml-cpp.h +0 -0
  1451. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/include/ggml-cpu.h +0 -0
  1452. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/include/ggml-cuda.h +0 -0
  1453. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/include/ggml-hexagon.h +0 -0
  1454. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/include/ggml-metal.h +0 -0
  1455. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/include/ggml-opencl.h +0 -0
  1456. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/include/ggml-openvino.h +0 -0
  1457. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/include/ggml-opt.h +0 -0
  1458. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/include/ggml-rpc.h +0 -0
  1459. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/include/ggml-sycl.h +0 -0
  1460. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/include/ggml-virtgpu.h +0 -0
  1461. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/include/ggml-vulkan.h +0 -0
  1462. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/include/ggml-webgpu.h +0 -0
  1463. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/include/ggml-zdnn.h +0 -0
  1464. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/include/ggml-zendnn.h +0 -0
  1465. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/include/ggml.h +0 -0
  1466. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/include/gguf.h +0 -0
  1467. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/requirements.txt +0 -0
  1468. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/scripts/gen-authors.sh +0 -0
  1469. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/scripts/release.sh +0 -0
  1470. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/scripts/sync-llama-am.sh +0 -0
  1471. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/scripts/sync-llama.last +0 -0
  1472. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/scripts/sync-llama.sh +0 -0
  1473. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/scripts/sync-whisper-am.sh +0 -0
  1474. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/scripts/sync-whisper.last +0 -0
  1475. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/scripts/sync-whisper.sh +0 -0
  1476. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/CMakeLists.txt +0 -0
  1477. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-alloc.c +0 -0
  1478. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-backend-dl.cpp +0 -0
  1479. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-backend-dl.h +0 -0
  1480. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-backend-impl.h +0 -0
  1481. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-backend-meta.cpp +0 -0
  1482. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-backend-reg.cpp +0 -0
  1483. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-backend.cpp +0 -0
  1484. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-blas/CMakeLists.txt +0 -0
  1485. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-blas/ggml-blas.cpp +0 -0
  1486. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cann/CMakeLists.txt +0 -0
  1487. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cann/acl_tensor.cpp +0 -0
  1488. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cann/acl_tensor.h +0 -0
  1489. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cann/aclnn_ops.cpp +0 -0
  1490. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cann/aclnn_ops.h +0 -0
  1491. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cann/common.h +0 -0
  1492. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cann/ggml-cann.cpp +0 -0
  1493. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-common.h +0 -0
  1494. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/CMakeLists.txt +0 -0
  1495. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/amx/amx.cpp +0 -0
  1496. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/amx/amx.h +0 -0
  1497. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/amx/common.h +0 -0
  1498. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/amx/mmq.cpp +0 -0
  1499. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/amx/mmq.h +0 -0
  1500. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/arch/arm/cpu-feats.cpp +0 -0
  1501. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/arch/arm/quants.c +0 -0
  1502. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/arch/arm/repack.cpp +0 -0
  1503. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/arch/loongarch/quants.c +0 -0
  1504. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/arch/powerpc/cpu-feats.cpp +0 -0
  1505. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/arch/powerpc/quants.c +0 -0
  1506. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/arch/riscv/cpu-feats.cpp +0 -0
  1507. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/arch/riscv/quants.c +0 -0
  1508. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/arch/riscv/repack.cpp +0 -0
  1509. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/arch/s390/cpu-feats.cpp +0 -0
  1510. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/arch/s390/quants.c +0 -0
  1511. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/arch/wasm/quants.c +0 -0
  1512. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/arch/x86/cpu-feats.cpp +0 -0
  1513. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/arch/x86/quants.c +0 -0
  1514. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/arch/x86/repack.cpp +0 -0
  1515. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/arch-fallback.h +0 -0
  1516. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/binary-ops.cpp +0 -0
  1517. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/binary-ops.h +0 -0
  1518. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/cmake/FindSIMD.cmake +0 -0
  1519. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/cmake/FindSMTIME.cmake +0 -0
  1520. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/common.h +0 -0
  1521. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/ggml-cpu-impl.h +0 -0
  1522. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/ggml-cpu.c +0 -0
  1523. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/ggml-cpu.cpp +0 -0
  1524. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/hbm.cpp +0 -0
  1525. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/hbm.h +0 -0
  1526. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/kleidiai/kernels.cpp +0 -0
  1527. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/kleidiai/kernels.h +0 -0
  1528. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/kleidiai/kleidiai.cpp +0 -0
  1529. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/kleidiai/kleidiai.h +0 -0
  1530. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/llamafile/sgemm.cpp +0 -0
  1531. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/llamafile/sgemm.h +0 -0
  1532. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/ops.cpp +0 -0
  1533. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/ops.h +0 -0
  1534. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/quants.c +0 -0
  1535. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/quants.h +0 -0
  1536. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/repack.cpp +0 -0
  1537. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/repack.h +0 -0
  1538. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/simd-gemm.h +0 -0
  1539. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/simd-mappings.h +0 -0
  1540. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/spacemit/ime.cpp +0 -0
  1541. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/spacemit/ime.h +0 -0
  1542. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/spacemit/ime1_kernels.cpp +0 -0
  1543. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/spacemit/ime2_kernels.cpp +0 -0
  1544. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/spacemit/ime_env.cpp +0 -0
  1545. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/spacemit/ime_env.h +0 -0
  1546. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/spacemit/ime_kernels.h +0 -0
  1547. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/spacemit/repack.cpp +0 -0
  1548. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/spacemit/repack.h +0 -0
  1549. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/spacemit/rvv_kernels.cpp +0 -0
  1550. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/spacemit/rvv_kernels.h +0 -0
  1551. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/spacemit/spine_barrier.h +0 -0
  1552. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/spacemit/spine_mem_pool.cpp +0 -0
  1553. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/spacemit/spine_mem_pool.h +0 -0
  1554. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/spacemit/spine_tcm.h +0 -0
  1555. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/traits.cpp +0 -0
  1556. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/traits.h +0 -0
  1557. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/unary-ops.cpp +0 -0
  1558. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/unary-ops.h +0 -0
  1559. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/vec.cpp +0 -0
  1560. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cpu/vec.h +0 -0
  1561. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/CMakeLists.txt +0 -0
  1562. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/acc.cu +0 -0
  1563. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/acc.cuh +0 -0
  1564. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/add-id.cu +0 -0
  1565. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/add-id.cuh +0 -0
  1566. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/allreduce.cu +0 -0
  1567. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/allreduce.cuh +0 -0
  1568. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/arange.cu +0 -0
  1569. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/arange.cuh +0 -0
  1570. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/argmax.cu +0 -0
  1571. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/argmax.cuh +0 -0
  1572. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/argsort.cu +0 -0
  1573. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/argsort.cuh +0 -0
  1574. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/binbcast.cu +0 -0
  1575. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/binbcast.cuh +0 -0
  1576. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/clamp.cu +0 -0
  1577. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/clamp.cuh +0 -0
  1578. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/col2im-1d.cu +0 -0
  1579. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/col2im-1d.cuh +0 -0
  1580. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/common.cuh +0 -0
  1581. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/concat.cu +0 -0
  1582. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/concat.cuh +0 -0
  1583. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/conv-transpose-1d.cu +0 -0
  1584. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/conv-transpose-1d.cuh +0 -0
  1585. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/conv2d-dw.cu +0 -0
  1586. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/conv2d-dw.cuh +0 -0
  1587. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/conv2d-transpose.cu +0 -0
  1588. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/conv2d-transpose.cuh +0 -0
  1589. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/conv2d.cu +0 -0
  1590. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/conv2d.cuh +0 -0
  1591. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/convert.cu +0 -0
  1592. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/convert.cuh +0 -0
  1593. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/count-equal.cu +0 -0
  1594. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/count-equal.cuh +0 -0
  1595. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/cp-async.cuh +0 -0
  1596. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/cpy-utils.cuh +0 -0
  1597. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/cpy.cu +0 -0
  1598. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/cpy.cuh +0 -0
  1599. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/cross-entropy-loss.cu +0 -0
  1600. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/cross-entropy-loss.cuh +0 -0
  1601. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/cumsum.cu +0 -0
  1602. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/cumsum.cuh +0 -0
  1603. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/dequantize.cuh +0 -0
  1604. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/diag.cu +0 -0
  1605. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/diag.cuh +0 -0
  1606. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/diagmask.cu +0 -0
  1607. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/diagmask.cuh +0 -0
  1608. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/fattn-common.cuh +0 -0
  1609. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/fattn-mma-f16.cuh +0 -0
  1610. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/fattn-tile.cu +0 -0
  1611. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/fattn-tile.cuh +0 -0
  1612. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/fattn-vec.cuh +0 -0
  1613. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/fattn-wmma-f16.cu +0 -0
  1614. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/fattn-wmma-f16.cuh +0 -0
  1615. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/fattn.cu +0 -0
  1616. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/fattn.cuh +0 -0
  1617. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/fill.cu +0 -0
  1618. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/fill.cuh +0 -0
  1619. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/fwht.cu +0 -0
  1620. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/fwht.cuh +0 -0
  1621. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/gated_delta_net.cu +0 -0
  1622. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/gated_delta_net.cuh +0 -0
  1623. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/getrows.cu +0 -0
  1624. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/getrows.cuh +0 -0
  1625. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/ggml-cuda.cu +0 -0
  1626. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/gla.cu +0 -0
  1627. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/gla.cuh +0 -0
  1628. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/im2col.cu +0 -0
  1629. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/im2col.cuh +0 -0
  1630. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/mean.cu +0 -0
  1631. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/mean.cuh +0 -0
  1632. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/mma.cuh +0 -0
  1633. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/mmf.cu +0 -0
  1634. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/mmf.cuh +0 -0
  1635. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/mmid.cu +0 -0
  1636. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/mmid.cuh +0 -0
  1637. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/mmq.cu +0 -0
  1638. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/mmq.cuh +0 -0
  1639. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/mmvf.cu +0 -0
  1640. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/mmvf.cuh +0 -0
  1641. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/mmvq.cu +0 -0
  1642. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/mmvq.cuh +0 -0
  1643. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/norm.cu +0 -0
  1644. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/norm.cuh +0 -0
  1645. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/opt-step-adamw.cu +0 -0
  1646. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/opt-step-adamw.cuh +0 -0
  1647. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/opt-step-sgd.cu +0 -0
  1648. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/opt-step-sgd.cuh +0 -0
  1649. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/out-prod.cu +0 -0
  1650. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/out-prod.cuh +0 -0
  1651. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/pad.cu +0 -0
  1652. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/pad.cuh +0 -0
  1653. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/pad_reflect_1d.cu +0 -0
  1654. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/pad_reflect_1d.cuh +0 -0
  1655. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/pool2d.cu +0 -0
  1656. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/pool2d.cuh +0 -0
  1657. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/quantize.cu +0 -0
  1658. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/quantize.cuh +0 -0
  1659. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/reduce_rows.cuh +0 -0
  1660. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/roll.cu +0 -0
  1661. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/roll.cuh +0 -0
  1662. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/rope.cu +0 -0
  1663. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/rope.cuh +0 -0
  1664. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/scale.cu +0 -0
  1665. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/scale.cuh +0 -0
  1666. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/set-rows.cu +0 -0
  1667. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/set-rows.cuh +0 -0
  1668. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/set.cu +0 -0
  1669. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/set.cuh +0 -0
  1670. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/snake.cu +0 -0
  1671. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/snake.cuh +0 -0
  1672. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/softcap.cu +0 -0
  1673. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/softcap.cuh +0 -0
  1674. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/softmax.cu +0 -0
  1675. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/softmax.cuh +0 -0
  1676. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/solve_tri.cu +0 -0
  1677. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/solve_tri.cuh +0 -0
  1678. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/ssm-conv.cu +0 -0
  1679. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/ssm-conv.cuh +0 -0
  1680. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/ssm-scan.cu +0 -0
  1681. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/ssm-scan.cuh +0 -0
  1682. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/sum.cu +0 -0
  1683. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/sum.cuh +0 -0
  1684. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/sumrows.cu +0 -0
  1685. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/sumrows.cuh +0 -0
  1686. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_1-ncols2_16.cu +0 -0
  1687. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_1-ncols2_32.cu +0 -0
  1688. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_1-ncols2_8.cu +0 -0
  1689. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_16-ncols2_1.cu +0 -0
  1690. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_16-ncols2_2.cu +0 -0
  1691. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_16-ncols2_4.cu +0 -0
  1692. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_2-ncols2_16.cu +0 -0
  1693. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_2-ncols2_32.cu +0 -0
  1694. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_2-ncols2_4.cu +0 -0
  1695. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_2-ncols2_8.cu +0 -0
  1696. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_32-ncols2_1.cu +0 -0
  1697. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_32-ncols2_2.cu +0 -0
  1698. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_4-ncols2_16.cu +0 -0
  1699. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_4-ncols2_2.cu +0 -0
  1700. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_4-ncols2_4.cu +0 -0
  1701. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_4-ncols2_8.cu +0 -0
  1702. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_64-ncols2_1.cu +0 -0
  1703. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_8-ncols2_1.cu +0 -0
  1704. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_8-ncols2_2.cu +0 -0
  1705. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_8-ncols2_4.cu +0 -0
  1706. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_8-ncols2_8.cu +0 -0
  1707. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq112-dv112.cu +0 -0
  1708. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq128-dv128.cu +0 -0
  1709. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq192-dv128.cu +0 -0
  1710. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq256-dv256.cu +0 -0
  1711. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq320-dv256.cu +0 -0
  1712. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq40-dv40.cu +0 -0
  1713. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq512-dv512.cu +0 -0
  1714. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq576-dv512.cu +0 -0
  1715. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq64-dv64.cu +0 -0
  1716. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq72-dv72.cu +0 -0
  1717. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq80-dv80.cu +0 -0
  1718. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq96-dv96.cu +0 -0
  1719. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-bf16.cu +0 -0
  1720. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-f16.cu +0 -0
  1721. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-q4_0.cu +0 -0
  1722. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-q4_1.cu +0 -0
  1723. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-q5_0.cu +0 -0
  1724. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-q5_1.cu +0 -0
  1725. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-q8_0.cu +0 -0
  1726. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-bf16.cu +0 -0
  1727. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-f16.cu +0 -0
  1728. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-q4_0.cu +0 -0
  1729. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-q4_1.cu +0 -0
  1730. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-q5_0.cu +0 -0
  1731. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-q5_1.cu +0 -0
  1732. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-q8_0.cu +0 -0
  1733. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-bf16.cu +0 -0
  1734. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-f16.cu +0 -0
  1735. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-q4_0.cu +0 -0
  1736. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-q4_1.cu +0 -0
  1737. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-q5_0.cu +0 -0
  1738. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-q5_1.cu +0 -0
  1739. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-q8_0.cu +0 -0
  1740. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-bf16.cu +0 -0
  1741. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-f16.cu +0 -0
  1742. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-q4_0.cu +0 -0
  1743. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-q4_1.cu +0 -0
  1744. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-q5_0.cu +0 -0
  1745. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-q5_1.cu +0 -0
  1746. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-q8_0.cu +0 -0
  1747. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-bf16.cu +0 -0
  1748. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-f16.cu +0 -0
  1749. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-q4_0.cu +0 -0
  1750. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-q4_1.cu +0 -0
  1751. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-q5_0.cu +0 -0
  1752. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-q5_1.cu +0 -0
  1753. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-q8_0.cu +0 -0
  1754. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-bf16.cu +0 -0
  1755. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-f16.cu +0 -0
  1756. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-q4_0.cu +0 -0
  1757. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-q4_1.cu +0 -0
  1758. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-q5_0.cu +0 -0
  1759. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-q5_1.cu +0 -0
  1760. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-q8_0.cu +0 -0
  1761. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-bf16.cu +0 -0
  1762. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-f16.cu +0 -0
  1763. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-q4_0.cu +0 -0
  1764. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-q4_1.cu +0 -0
  1765. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-q5_0.cu +0 -0
  1766. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-q5_1.cu +0 -0
  1767. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-q8_0.cu +0 -0
  1768. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/generate_cu_files.py +0 -0
  1769. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_1.cu +0 -0
  1770. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_10.cu +0 -0
  1771. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_11.cu +0 -0
  1772. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_12.cu +0 -0
  1773. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_13.cu +0 -0
  1774. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_14.cu +0 -0
  1775. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_15.cu +0 -0
  1776. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_16.cu +0 -0
  1777. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_2.cu +0 -0
  1778. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_3.cu +0 -0
  1779. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_4.cu +0 -0
  1780. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_5.cu +0 -0
  1781. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_6.cu +0 -0
  1782. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_7.cu +0 -0
  1783. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_8.cu +0 -0
  1784. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_9.cu +0 -0
  1785. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmq-instance-iq1_s.cu +0 -0
  1786. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmq-instance-iq2_s.cu +0 -0
  1787. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmq-instance-iq2_xs.cu +0 -0
  1788. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmq-instance-iq2_xxs.cu +0 -0
  1789. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmq-instance-iq3_s.cu +0 -0
  1790. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmq-instance-iq3_xxs.cu +0 -0
  1791. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmq-instance-iq4_nl.cu +0 -0
  1792. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmq-instance-iq4_xs.cu +0 -0
  1793. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmq-instance-mxfp4.cu +0 -0
  1794. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmq-instance-nvfp4.cu +0 -0
  1795. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmq-instance-q1_0.cu +0 -0
  1796. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmq-instance-q2_k.cu +0 -0
  1797. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmq-instance-q3_k.cu +0 -0
  1798. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmq-instance-q4_0.cu +0 -0
  1799. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmq-instance-q4_1.cu +0 -0
  1800. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmq-instance-q4_k.cu +0 -0
  1801. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmq-instance-q5_0.cu +0 -0
  1802. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmq-instance-q5_1.cu +0 -0
  1803. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmq-instance-q5_k.cu +0 -0
  1804. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmq-instance-q6_k.cu +0 -0
  1805. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/template-instances/mmq-instance-q8_0.cu +0 -0
  1806. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/top-k.cu +0 -0
  1807. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/top-k.cuh +0 -0
  1808. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/topk-moe.cu +0 -0
  1809. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/topk-moe.cuh +0 -0
  1810. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/tri.cu +0 -0
  1811. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/tri.cuh +0 -0
  1812. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/tsembd.cu +0 -0
  1813. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/tsembd.cuh +0 -0
  1814. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/unary.cu +0 -0
  1815. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/unary.cuh +0 -0
  1816. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/upscale.cu +0 -0
  1817. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/upscale.cuh +0 -0
  1818. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/vecdotq.cuh +0 -0
  1819. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/vendors/cuda.h +0 -0
  1820. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/vendors/hip.h +0 -0
  1821. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/vendors/musa.h +0 -0
  1822. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/wkv.cu +0 -0
  1823. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-cuda/wkv.cuh +0 -0
  1824. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/CMakeLists.txt +0 -0
  1825. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/ggml-hexagon.cpp +0 -0
  1826. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/CMakeLists.txt +0 -0
  1827. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/act-ops.c +0 -0
  1828. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/argsort-ops.c +0 -0
  1829. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/binary-ops.c +0 -0
  1830. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/cmake-toolchain.cmake +0 -0
  1831. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/concat-ops.c +0 -0
  1832. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/cpy-ops.c +0 -0
  1833. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/cumsum-ops.c +0 -0
  1834. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/diag-ops.c +0 -0
  1835. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/fill-ops.c +0 -0
  1836. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/flash-attn-ops.c +0 -0
  1837. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/gated-delta-net-ops.c +0 -0
  1838. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/get-rows-ops.c +0 -0
  1839. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hex-dma.c +0 -0
  1840. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hex-dma.h +0 -0
  1841. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hex-dump.h +0 -0
  1842. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hex-fastdiv.h +0 -0
  1843. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hex-profile.h +0 -0
  1844. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hex-utils.h +0 -0
  1845. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hmx-flash-attn-ops.c +0 -0
  1846. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hmx-matmul-ops.c +0 -0
  1847. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hmx-ops.c +0 -0
  1848. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hmx-ops.h +0 -0
  1849. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hmx-queue.c +0 -0
  1850. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hmx-queue.h +0 -0
  1851. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hmx-utils.h +0 -0
  1852. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/htp-ctx.h +0 -0
  1853. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/htp-ops.h +0 -0
  1854. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/htp_iface.idl +0 -0
  1855. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hvx-arith.h +0 -0
  1856. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hvx-base.h +0 -0
  1857. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hvx-copy.h +0 -0
  1858. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hvx-div.h +0 -0
  1859. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hvx-dump.h +0 -0
  1860. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hvx-exp.h +0 -0
  1861. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hvx-flash-attn.h +0 -0
  1862. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hvx-floor.h +0 -0
  1863. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hvx-inverse.h +0 -0
  1864. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hvx-log.h +0 -0
  1865. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hvx-pow.h +0 -0
  1866. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hvx-reduce.h +0 -0
  1867. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hvx-repl.h +0 -0
  1868. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hvx-scale.h +0 -0
  1869. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hvx-sigmoid.h +0 -0
  1870. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hvx-sin-cos.h +0 -0
  1871. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hvx-sqrt.h +0 -0
  1872. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hvx-types.h +0 -0
  1873. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/hvx-utils.h +0 -0
  1874. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/main.c +0 -0
  1875. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/matmul-ops.c +0 -0
  1876. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/pad-ops.c +0 -0
  1877. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/repeat-ops.c +0 -0
  1878. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/rope-ops.c +0 -0
  1879. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/set-rows-ops.c +0 -0
  1880. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/softmax-ops.c +0 -0
  1881. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/solve-tri-ops.c +0 -0
  1882. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/ssm-conv.c +0 -0
  1883. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/sum-rows-ops.c +0 -0
  1884. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/unary-ops.c +0 -0
  1885. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/vtcm-utils.h +0 -0
  1886. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/worker-pool.c +0 -0
  1887. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp/worker-pool.h +0 -0
  1888. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp-drv.cpp +0 -0
  1889. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp-drv.h +0 -0
  1890. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/htp-opnode.h +0 -0
  1891. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/libdl.h +0 -0
  1892. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hexagon/libggml-htp.inf +0 -0
  1893. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-hip/CMakeLists.txt +0 -0
  1894. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-impl.h +0 -0
  1895. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-metal/CMakeLists.txt +0 -0
  1896. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-metal/ggml-metal-common.cpp +0 -0
  1897. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-metal/ggml-metal-common.h +0 -0
  1898. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-metal/ggml-metal-context.h +0 -0
  1899. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-metal/ggml-metal-context.m +0 -0
  1900. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-metal/ggml-metal-device.cpp +0 -0
  1901. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-metal/ggml-metal-device.h +0 -0
  1902. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-metal/ggml-metal-device.m +0 -0
  1903. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-metal/ggml-metal-impl.h +0 -0
  1904. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-metal/ggml-metal-ops.cpp +0 -0
  1905. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-metal/ggml-metal-ops.h +0 -0
  1906. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-metal/ggml-metal.cpp +0 -0
  1907. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-metal/ggml-metal.metal +0 -0
  1908. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-musa/CMakeLists.txt +0 -0
  1909. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-musa/mudnn.cu +0 -0
  1910. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-musa/mudnn.cuh +0 -0
  1911. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/CMakeLists.txt +0 -0
  1912. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/ggml-opencl.cpp +0 -0
  1913. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/add.cl +0 -0
  1914. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/add_id.cl +0 -0
  1915. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/argsort.cl +0 -0
  1916. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/clamp.cl +0 -0
  1917. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/concat.cl +0 -0
  1918. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/conv2d.cl +0 -0
  1919. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/conv2d_f16_f32.cl +0 -0
  1920. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/cpy.cl +0 -0
  1921. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/cumsum.cl +0 -0
  1922. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/cvt.cl +0 -0
  1923. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/diag.cl +0 -0
  1924. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/diag_mask_inf.cl +0 -0
  1925. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/div.cl +0 -0
  1926. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/embed_kernel.py +0 -0
  1927. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/exp.cl +0 -0
  1928. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/expm1.cl +0 -0
  1929. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/fill.cl +0 -0
  1930. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/flash_attn_f16.cl +0 -0
  1931. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/flash_attn_f32.cl +0 -0
  1932. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/flash_attn_f32_f16.cl +0 -0
  1933. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gated_delta_net.cl +0 -0
  1934. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gelu.cl +0 -0
  1935. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemm_moe_mxfp4_f32.cl +0 -0
  1936. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemm_moe_mxfp4_f32_ns.cl +0 -0
  1937. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemm_moe_q4_0_f32_ns.cl +0 -0
  1938. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemm_moe_q4_1_f32_ns.cl +0 -0
  1939. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemm_moe_q4_k_f32_ns.cl +0 -0
  1940. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemm_moe_q5_0_f32_ns.cl +0 -0
  1941. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemm_moe_q5_1_f32_ns.cl +0 -0
  1942. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemm_moe_q5_k_f32_ns.cl +0 -0
  1943. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemm_moe_q6_k_f32_ns.cl +0 -0
  1944. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemm_noshuffle_iq4_nl_f32.cl +0 -0
  1945. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q4_0_f32.cl +0 -0
  1946. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q4_1_f32.cl +0 -0
  1947. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q4_k_f32.cl +0 -0
  1948. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q5_0_f32.cl +0 -0
  1949. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q5_1_f32.cl +0 -0
  1950. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q5_k_f32.cl +0 -0
  1951. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q6_k_f32.cl +0 -0
  1952. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q8_0_f32.cl +0 -0
  1953. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemm_xmem_f16_f32_os8.cl +0 -0
  1954. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemv_moe_mxfp4_f32.cl +0 -0
  1955. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemv_moe_mxfp4_f32_ns.cl +0 -0
  1956. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemv_moe_q4_0_f32_ns.cl +0 -0
  1957. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemv_moe_q4_1_f32_ns.cl +0 -0
  1958. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemv_moe_q4_k_f32_ns.cl +0 -0
  1959. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemv_moe_q5_0_f32_ns.cl +0 -0
  1960. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemv_moe_q5_1_f32_ns.cl +0 -0
  1961. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemv_moe_q5_k_f32_ns.cl +0 -0
  1962. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemv_moe_q6_k_f32_ns.cl +0 -0
  1963. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemv_noshuffle_iq4_nl_f32.cl +0 -0
  1964. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q4_0_f32.cl +0 -0
  1965. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q4_0_f32_spec.cl +0 -0
  1966. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q4_1_f32.cl +0 -0
  1967. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q4_k_f32.cl +0 -0
  1968. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q5_0_f32.cl +0 -0
  1969. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q5_1_f32.cl +0 -0
  1970. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q5_k_f32.cl +0 -0
  1971. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q6_k_f32.cl +0 -0
  1972. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q8_0_f32.cl +0 -0
  1973. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/get_rows.cl +0 -0
  1974. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/glu.cl +0 -0
  1975. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/group_norm.cl +0 -0
  1976. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/im2col_f16.cl +0 -0
  1977. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/im2col_f32.cl +0 -0
  1978. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/l2_norm.cl +0 -0
  1979. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mean.cl +0 -0
  1980. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/moe_reorder_b.cl +0 -0
  1981. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/moe_sort_by_expert.cl +0 -0
  1982. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul.cl +0 -0
  1983. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mat_f16_f32.cl +0 -0
  1984. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mm_f16_f32_kq_kqv.cl +0 -0
  1985. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mm_f16_f32_l4_lm.cl +0 -0
  1986. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mm_f32_f32_l4_lm.cl +0 -0
  1987. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mm_iq4_nl_f32_l4_lm.cl +0 -0
  1988. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mm_q4_0_f32_l4_lm.cl +0 -0
  1989. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mm_q4_1_f32_l4_lm.cl +0 -0
  1990. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mm_q4_k_f32_l4_lm.cl +0 -0
  1991. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mm_q5_0_f32_l4_lm.cl +0 -0
  1992. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mm_q5_1_f32_l4_lm.cl +0 -0
  1993. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mm_q5_k_f32_l4_lm.cl +0 -0
  1994. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mm_q6_k_f32_l4_lm.cl +0 -0
  1995. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mm_q8_0_f32_l4_lm.cl +0 -0
  1996. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_f16_f16.cl +0 -0
  1997. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_f16_f32.cl +0 -0
  1998. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_f16_f32_1row.cl +0 -0
  1999. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_f16_f32_l4.cl +0 -0
  2000. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_f32_f32.cl +0 -0
  2001. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_id_mxfp4_f32.cl +0 -0
  2002. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_id_mxfp4_f32_flat.cl +0 -0
  2003. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_id_q4_0_f32_8x_flat.cl +0 -0
  2004. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_id_q8_0_f32.cl +0 -0
  2005. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_id_q8_0_f32_flat.cl +0 -0
  2006. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_iq4_nl_f32.cl +0 -0
  2007. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_iq4_nl_f32_flat.cl +0 -0
  2008. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_mxfp4_f32.cl +0 -0
  2009. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_mxfp4_f32_flat.cl +0 -0
  2010. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32.cl +0 -0
  2011. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32_1d_16x_flat.cl +0 -0
  2012. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32_1d_8x_flat.cl +0 -0
  2013. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32_8x_flat.cl +0 -0
  2014. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32_v.cl +0 -0
  2015. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_q4_1_f32.cl +0 -0
  2016. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_q4_1_f32_flat.cl +0 -0
  2017. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_q4_k_f32.cl +0 -0
  2018. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_q4_k_f32_flat.cl +0 -0
  2019. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_q5_0_f32.cl +0 -0
  2020. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_q5_0_f32_flat.cl +0 -0
  2021. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_q5_1_f32.cl +0 -0
  2022. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_q5_1_f32_flat.cl +0 -0
  2023. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_q5_k_f32.cl +0 -0
  2024. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_q5_k_f32_flat.cl +0 -0
  2025. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_q6_k_f32.cl +0 -0
  2026. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_q6_k_f32_flat.cl +0 -0
  2027. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_q8_0_f32.cl +0 -0
  2028. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/mul_mv_q8_0_f32_flat.cl +0 -0
  2029. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/neg.cl +0 -0
  2030. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/norm.cl +0 -0
  2031. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/pad.cl +0 -0
  2032. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/relu.cl +0 -0
  2033. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/repeat.cl +0 -0
  2034. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/rms_norm.cl +0 -0
  2035. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/rope.cl +0 -0
  2036. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/scale.cl +0 -0
  2037. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/set_rows.cl +0 -0
  2038. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/sigmoid.cl +0 -0
  2039. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/silu.cl +0 -0
  2040. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/softmax_4_f16.cl +0 -0
  2041. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/softmax_4_f32.cl +0 -0
  2042. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/softmax_f16.cl +0 -0
  2043. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/softmax_f32.cl +0 -0
  2044. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/softplus.cl +0 -0
  2045. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/solve_tri.cl +0 -0
  2046. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/sqr.cl +0 -0
  2047. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/sqrt.cl +0 -0
  2048. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/ssm_conv.cl +0 -0
  2049. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/sub.cl +0 -0
  2050. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/sum_rows.cl +0 -0
  2051. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/tanh.cl +0 -0
  2052. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/transpose.cl +0 -0
  2053. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/tri.cl +0 -0
  2054. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/tsembd.cl +0 -0
  2055. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opencl/kernels/upscale.cl +0 -0
  2056. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/.clang-format +0 -0
  2057. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/CMakeLists.txt +0 -0
  2058. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/ggml-decoder.cpp +0 -0
  2059. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/ggml-decoder.h +0 -0
  2060. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/ggml-openvino-extra.cpp +0 -0
  2061. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/ggml-openvino-extra.h +0 -0
  2062. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/ggml-openvino.cpp +0 -0
  2063. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/ggml-quants.cpp +0 -0
  2064. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/ggml-quants.h +0 -0
  2065. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/decoder.h +0 -0
  2066. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/frontend.cpp +0 -0
  2067. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/frontend.h +0 -0
  2068. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/input_model.cpp +0 -0
  2069. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/input_model.h +0 -0
  2070. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/node_context.h +0 -0
  2071. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/add_id.cpp +0 -0
  2072. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/argsort.cpp +0 -0
  2073. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/clamp.cpp +0 -0
  2074. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/concat.cpp +0 -0
  2075. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/cont.cpp +0 -0
  2076. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/cpy.cpp +0 -0
  2077. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/div.cpp +0 -0
  2078. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/flash_attn_ext.cpp +0 -0
  2079. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/gated_delta_net.cpp +0 -0
  2080. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/gated_delta_net.hpp +0 -0
  2081. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/get_rows.cpp +0 -0
  2082. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/glu_geglu.cpp +0 -0
  2083. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/glu_swiglu.cpp +0 -0
  2084. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/im2col.cpp +0 -0
  2085. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/l2_norm.cpp +0 -0
  2086. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/mul_mat_id.cpp +0 -0
  2087. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/mulmat.cpp +0 -0
  2088. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/norm.cpp +0 -0
  2089. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/pad.cpp +0 -0
  2090. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/permute.cpp +0 -0
  2091. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/repeat.cpp +0 -0
  2092. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/reshape.cpp +0 -0
  2093. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/rms_norm.cpp +0 -0
  2094. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/rope.cpp +0 -0
  2095. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/scale.cpp +0 -0
  2096. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/set_rows.cpp +0 -0
  2097. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/softmax.cpp +0 -0
  2098. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/ssm_conv.cpp +0 -0
  2099. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/sum_rows.cpp +0 -0
  2100. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/transpose.cpp +0 -0
  2101. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/unary_silu.cpp +0 -0
  2102. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/unary_softplus.cpp +0 -0
  2103. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op/view.cpp +0 -0
  2104. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op_table.cpp +0 -0
  2105. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/op_table.h +0 -0
  2106. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/pass/fuse_to_sdpa.cpp +0 -0
  2107. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/pass/fuse_to_sdpa.h +0 -0
  2108. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/pass/mark_decompression_convert_constant_folding.h +0 -0
  2109. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/pass/squeeze_matmul.cpp +0 -0
  2110. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/pass/squeeze_matmul.h +0 -0
  2111. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/rt_info/weightless_caching_attributes.hpp +0 -0
  2112. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/translate_session.cpp +0 -0
  2113. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/translate_session.h +0 -0
  2114. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/utils.cpp +0 -0
  2115. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/openvino/utils.h +0 -0
  2116. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/utils.cpp +0 -0
  2117. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-openvino/utils.h +0 -0
  2118. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-opt.cpp +0 -0
  2119. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-quants.c +0 -0
  2120. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-quants.h +0 -0
  2121. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-rpc/CMakeLists.txt +0 -0
  2122. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-rpc/ggml-rpc.cpp +0 -0
  2123. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-rpc/transport.cpp +0 -0
  2124. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-rpc/transport.h +0 -0
  2125. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/CMakeLists.txt +0 -0
  2126. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/add-id.cpp +0 -0
  2127. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/add-id.hpp +0 -0
  2128. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/backend.hpp +0 -0
  2129. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/binbcast.cpp +0 -0
  2130. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/binbcast.hpp +0 -0
  2131. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/common.cpp +0 -0
  2132. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/common.hpp +0 -0
  2133. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/concat.cpp +0 -0
  2134. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/concat.hpp +0 -0
  2135. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/conv.cpp +0 -0
  2136. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/conv.hpp +0 -0
  2137. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/conv2d-dw.cpp +0 -0
  2138. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/conv2d-dw.hpp +0 -0
  2139. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/conv2d-transpose.cpp +0 -0
  2140. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/conv2d-transpose.hpp +0 -0
  2141. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/conv2d.cpp +0 -0
  2142. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/conv2d.hpp +0 -0
  2143. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/conv3d.cpp +0 -0
  2144. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/conv3d.hpp +0 -0
  2145. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/convert.cpp +0 -0
  2146. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/convert.hpp +0 -0
  2147. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/count-equal.cpp +0 -0
  2148. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/count-equal.hpp +0 -0
  2149. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/cpy.cpp +0 -0
  2150. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/cpy.hpp +0 -0
  2151. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/cumsum.cpp +0 -0
  2152. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/cumsum.hpp +0 -0
  2153. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/dequantize.hpp +0 -0
  2154. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/diag.cpp +0 -0
  2155. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/diag.hpp +0 -0
  2156. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/dmmv.cpp +0 -0
  2157. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/dmmv.hpp +0 -0
  2158. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/dpct/helper.hpp +0 -0
  2159. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/element_wise.cpp +0 -0
  2160. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/element_wise.hpp +0 -0
  2161. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/fattn-buffers.cpp +0 -0
  2162. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/fattn-buffers.hpp +0 -0
  2163. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/fattn-common.hpp +0 -0
  2164. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/fattn-tile.cpp +0 -0
  2165. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/fattn-tile.hpp +0 -0
  2166. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/fattn-vec.hpp +0 -0
  2167. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/fattn.cpp +0 -0
  2168. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/fattn.hpp +0 -0
  2169. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/fill.cpp +0 -0
  2170. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/fill.hpp +0 -0
  2171. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/gated_delta_net.cpp +0 -0
  2172. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/gated_delta_net.hpp +0 -0
  2173. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/gemm.hpp +0 -0
  2174. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/getrows.cpp +0 -0
  2175. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/getrows.hpp +0 -0
  2176. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/ggml-sycl.cpp +0 -0
  2177. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/gla.cpp +0 -0
  2178. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/gla.hpp +0 -0
  2179. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/im2col.cpp +0 -0
  2180. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/im2col.hpp +0 -0
  2181. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/mmq.cpp +0 -0
  2182. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/mmq.hpp +0 -0
  2183. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/mmvq.cpp +0 -0
  2184. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/mmvq.hpp +0 -0
  2185. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/norm.cpp +0 -0
  2186. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/norm.hpp +0 -0
  2187. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/outprod.cpp +0 -0
  2188. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/outprod.hpp +0 -0
  2189. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/pad.cpp +0 -0
  2190. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/pad.hpp +0 -0
  2191. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/pad_reflect_1d.cpp +0 -0
  2192. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/pad_reflect_1d.hpp +0 -0
  2193. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/pool.cpp +0 -0
  2194. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/pool.hpp +0 -0
  2195. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/presets.hpp +0 -0
  2196. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/quantize.hpp +0 -0
  2197. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/quants.hpp +0 -0
  2198. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/repeat_back.cpp +0 -0
  2199. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/repeat_back.hpp +0 -0
  2200. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/roll.cpp +0 -0
  2201. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/roll.hpp +0 -0
  2202. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/rope.cpp +0 -0
  2203. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/rope.hpp +0 -0
  2204. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/set.cpp +0 -0
  2205. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/set.hpp +0 -0
  2206. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/set_rows.cpp +0 -0
  2207. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/set_rows.hpp +0 -0
  2208. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/softmax.cpp +0 -0
  2209. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/softmax.hpp +0 -0
  2210. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/solve_tri.cpp +0 -0
  2211. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/solve_tri.hpp +0 -0
  2212. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/ssm_conv.cpp +0 -0
  2213. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/ssm_conv.hpp +0 -0
  2214. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/ssm_scan.cpp +0 -0
  2215. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/ssm_scan.hpp +0 -0
  2216. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/sycl_hw.cpp +0 -0
  2217. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/sycl_hw.hpp +0 -0
  2218. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq112-dv112.cpp +0 -0
  2219. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq128-dv128.cpp +0 -0
  2220. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq256-dv256.cpp +0 -0
  2221. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq40-dv40.cpp +0 -0
  2222. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq512-dv512.cpp +0 -0
  2223. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq576-dv512.cpp +0 -0
  2224. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq64-dv64.cpp +0 -0
  2225. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq72-dv72.cpp +0 -0
  2226. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq80-dv80.cpp +0 -0
  2227. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq96-dv96.cpp +0 -0
  2228. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-f16.cpp +0 -0
  2229. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q4_0.cpp +0 -0
  2230. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q4_1.cpp +0 -0
  2231. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q5_0.cpp +0 -0
  2232. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q5_1.cpp +0 -0
  2233. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q8_0.cpp +0 -0
  2234. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-f16.cpp +0 -0
  2235. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q4_0.cpp +0 -0
  2236. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q4_1.cpp +0 -0
  2237. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q5_0.cpp +0 -0
  2238. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q5_1.cpp +0 -0
  2239. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q8_0.cpp +0 -0
  2240. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-f16.cpp +0 -0
  2241. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q4_0.cpp +0 -0
  2242. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q4_1.cpp +0 -0
  2243. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q5_0.cpp +0 -0
  2244. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q5_1.cpp +0 -0
  2245. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q8_0.cpp +0 -0
  2246. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-f16.cpp +0 -0
  2247. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q4_0.cpp +0 -0
  2248. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q4_1.cpp +0 -0
  2249. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q5_0.cpp +0 -0
  2250. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q5_1.cpp +0 -0
  2251. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q8_0.cpp +0 -0
  2252. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-f16.cpp +0 -0
  2253. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q4_0.cpp +0 -0
  2254. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q4_1.cpp +0 -0
  2255. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q5_0.cpp +0 -0
  2256. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q5_1.cpp +0 -0
  2257. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q8_0.cpp +0 -0
  2258. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-f16.cpp +0 -0
  2259. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q4_0.cpp +0 -0
  2260. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q4_1.cpp +0 -0
  2261. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q5_0.cpp +0 -0
  2262. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q5_1.cpp +0 -0
  2263. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q8_0.cpp +0 -0
  2264. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/tsembd.cpp +0 -0
  2265. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/tsembd.hpp +0 -0
  2266. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/type.hpp +0 -0
  2267. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/upscale.cpp +0 -0
  2268. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/upscale.hpp +0 -0
  2269. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/vecdotq.hpp +0 -0
  2270. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/wkv.cpp +0 -0
  2271. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-sycl/wkv.hpp +0 -0
  2272. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-threading.cpp +0 -0
  2273. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-threading.h +0 -0
  2274. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/CMakeLists.txt +0 -0
  2275. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/apir_cs_ggml-rpc-front.cpp +0 -0
  2276. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/backend/CMakeLists.txt +0 -0
  2277. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/backend/apir_cs_ggml-rpc-back.cpp +0 -0
  2278. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/backend/backend-convert.h +0 -0
  2279. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/backend/backend-dispatched-backend.cpp +0 -0
  2280. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/backend/backend-dispatched-buffer-type.cpp +0 -0
  2281. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/backend/backend-dispatched-buffer.cpp +0 -0
  2282. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/backend/backend-dispatched-device.cpp +0 -0
  2283. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/backend/backend-dispatched.cpp +0 -0
  2284. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/backend/backend-dispatched.gen.h +0 -0
  2285. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/backend/backend-dispatched.h +0 -0
  2286. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/backend/backend-virgl-apir.h +0 -0
  2287. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/backend/backend.cpp +0 -0
  2288. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/backend/shared/api_remoting.h +0 -0
  2289. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/backend/shared/apir_backend.gen.h +0 -0
  2290. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/backend/shared/apir_backend.h +0 -0
  2291. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/backend/shared/apir_cs.h +0 -0
  2292. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/backend/shared/apir_cs_ggml.h +0 -0
  2293. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/backend/shared/apir_cs_rpc.h +0 -0
  2294. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/ggml-backend-buffer-type.cpp +0 -0
  2295. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/ggml-backend-buffer.cpp +0 -0
  2296. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/ggml-backend-device.cpp +0 -0
  2297. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/ggml-backend-reg.cpp +0 -0
  2298. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/ggml-backend.cpp +0 -0
  2299. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/ggml-remoting.h +0 -0
  2300. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/ggmlremoting_functions.yaml +0 -0
  2301. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/include/apir_hw.h +0 -0
  2302. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/regenerate_remoting.py +0 -0
  2303. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/virtgpu-apir.h +0 -0
  2304. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/virtgpu-forward-backend.cpp +0 -0
  2305. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/virtgpu-forward-buffer-type.cpp +0 -0
  2306. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/virtgpu-forward-buffer.cpp +0 -0
  2307. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/virtgpu-forward-device.cpp +0 -0
  2308. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/virtgpu-forward-impl.h +0 -0
  2309. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/virtgpu-forward.gen.h +0 -0
  2310. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/virtgpu-shm.cpp +0 -0
  2311. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/virtgpu-shm.h +0 -0
  2312. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/virtgpu-utils.cpp +0 -0
  2313. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/virtgpu-utils.h +0 -0
  2314. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/virtgpu.cpp +0 -0
  2315. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-virtgpu/virtgpu.h +0 -0
  2316. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/CMakeLists.txt +0 -0
  2317. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/cmake/host-toolchain.cmake.in +0 -0
  2318. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/ggml-vulkan.cpp +0 -0
  2319. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/CMakeLists.txt +0 -0
  2320. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/acc.comp +0 -0
  2321. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/add.comp +0 -0
  2322. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/add1.comp +0 -0
  2323. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/add_id.comp +0 -0
  2324. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/arange.comp +0 -0
  2325. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/argmax.comp +0 -0
  2326. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/argsort.comp +0 -0
  2327. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/argsort_large.comp +0 -0
  2328. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/clamp.comp +0 -0
  2329. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/col2im_1d.comp +0 -0
  2330. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/concat.comp +0 -0
  2331. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/contig_copy.comp +0 -0
  2332. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/conv2d_dw.comp +0 -0
  2333. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/conv2d_mm.comp +0 -0
  2334. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/conv_transpose_1d.comp +0 -0
  2335. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/copy.comp +0 -0
  2336. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/copy_from_quant.comp +0 -0
  2337. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/copy_to_quant.comp +0 -0
  2338. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/copy_transpose.comp +0 -0
  2339. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/cos.comp +0 -0
  2340. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/count_equal.comp +0 -0
  2341. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/count_experts.comp +0 -0
  2342. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/cumsum.comp +0 -0
  2343. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/cumsum_multipass1.comp +0 -0
  2344. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/cumsum_multipass2.comp +0 -0
  2345. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_f32.comp +0 -0
  2346. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_funcs.glsl +0 -0
  2347. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_funcs_cm2.glsl +0 -0
  2348. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_head.glsl +0 -0
  2349. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq1_m.comp +0 -0
  2350. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq1_s.comp +0 -0
  2351. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq2_s.comp +0 -0
  2352. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq2_xs.comp +0 -0
  2353. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq2_xxs.comp +0 -0
  2354. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq3_s.comp +0 -0
  2355. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq3_xxs.comp +0 -0
  2356. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq4_nl.comp +0 -0
  2357. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq4_xs.comp +0 -0
  2358. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_mxfp4.comp +0 -0
  2359. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_nvfp4.comp +0 -0
  2360. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q1_0.comp +0 -0
  2361. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q2_k.comp +0 -0
  2362. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q3_k.comp +0 -0
  2363. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q4_0.comp +0 -0
  2364. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q4_1.comp +0 -0
  2365. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q4_k.comp +0 -0
  2366. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q5_0.comp +0 -0
  2367. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q5_1.comp +0 -0
  2368. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q5_k.comp +0 -0
  2369. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q6_k.comp +0 -0
  2370. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q8_0.comp +0 -0
  2371. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/diag.comp +0 -0
  2372. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/diag_mask_inf.comp +0 -0
  2373. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/div.comp +0 -0
  2374. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/dot_product_funcs.glsl +0 -0
  2375. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/feature-tests/bfloat16.comp +0 -0
  2376. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/feature-tests/coopmat.comp +0 -0
  2377. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/feature-tests/coopmat2.comp +0 -0
  2378. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/feature-tests/coopmat2_decode_vector.comp +0 -0
  2379. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/feature-tests/integer_dot.comp +0 -0
  2380. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/fill.comp +0 -0
  2381. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn.comp +0 -0
  2382. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_base.glsl +0 -0
  2383. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_cm1.comp +0 -0
  2384. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_cm2.comp +0 -0
  2385. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_dequant.glsl +0 -0
  2386. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_mask_opt.comp +0 -0
  2387. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_mmq_funcs.glsl +0 -0
  2388. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_split_k_reduce.comp +0 -0
  2389. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/fwht.comp +0 -0
  2390. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/gated_delta_net.comp +0 -0
  2391. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/geglu.comp +0 -0
  2392. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/geglu_erf.comp +0 -0
  2393. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/geglu_quick.comp +0 -0
  2394. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/generic_binary_head.glsl +0 -0
  2395. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/generic_head.glsl +0 -0
  2396. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/generic_unary_head.glsl +0 -0
  2397. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/get_rows.comp +0 -0
  2398. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/get_rows_quant.comp +0 -0
  2399. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/glu_head.glsl +0 -0
  2400. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/glu_main.glsl +0 -0
  2401. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/group_norm.comp +0 -0
  2402. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/im2col.comp +0 -0
  2403. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/im2col_3d.comp +0 -0
  2404. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/l2_norm.comp +0 -0
  2405. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/leaky_relu.comp +0 -0
  2406. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/log.comp +0 -0
  2407. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul.comp +0 -0
  2408. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_split_k_reduce.comp +0 -0
  2409. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec.comp +0 -0
  2410. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_base.glsl +0 -0
  2411. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iface.glsl +0 -0
  2412. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq1_m.comp +0 -0
  2413. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq1_s.comp +0 -0
  2414. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq2_s.comp +0 -0
  2415. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq2_xs.comp +0 -0
  2416. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq2_xxs.comp +0 -0
  2417. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq3_s.comp +0 -0
  2418. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq3_xxs.comp +0 -0
  2419. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_nc.comp +0 -0
  2420. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_p021.comp +0 -0
  2421. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q2_k.comp +0 -0
  2422. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q3_k.comp +0 -0
  2423. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q4_k.comp +0 -0
  2424. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q5_k.comp +0 -0
  2425. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q6_k.comp +0 -0
  2426. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vecq.comp +0 -0
  2427. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vecq_funcs.glsl +0 -0
  2428. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mm.comp +0 -0
  2429. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mm_cm2.comp +0 -0
  2430. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mm_funcs.glsl +0 -0
  2431. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mm_id_funcs.glsl +0 -0
  2432. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq.comp +0 -0
  2433. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq_funcs.glsl +0 -0
  2434. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq_shmem_types.glsl +0 -0
  2435. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/multi_add.comp +0 -0
  2436. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/norm.comp +0 -0
  2437. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/opt_step_adamw.comp +0 -0
  2438. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/opt_step_sgd.comp +0 -0
  2439. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/pad.comp +0 -0
  2440. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/pool2d.comp +0 -0
  2441. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/quantize_q8_1.comp +0 -0
  2442. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/reglu.comp +0 -0
  2443. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/repeat.comp +0 -0
  2444. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/repeat_back.comp +0 -0
  2445. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/rms_norm.comp +0 -0
  2446. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/rms_norm_back.comp +0 -0
  2447. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/rms_norm_partials.comp +0 -0
  2448. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/roll.comp +0 -0
  2449. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/rope_funcs.glsl +0 -0
  2450. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/rope_head.glsl +0 -0
  2451. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/rope_multi.comp +0 -0
  2452. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/rope_neox.comp +0 -0
  2453. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/rope_norm.comp +0 -0
  2454. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/rope_params.glsl +0 -0
  2455. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/rope_vision.comp +0 -0
  2456. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/scale.comp +0 -0
  2457. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/silu_back.comp +0 -0
  2458. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/sin.comp +0 -0
  2459. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/snake.comp +0 -0
  2460. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/soft_max.comp +0 -0
  2461. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/soft_max_back.comp +0 -0
  2462. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/soft_max_large1.comp +0 -0
  2463. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/soft_max_large2.comp +0 -0
  2464. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/soft_max_large3.comp +0 -0
  2465. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/soft_max_large_common.glsl +0 -0
  2466. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/solve_tri.comp +0 -0
  2467. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/sqrt.comp +0 -0
  2468. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/square.comp +0 -0
  2469. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/ssm_conv.comp +0 -0
  2470. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/ssm_scan.comp +0 -0
  2471. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/sub.comp +0 -0
  2472. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/sum_rows.comp +0 -0
  2473. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/sum_rows.glsl +0 -0
  2474. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/swiglu.comp +0 -0
  2475. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/swiglu_oai.comp +0 -0
  2476. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/timestep_embedding.comp +0 -0
  2477. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/topk_argsort.comp +0 -0
  2478. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/topk_moe.comp +0 -0
  2479. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/topk_nary_search.comp +0 -0
  2480. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/tri.comp +0 -0
  2481. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/types.glsl +0 -0
  2482. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/unary.comp +0 -0
  2483. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/upscale.comp +0 -0
  2484. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/utils.glsl +0 -0
  2485. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/vulkan-shaders-gen.cpp +0 -0
  2486. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/wkv6.comp +0 -0
  2487. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-vulkan/vulkan-shaders/wkv7.comp +0 -0
  2488. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/CMakeLists.txt +0 -0
  2489. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/ggml-webgpu-shader-lib.hpp +0 -0
  2490. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/ggml-webgpu.cpp +0 -0
  2491. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/pre_wgsl.hpp +0 -0
  2492. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/add_id.wgsl +0 -0
  2493. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/argmax.wgsl +0 -0
  2494. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/argsort.wgsl +0 -0
  2495. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/argsort_merge.wgsl +0 -0
  2496. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/binary.wgsl +0 -0
  2497. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/common_decls.tmpl +0 -0
  2498. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/concat.wgsl +0 -0
  2499. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/conv2d.wgsl +0 -0
  2500. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/cpy.wgsl +0 -0
  2501. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/cumsum.wgsl +0 -0
  2502. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/embed_wgsl.py +0 -0
  2503. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/flash_attn.wgsl +0 -0
  2504. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/flash_attn_quant_staging.tmpl +0 -0
  2505. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/flash_attn_tile.wgsl +0 -0
  2506. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/flash_attn_vec_blk.wgsl +0 -0
  2507. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/flash_attn_vec_reduce.wgsl +0 -0
  2508. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/flash_attn_vec_split.wgsl +0 -0
  2509. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/gated_delta_net.wgsl +0 -0
  2510. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/get_rows.wgsl +0 -0
  2511. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/glu.wgsl +0 -0
  2512. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/im2col.wgsl +0 -0
  2513. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/memset.wgsl +0 -0
  2514. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_decls.tmpl +0 -0
  2515. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_id.wgsl +0 -0
  2516. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_id_gather.wgsl +0 -0
  2517. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_id_vec.wgsl +0 -0
  2518. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_reg_tile.wgsl +0 -0
  2519. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_subgroup_matrix.wgsl +0 -0
  2520. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_vec.wgsl +0 -0
  2521. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_vec_acc.tmpl +0 -0
  2522. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_vec_q_acc.tmpl +0 -0
  2523. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/pad.wgsl +0 -0
  2524. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/quant_inner_loops.tmpl +0 -0
  2525. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/quantize_q8.wgsl +0 -0
  2526. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/repeat.wgsl +0 -0
  2527. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/rms_norm_mul.wgsl +0 -0
  2528. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/rope.wgsl +0 -0
  2529. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/row_norm.wgsl +0 -0
  2530. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/scale.wgsl +0 -0
  2531. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/set.wgsl +0 -0
  2532. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/set_rows.wgsl +0 -0
  2533. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/set_rows_quant.wgsl +0 -0
  2534. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/soft_max.wgsl +0 -0
  2535. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/solve_tri.wgsl +0 -0
  2536. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/ssm_conv.wgsl +0 -0
  2537. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/ssm_scan.wgsl +0 -0
  2538. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/sum_rows.wgsl +0 -0
  2539. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/unary.wgsl +0 -0
  2540. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-webgpu/wgsl-shaders/upscale.wgsl +0 -0
  2541. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-zdnn/.gitignore +0 -0
  2542. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-zdnn/CMakeLists.txt +0 -0
  2543. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-zdnn/common.hpp +0 -0
  2544. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-zdnn/ggml-zdnn.cpp +0 -0
  2545. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-zdnn/mmf.cpp +0 -0
  2546. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-zdnn/mmf.hpp +0 -0
  2547. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-zdnn/utils.cpp +0 -0
  2548. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-zdnn/utils.hpp +0 -0
  2549. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-zendnn/CMakeLists.txt +0 -0
  2550. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml-zendnn/ggml-zendnn.cpp +0 -0
  2551. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml.c +0 -0
  2552. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/ggml.cpp +0 -0
  2553. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/src/gguf.cpp +0 -0
  2554. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/tests/CMakeLists.txt +0 -0
  2555. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/tests/test-arange.cpp +0 -0
  2556. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/tests/test-backend-ops.cpp +0 -0
  2557. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/tests/test-cont.c +0 -0
  2558. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/tests/test-conv-transpose-1d.cpp +0 -0
  2559. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/tests/test-conv-transpose.c +0 -0
  2560. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/tests/test-conv1d-dw-c1.cpp +0 -0
  2561. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/tests/test-conv1d-dw-c2.cpp +0 -0
  2562. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/tests/test-conv1d.cpp +0 -0
  2563. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/tests/test-conv2d-dw.cpp +0 -0
  2564. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/tests/test-conv2d.cpp +0 -0
  2565. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/tests/test-customop.c +0 -0
  2566. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/tests/test-dup.c +0 -0
  2567. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/tests/test-interpolate.cpp +0 -0
  2568. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/tests/test-opt.cpp +0 -0
  2569. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/tests/test-pad-reflect-1d.cpp +0 -0
  2570. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/tests/test-pool.c +0 -0
  2571. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/tests/test-quantize-fns.cpp +0 -0
  2572. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/tests/test-quantize-perf.cpp +0 -0
  2573. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/tests/test-rel-pos.c +0 -0
  2574. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/tests/test-roll.cpp +0 -0
  2575. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/ggml/tests/test-timestep_embedding.cpp +0 -0
  2576. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/include/transcribe/moonshine_streaming.h +0 -0
  2577. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/include/transcribe/parakeet.h +0 -0
  2578. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/include/transcribe/voxtral_realtime.h +0 -0
  2579. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/include/transcribe/whisper.h +0 -0
  2580. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/pyproject.toml +0 -0
  2581. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/samples/jfk.wav +0 -0
  2582. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/audit_gguf_metadata.py +0 -0
  2583. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/batch_parity.py +0 -0
  2584. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/bench/compare.py +0 -0
  2585. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/build_canary_qwen_oracle.py +0 -0
  2586. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/build_gigaam_oracle.py +0 -0
  2587. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/build_medasr_oracle.py +0 -0
  2588. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/ci/build_wheel_index.py +0 -0
  2589. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/ci/build_xcframework.sh +0 -0
  2590. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/ci/clang-format.sh +0 -0
  2591. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/ci/co_import_smoke.py +0 -0
  2592. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/ci/extract_native_bundle.py +0 -0
  2593. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/ci/link_smoke.py +0 -0
  2594. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/ci/manylinux-vulkan-toolchain.sh +0 -0
  2595. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/ci/modal_cuda_build.py +0 -0
  2596. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/ci/package_xcframework.sh +0 -0
  2597. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/ci/rust_package_audit.py +0 -0
  2598. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/ci/rust_packed_smoke.py +0 -0
  2599. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/ci/swift_abihash_check.py +0 -0
  2600. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/ci/ts_packed_smoke.mjs +0 -0
  2601. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/ci/vulkan_degradation_check.py +0 -0
  2602. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/compare_tensors.py +0 -0
  2603. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/convert-canary-qwen.py +0 -0
  2604. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/convert-canary.py +0 -0
  2605. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/convert-cohere.py +0 -0
  2606. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/convert-funasr_nano.py +0 -0
  2607. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/convert-gigaam.py +0 -0
  2608. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/convert-granite.py +0 -0
  2609. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/convert-granite_nar.py +0 -0
  2610. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/convert-medasr.py +0 -0
  2611. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/convert-moonshine.py +0 -0
  2612. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/convert-moonshine_streaming.py +0 -0
  2613. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/convert-qwen3_asr.py +0 -0
  2614. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/convert-sensevoice.py +0 -0
  2615. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/convert-voxtral.py +0 -0
  2616. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/convert-voxtral_realtime.py +0 -0
  2617. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/convert-whisper.py +0 -0
  2618. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/dump_reference_canary_nemo.py +0 -0
  2619. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/dump_reference_canary_qwen_nemo.py +0 -0
  2620. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/dump_reference_cohere_transformers.py +0 -0
  2621. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/dump_reference_funasr_nano_funasr.py +0 -0
  2622. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/dump_reference_gigaam_author.py +0 -0
  2623. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/dump_reference_granite_nar_transformers.py +0 -0
  2624. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/dump_reference_granite_transformers.py +0 -0
  2625. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/dump_reference_medasr_transformers.py +0 -0
  2626. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/dump_reference_moonshine_streaming_transformers.py +0 -0
  2627. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/dump_reference_moonshine_transformers.py +0 -0
  2628. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/dump_reference_parakeet_nemo.py +0 -0
  2629. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/dump_reference_qwen3_asr_author.py +0 -0
  2630. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/dump_reference_sensevoice_funasr.py +0 -0
  2631. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/dump_reference_voxtral_realtime_transformers.py +0 -0
  2632. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/dump_reference_voxtral_transformers.py +0 -0
  2633. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/dump_reference_whisper_transformers.py +0 -0
  2634. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/canary/pyproject.toml +0 -0
  2635. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/canary/uv.lock +0 -0
  2636. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/canary_qwen/pyproject.toml +0 -0
  2637. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/canary_qwen/uv.lock +0 -0
  2638. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/cohere/pyproject.toml +0 -0
  2639. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/cohere/uv.lock +0 -0
  2640. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/funasr_nano/pyproject.toml +0 -0
  2641. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/funasr_nano/uv.lock +0 -0
  2642. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/gigaam/pyproject.toml +0 -0
  2643. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/gigaam/uv.lock +0 -0
  2644. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/granite/pyproject.toml +0 -0
  2645. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/granite/uv.lock +0 -0
  2646. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/granite_nar/pyproject.toml +0 -0
  2647. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/granite_nar/uv.lock +0 -0
  2648. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/medasr/pyproject.toml +0 -0
  2649. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/medasr/uv.lock +0 -0
  2650. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/moonshine/pyproject.toml +0 -0
  2651. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/moonshine/uv.lock +0 -0
  2652. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/moonshine_streaming/pyproject.toml +0 -0
  2653. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/moonshine_streaming/uv.lock +0 -0
  2654. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/parakeet/pyproject.toml +0 -0
  2655. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/parakeet/uv.lock +0 -0
  2656. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/qwen3_asr/pyproject.toml +0 -0
  2657. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/qwen3_asr/uv.lock +0 -0
  2658. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/sensevoice/pyproject.toml +0 -0
  2659. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/sensevoice/uv.lock +0 -0
  2660. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/voxtral/pyproject.toml +0 -0
  2661. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/voxtral/uv.lock +0 -0
  2662. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/voxtral_realtime/pyproject.toml +0 -0
  2663. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/voxtral_realtime/uv.lock +0 -0
  2664. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/whisper/pyproject.toml +0 -0
  2665. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/envs/whisper/uv.lock +0 -0
  2666. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/breeze-asr-25.yaml +0 -0
  2667. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/canary-180m-flash.yaml +0 -0
  2668. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/canary-1b-flash.yaml +0 -0
  2669. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/canary-1b-v2.yaml +0 -0
  2670. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/canary-1b.yaml +0 -0
  2671. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/canary-qwen-2.5b.yaml +0 -0
  2672. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/cohere-transcribe-03-2026.yaml +0 -0
  2673. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/fun-asr-mlt-nano-2512.yaml +0 -0
  2674. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/fun-asr-nano-2512.yaml +0 -0
  2675. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/gigaam-v3-ctc.yaml +0 -0
  2676. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/gigaam-v3-e2e-ctc.yaml +0 -0
  2677. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/gigaam-v3-e2e-rnnt.yaml +0 -0
  2678. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/gigaam-v3-rnnt.yaml +0 -0
  2679. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/granite-4.0-1b-speech.yaml +0 -0
  2680. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/granite-speech-4.1-2b-nar.yaml +0 -0
  2681. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/granite-speech-4.1-2b.yaml +0 -0
  2682. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/medasr.yaml +0 -0
  2683. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/moonshine-base-ar.yaml +0 -0
  2684. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/moonshine-base-ja.yaml +0 -0
  2685. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/moonshine-base-ko.yaml +0 -0
  2686. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/moonshine-base-uk.yaml +0 -0
  2687. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/moonshine-base-vi.yaml +0 -0
  2688. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/moonshine-base-zh.yaml +0 -0
  2689. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/moonshine-base.yaml +0 -0
  2690. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/moonshine-streaming-medium.yaml +0 -0
  2691. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/moonshine-streaming-small.yaml +0 -0
  2692. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/moonshine-streaming-tiny.yaml +0 -0
  2693. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/moonshine-tiny-ar.yaml +0 -0
  2694. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/moonshine-tiny-ja.yaml +0 -0
  2695. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/moonshine-tiny-ko.yaml +0 -0
  2696. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/moonshine-tiny-uk.yaml +0 -0
  2697. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/moonshine-tiny-vi.yaml +0 -0
  2698. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/moonshine-tiny-zh.yaml +0 -0
  2699. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/moonshine-tiny.yaml +0 -0
  2700. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/nemotron-3.5-asr-streaming-0.6b.yaml +0 -0
  2701. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/nemotron-speech-streaming-en-0.6b.yaml +0 -0
  2702. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/parakeet-ctc-0.6b.yaml +0 -0
  2703. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/parakeet-ctc-1.1b.yaml +0 -0
  2704. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/parakeet-rnnt-0.6b.yaml +0 -0
  2705. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/parakeet-rnnt-1.1b.yaml +0 -0
  2706. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/parakeet-tdt-0.6b-v2.yaml +0 -0
  2707. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/parakeet-tdt-0.6b-v3.yaml +0 -0
  2708. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/parakeet-tdt-1.1b.yaml +0 -0
  2709. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/parakeet-tdt_ctc-1.1b.yaml +0 -0
  2710. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/parakeet-tdt_ctc-110m.yaml +0 -0
  2711. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/parakeet-unified-en-0.6b.yaml +0 -0
  2712. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/qwen3-asr-0.6b.yaml +0 -0
  2713. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/qwen3-asr-1.7b.yaml +0 -0
  2714. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/sensevoice-small.yaml +0 -0
  2715. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/template.md.j2 +0 -0
  2716. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/voxtral-mini-3b-2507.yaml +0 -0
  2717. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/voxtral-mini-4b-realtime-2602.yaml +0 -0
  2718. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/voxtral-small-24b-2507.yaml +0 -0
  2719. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/whisper-base.en.yaml +0 -0
  2720. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/whisper-base.yaml +0 -0
  2721. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/whisper-large-v2.yaml +0 -0
  2722. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/whisper-large-v3-turbo.yaml +0 -0
  2723. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/whisper-large-v3.yaml +0 -0
  2724. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/whisper-large.yaml +0 -0
  2725. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/whisper-medium.en.yaml +0 -0
  2726. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/whisper-medium.yaml +0 -0
  2727. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/whisper-small.en.yaml +0 -0
  2728. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/whisper-small.yaml +0 -0
  2729. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/whisper-tiny.en.yaml +0 -0
  2730. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/hf_cards/whisper-tiny.yaml +0 -0
  2731. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/lib/__init__.py +0 -0
  2732. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/lib/gguf_common.py +0 -0
  2733. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/lib/hf_source.py +0 -0
  2734. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/lib/ref_dump.py +0 -0
  2735. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/lib/test_gguf_writer.py +0 -0
  2736. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/lib/test_quantize_bulk_trailer.py +0 -0
  2737. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/preflight.py +0 -0
  2738. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/quant_accuracy.py +0 -0
  2739. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/quantize-all.py +0 -0
  2740. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/release/check_registries.py +0 -0
  2741. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/release/doctor.py +0 -0
  2742. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/sync-ggml.sh +0 -0
  2743. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/tokenizer-parity-fixture.py +0 -0
  2744. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/validate_buffered_streaming.py +0 -0
  2745. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/validate_streaming.py +0 -0
  2746. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/compare.py +0 -0
  2747. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/ingest.py +0 -0
  2748. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/remote/README.md +0 -0
  2749. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/remote/cache_paths.py +0 -0
  2750. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/remote/dataset_specs.py +0 -0
  2751. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/remote/fingerprints.py +0 -0
  2752. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/remote/gpu_config.py +0 -0
  2753. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/remote/model_specs.py +0 -0
  2754. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/remote/output_paths.py +0 -0
  2755. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/remote/reference_specs.py +0 -0
  2756. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/remote/subprocess_io.py +0 -0
  2757. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/remote/workdir.py +0 -0
  2758. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/run_reference_canary_nemo.py +0 -0
  2759. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/run_reference_canary_qwen_nemo.py +0 -0
  2760. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/run_reference_funasr_nano.py +0 -0
  2761. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/run_reference_gigaam_author.py +0 -0
  2762. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/run_reference_granite_nar_transformers.py +0 -0
  2763. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/run_reference_granite_transformers.py +0 -0
  2764. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/run_reference_medasr_transformers.py +0 -0
  2765. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/run_reference_parakeet_buffered_streaming_nemo.py +0 -0
  2766. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/run_reference_parakeet_nemo.py +0 -0
  2767. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/run_reference_parakeet_streaming_nemo.py +0 -0
  2768. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/run_reference_qwen3_asr_author.py +0 -0
  2769. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/run_reference_sensevoice.py +0 -0
  2770. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/run_reference_voxtral_realtime_transformers.py +0 -0
  2771. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/run_reference_voxtral_transformers.py +0 -0
  2772. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/setup.sh +0 -0
  2773. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/wer/subset.py +0 -0
  2774. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/scripts/whisper_long_form_parity.py +0 -0
  2775. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/canary/canary.h +0 -0
  2776. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/canary/capabilities.cpp +0 -0
  2777. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/canary/decoder.cpp +0 -0
  2778. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/canary/decoder.h +0 -0
  2779. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/canary/encoder.cpp +0 -0
  2780. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/canary/encoder.h +0 -0
  2781. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/canary/weights.cpp +0 -0
  2782. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/canary/weights.h +0 -0
  2783. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/canary_qwen/canary_qwen.h +0 -0
  2784. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/canary_qwen/capabilities.cpp +0 -0
  2785. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/canary_qwen/decoder.cpp +0 -0
  2786. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/canary_qwen/decoder.h +0 -0
  2787. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/canary_qwen/encoder.cpp +0 -0
  2788. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/canary_qwen/encoder.h +0 -0
  2789. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/canary_qwen/weights.cpp +0 -0
  2790. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/canary_qwen/weights.h +0 -0
  2791. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/cohere/capabilities.cpp +0 -0
  2792. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/cohere/cohere.h +0 -0
  2793. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/cohere/decoder.cpp +0 -0
  2794. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/cohere/decoder.h +0 -0
  2795. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/cohere/encoder.cpp +0 -0
  2796. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/cohere/encoder.h +0 -0
  2797. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/cohere/weights.cpp +0 -0
  2798. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/cohere/weights.h +0 -0
  2799. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/funasr_nano/adaptor.cpp +0 -0
  2800. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/funasr_nano/adaptor.h +0 -0
  2801. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/funasr_nano/capabilities.cpp +0 -0
  2802. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/funasr_nano/decoder.cpp +0 -0
  2803. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/funasr_nano/decoder.h +0 -0
  2804. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/funasr_nano/encoder.cpp +0 -0
  2805. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/funasr_nano/encoder.h +0 -0
  2806. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/funasr_nano/funasr_nano.h +0 -0
  2807. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/funasr_nano/weights.cpp +0 -0
  2808. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/funasr_nano/weights.h +0 -0
  2809. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/gigaam/capabilities.cpp +0 -0
  2810. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/gigaam/decoder.cpp +0 -0
  2811. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/gigaam/decoder.h +0 -0
  2812. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/gigaam/encoder.cpp +0 -0
  2813. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/gigaam/encoder.h +0 -0
  2814. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/gigaam/gigaam.h +0 -0
  2815. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/gigaam/mel.cpp +0 -0
  2816. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/gigaam/mel.h +0 -0
  2817. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/gigaam/weights.cpp +0 -0
  2818. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/gigaam/weights.h +0 -0
  2819. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/granite/capabilities.cpp +0 -0
  2820. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/granite/decoder.cpp +0 -0
  2821. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/granite/decoder.h +0 -0
  2822. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/granite/encoder.cpp +0 -0
  2823. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/granite/encoder.h +0 -0
  2824. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/granite/granite.h +0 -0
  2825. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/granite/projector.cpp +0 -0
  2826. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/granite/projector.h +0 -0
  2827. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/granite/weights.cpp +0 -0
  2828. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/granite/weights.h +0 -0
  2829. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/granite_nar/capabilities.cpp +0 -0
  2830. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/granite_nar/decoder.cpp +0 -0
  2831. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/granite_nar/decoder.h +0 -0
  2832. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/granite_nar/encoder.cpp +0 -0
  2833. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/granite_nar/encoder.h +0 -0
  2834. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/granite_nar/granite_nar.h +0 -0
  2835. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/granite_nar/projector.cpp +0 -0
  2836. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/granite_nar/projector.h +0 -0
  2837. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/granite_nar/weights.cpp +0 -0
  2838. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/granite_nar/weights.h +0 -0
  2839. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/medasr/capabilities.cpp +0 -0
  2840. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/medasr/encoder.cpp +0 -0
  2841. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/medasr/encoder.h +0 -0
  2842. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/medasr/medasr.h +0 -0
  2843. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/medasr/weights.cpp +0 -0
  2844. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/medasr/weights.h +0 -0
  2845. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/moonshine/capabilities.cpp +0 -0
  2846. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/moonshine/decoder.cpp +0 -0
  2847. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/moonshine/decoder.h +0 -0
  2848. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/moonshine/encoder.cpp +0 -0
  2849. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/moonshine/encoder.h +0 -0
  2850. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/moonshine/moonshine.h +0 -0
  2851. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/moonshine/weights.cpp +0 -0
  2852. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/moonshine/weights.h +0 -0
  2853. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/moonshine_streaming/capabilities.cpp +0 -0
  2854. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/moonshine_streaming/decoder.cpp +0 -0
  2855. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/moonshine_streaming/decoder.h +0 -0
  2856. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/moonshine_streaming/encoder.cpp +0 -0
  2857. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/moonshine_streaming/encoder.h +0 -0
  2858. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/moonshine_streaming/moonshine_streaming.h +0 -0
  2859. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/moonshine_streaming/weights.cpp +0 -0
  2860. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/moonshine_streaming/weights.h +0 -0
  2861. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/parakeet/capabilities.cpp +0 -0
  2862. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/parakeet/decoder.cpp +0 -0
  2863. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/parakeet/decoder.h +0 -0
  2864. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/qwen3_asr/capabilities.cpp +0 -0
  2865. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/qwen3_asr/decoder.cpp +0 -0
  2866. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/qwen3_asr/decoder.h +0 -0
  2867. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/qwen3_asr/encoder.cpp +0 -0
  2868. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/qwen3_asr/encoder.h +0 -0
  2869. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/qwen3_asr/qwen3_asr.h +0 -0
  2870. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/qwen3_asr/weights.cpp +0 -0
  2871. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/qwen3_asr/weights.h +0 -0
  2872. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/sensevoice/capabilities.cpp +0 -0
  2873. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/sensevoice/encoder.cpp +0 -0
  2874. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/sensevoice/encoder.h +0 -0
  2875. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/sensevoice/sensevoice.h +0 -0
  2876. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/sensevoice/weights.cpp +0 -0
  2877. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/sensevoice/weights.h +0 -0
  2878. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/voxtral/capabilities.cpp +0 -0
  2879. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/voxtral/encoder.cpp +0 -0
  2880. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/voxtral/encoder.h +0 -0
  2881. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/voxtral/voxtral.h +0 -0
  2882. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/voxtral/weights.cpp +0 -0
  2883. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/voxtral/weights.h +0 -0
  2884. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/voxtral_realtime/capabilities.cpp +0 -0
  2885. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/voxtral_realtime/decoder.cpp +0 -0
  2886. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/voxtral_realtime/decoder.h +0 -0
  2887. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/voxtral_realtime/encoder.cpp +0 -0
  2888. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/voxtral_realtime/encoder.h +0 -0
  2889. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/voxtral_realtime/voxtral_realtime.h +0 -0
  2890. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/voxtral_realtime/weights.cpp +0 -0
  2891. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/voxtral_realtime/weights.h +0 -0
  2892. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/whisper/bin_load.h +0 -0
  2893. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/whisper/capabilities.cpp +0 -0
  2894. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/whisper/decoder.cpp +0 -0
  2895. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/whisper/decoder.h +0 -0
  2896. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/whisper/encoder.cpp +0 -0
  2897. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/whisper/encoder.h +0 -0
  2898. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/whisper/public.cpp +0 -0
  2899. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/whisper/weights.cpp +0 -0
  2900. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/whisper/weights.h +0 -0
  2901. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/arch/whisper/whisper.h +0 -0
  2902. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/conformer/conformer.cpp +0 -0
  2903. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/conformer/conformer.h +0 -0
  2904. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/granite_conformer/shaw_attn.cpp +0 -0
  2905. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/granite_conformer/shaw_attn.h +0 -0
  2906. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/sanm/sanm.cpp +0 -0
  2907. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/sanm/sanm.h +0 -0
  2908. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/third_party/miniz/LICENSE +0 -0
  2909. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/third_party/miniz/UPSTREAM +0 -0
  2910. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/third_party/miniz/miniz.c +0 -0
  2911. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/third_party/miniz/miniz.h +0 -0
  2912. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-abi.h +0 -0
  2913. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-arch.h +0 -0
  2914. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-bin-loader.cpp +0 -0
  2915. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-bin-loader.h +0 -0
  2916. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-debug.cpp +0 -0
  2917. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-debug.h +0 -0
  2918. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-env.cpp +0 -0
  2919. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-env.h +0 -0
  2920. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-flash-policy.cpp +0 -0
  2921. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-flash-policy.h +0 -0
  2922. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-kaldi-fbank.cpp +0 -0
  2923. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-kaldi-fbank.h +0 -0
  2924. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-loader.cpp +0 -0
  2925. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-loader.h +0 -0
  2926. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-log.h +0 -0
  2927. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-meta.cpp +0 -0
  2928. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-meta.h +0 -0
  2929. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-path.h +0 -0
  2930. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-tokenizer.cpp +0 -0
  2931. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-tokenizer.h +0 -0
  2932. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-unicode-data.cpp +0 -0
  2933. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-unicode.cpp +0 -0
  2934. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-unicode.h +0 -0
  2935. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-weights-util.cpp +0 -0
  2936. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/src/transcribe-weights-util.h +0 -0
  2937. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/check_extension_umbrella.cmake +0 -0
  2938. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/cohere_e2e_smoke.cpp +0 -0
  2939. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/cohere_real_smoke.cpp +0 -0
  2940. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/cohere_smoke.cpp +0 -0
  2941. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/conv_pw_promote_unit.cpp +0 -0
  2942. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/decoder_smoke.cpp +0 -0
  2943. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/fixtures/make_gguf_fixtures.py +0 -0
  2944. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/fixtures/qwen3_asr_bpe_parity.inc +0 -0
  2945. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/batch/medasr.cpu.json +0 -0
  2946. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/batch/nemotron-3.5-asr-streaming-0.6b.cpu.json +0 -0
  2947. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/batch/parakeet-tdt-0.6b-v2.cpu.json +0 -0
  2948. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/batch/sensevoice-small.cpu.json +0 -0
  2949. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/batch/voxtral-mini-3b-2507.cpu.json +0 -0
  2950. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/batch/voxtral-mini-4b-realtime-2602.cpu.json +0 -0
  2951. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/canary/canary-180m-flash.manifest.json +0 -0
  2952. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/canary/canary-1b-flash.manifest.json +0 -0
  2953. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/canary/canary-1b-v2.manifest.json +0 -0
  2954. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/canary/canary-1b.manifest.json +0 -0
  2955. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/canary_qwen/canary-qwen-2.5b.manifest.json +0 -0
  2956. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/cohere/cohere-transcribe-03-2026.manifest.json +0 -0
  2957. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/funasr_nano/fun-asr-mlt-nano-2512.manifest.json +0 -0
  2958. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/funasr_nano/fun-asr-nano-2512.manifest.json +0 -0
  2959. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/gigaam/gigaam-v3-ctc.manifest.json +0 -0
  2960. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/gigaam/gigaam-v3-e2e-ctc.manifest.json +0 -0
  2961. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/gigaam/gigaam-v3-e2e-rnnt.manifest.json +0 -0
  2962. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/gigaam/gigaam-v3-rnnt.manifest.json +0 -0
  2963. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/granite/granite-4.0-1b-speech.manifest.json +0 -0
  2964. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/granite/granite-speech-4.1-2b-plus.manifest.json +0 -0
  2965. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/granite/granite-speech-4.1-2b.manifest.json +0 -0
  2966. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/granite_nar/granite-speech-4.1-2b-nar.manifest.json +0 -0
  2967. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/medasr/medasr.manifest.json +0 -0
  2968. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/moonshine/moonshine-base.manifest.json +0 -0
  2969. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/moonshine/moonshine-tiny.manifest.json +0 -0
  2970. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/moonshine_streaming/moonshine-streaming-medium.manifest.json +0 -0
  2971. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/moonshine_streaming/moonshine-streaming-small.manifest.json +0 -0
  2972. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/moonshine_streaming/moonshine-streaming-tiny.manifest.json +0 -0
  2973. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/parakeet/nemotron-3.5-asr-streaming-0.6b.manifest.json +0 -0
  2974. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/parakeet/nemotron-speech-streaming-en-0.6b.manifest.json +0 -0
  2975. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/parakeet/parakeet-ctc-0.6b.manifest.json +0 -0
  2976. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/parakeet/parakeet-ctc-1.1b.manifest.json +0 -0
  2977. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/parakeet/parakeet-rnnt-0.6b.manifest.json +0 -0
  2978. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/parakeet/parakeet-rnnt-1.1b.manifest.json +0 -0
  2979. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/parakeet/parakeet-tdt-0.6b-v2.manifest.json +0 -0
  2980. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/parakeet/parakeet-tdt-0.6b-v3.manifest.json +0 -0
  2981. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/parakeet/parakeet-tdt-1.1b.manifest.json +0 -0
  2982. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/parakeet/parakeet-tdt_ctc-1.1b.manifest.json +0 -0
  2983. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/parakeet/parakeet-tdt_ctc-110m.manifest.json +0 -0
  2984. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/parakeet/parakeet-unified-en-0.6b.manifest.json +0 -0
  2985. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/qwen3_asr/qwen3-asr-0.6b.manifest.json +0 -0
  2986. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/qwen3_asr/qwen3-asr-1.7b.manifest.json +0 -0
  2987. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/sensevoice/sensevoice-small.manifest.json +0 -0
  2988. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/voxtral/voxtral-mini-3b-2507.manifest.json +0 -0
  2989. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/voxtral/voxtral-mini-4b-realtime-2602.manifest.json +0 -0
  2990. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/voxtral/voxtral-small-24b-2507.manifest.json +0 -0
  2991. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/voxtral_realtime/voxtral-mini-4b-realtime-2602.manifest.json +0 -0
  2992. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/whisper/whisper-base.en.manifest.json +0 -0
  2993. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/whisper/whisper-base.manifest.json +0 -0
  2994. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/whisper/whisper-large-v2.manifest.json +0 -0
  2995. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/whisper/whisper-large-v3-turbo.manifest.json +0 -0
  2996. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/whisper/whisper-large-v3.manifest.json +0 -0
  2997. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/whisper/whisper-large.manifest.json +0 -0
  2998. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/whisper/whisper-medium.en.manifest.json +0 -0
  2999. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/whisper/whisper-medium.manifest.json +0 -0
  3000. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/whisper/whisper-small.en.manifest.json +0 -0
  3001. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/whisper/whisper-small.manifest.json +0 -0
  3002. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/whisper/whisper-tiny.en.manifest.json +0 -0
  3003. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/golden/whisper/whisper-tiny.manifest.json +0 -0
  3004. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/lint_teardown.cmake +0 -0
  3005. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/loader_smoke.cpp +0 -0
  3006. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/log_unit.cpp +0 -0
  3007. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/mel_unit.cpp +0 -0
  3008. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/moonshine_streaming_batch_truncation.cpp +0 -0
  3009. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/moonshine_streaming_stream_parity.cpp +0 -0
  3010. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/parakeet_chunked_limited_with_rc_mask_unit.cpp +0 -0
  3011. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/parakeet_real_smoke.cpp +0 -0
  3012. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/parakeet_smoke.cpp +0 -0
  3013. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/parakeet_stream_ext_reject_unit.cpp +0 -0
  3014. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/qwen3_asr_batch_truncation.cpp +0 -0
  3015. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/qwen3_asr_bpe_parity.cpp +0 -0
  3016. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/qwen3_asr_e2e_smoke.cpp +0 -0
  3017. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/qwen3_asr_real_smoke_0_6b.cpp +0 -0
  3018. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/qwen3_asr_real_smoke_1_7b.cpp +0 -0
  3019. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/qwen3_asr_smoke.cpp +0 -0
  3020. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/stream_capability_unit.cpp +0 -0
  3021. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/stream_committed_pointer_stability.cpp +0 -0
  3022. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/teardown_safety_unit.cpp +0 -0
  3023. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/thread_default_unit.cpp +0 -0
  3024. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/threadpool_oversubscription.c +0 -0
  3025. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tokenizer_decode_only_unit.cpp +0 -0
  3026. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tokenizer_smoke.cpp +0 -0
  3027. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/canary.json +0 -0
  3028. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/canary_qwen.json +0 -0
  3029. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/cohere.json +0 -0
  3030. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/funasr_nano.json +0 -0
  3031. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/gigaam.json +0 -0
  3032. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/granite.json +0 -0
  3033. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/granite_nar.json +0 -0
  3034. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/medasr.json +0 -0
  3035. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/moonshine.json +0 -0
  3036. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/moonshine_streaming.json +0 -0
  3037. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/nemotron-3.5-asr-streaming-0.6b.json +0 -0
  3038. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/nemotron-speech-streaming-en-0.6b.json +0 -0
  3039. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/nemotron-speech-streaming-en-0.6b.streaming.json +0 -0
  3040. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/parakeet.json +0 -0
  3041. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/qwen3_asr-1.7b.json +0 -0
  3042. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/qwen3_asr.json +0 -0
  3043. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/sensevoice.json +0 -0
  3044. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/voxtral.json +0 -0
  3045. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/voxtral_realtime.json +0 -0
  3046. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/whisper-base.en.json +0 -0
  3047. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/whisper-base.json +0 -0
  3048. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/whisper-large-v2.json +0 -0
  3049. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/whisper-large-v3-turbo.json +0 -0
  3050. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/whisper-large-v3.json +0 -0
  3051. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/whisper-large.json +0 -0
  3052. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/whisper-medium.en.json +0 -0
  3053. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/whisper-medium.json +0 -0
  3054. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/whisper-small.en.json +0 -0
  3055. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/whisper-small.json +0 -0
  3056. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/whisper-tiny.en.json +0 -0
  3057. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/tolerances/whisper-tiny.json +0 -0
  3058. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/utf8_path_unit.cpp +0 -0
  3059. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/voxtral_realtime_real_smoke.cpp +0 -0
  3060. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/wav_loader_smoke.cpp +0 -0
  3061. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/whisper_bin_e2e_smoke.cpp +0 -0
  3062. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/whisper_bin_tokenize_parity.cpp +0 -0
  3063. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/whisper_e2e_smoke.cpp +0 -0
  3064. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tests/whisper_tokenize_parity.cpp +0 -0
  3065. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tools/CMakeLists.txt +0 -0
  3066. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tools/transcribe-bench/CMakeLists.txt +0 -0
  3067. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tools/transcribe-quantize/CMakeLists.txt +0 -0
  3068. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tools/transcribe-quantize/README.md +0 -0
  3069. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tools/transcribe-quantize/main.cpp +0 -0
  3070. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tools/transcribe-quantize/policy.cpp +0 -0
  3071. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/tools/transcribe-quantize/policy.h +0 -0
  3072. {transcribe_cpp_native-0.1.2 → transcribe_cpp_native-0.2.0}/uv.lock +0 -0
@@ -0,0 +1,90 @@
1
+ # Build trees
2
+ /build/
3
+ /build-*/
4
+ /cmake-build-*/
5
+
6
+ # Rust workspace build output (Cargo.lock IS committed — workspace has a binary)
7
+ /target/
8
+
9
+ # Python distribution output (provider wheels/sdists at the repo root;
10
+ # bindings/python/dist for the pure API package; wheelhouse* from local
11
+ # cibuildwheel / wheel-repair runs)
12
+ /dist/
13
+ /bindings/python/dist/
14
+ /wheelhouse*/
15
+
16
+ # Canary GGUFs fetched by CI / local smoke runs
17
+ /canary/
18
+
19
+ # Scratch space for benchmarks, staging, etc.
20
+ /tmp/
21
+
22
+ # Editor / OS
23
+ .DS_Store
24
+ *.swp
25
+ *.swo
26
+ .idea/
27
+ .vscode/
28
+ *.iml
29
+
30
+ # Claude Code — local state ignored, but project-versioned skills are carved back in.
31
+ # Use .claude/* (not .claude/) so git can descend and honor the negations below.
32
+ .claude/*
33
+ !.claude/skills/
34
+
35
+ # Python (for converters under scripts/)
36
+ __pycache__/
37
+ *.py[cod]
38
+ .venv/
39
+ .uv/
40
+
41
+ # Generated artifacts that should not be committed
42
+ *.gguf
43
+ *.nemo
44
+ *.safetensors
45
+ *.onnx
46
+ *.onnx.data
47
+
48
+ # Local model artifacts (converter output, etc).
49
+ /models/
50
+
51
+ # Local-only fetched golden assets (kept out of git - they
52
+ # should be fetchable, not assumed present in every contributor environment)
53
+ /tests/golden/**/*.f32
54
+ /tests/golden/**/*.bin
55
+ /tests/golden/**/*.npy
56
+
57
+ # Symlinked references stash for editor grepping
58
+ /references/
59
+
60
+ # WER evaluation data + generated working reports.
61
+ /samples/wer/
62
+ # Diarization eval corpora (AMI audio + fetched RTTMs); regenerable via
63
+ # scripts/diar/ingest_ami.py + fetch_ami_forced_alignment.py. The committed
64
+ # oracle case lives at samples/sortformer-2spk-mix.wav (outside samples/diar/).
65
+ /samples/diar/
66
+ /reports/*
67
+
68
+ # Reviewable porting evidence (intake, porting log) is intentionally committed.
69
+ !/reports/porting/
70
+ !/reports/porting/**
71
+
72
+ # ...but per-run preflight outputs and validate report bundles are ephemeral:
73
+ # they regenerate in seconds from committed inputs (manifest, tolerance, code).
74
+ # Committing them without CI adds clutter without verification. Paste their
75
+ # stdout into the PR description instead; the reviewer re-runs to verify.
76
+ /reports/porting/*/*/preflight-gate-*.json
77
+ /reports/porting/*/*/preflight-gate-*.md
78
+ /reports/porting/*/*/[0-9]*T[0-9]*Z-*/
79
+
80
+ # Internal planning docs (not committed)
81
+ PORTING.md
82
+ RESUME.md
83
+ PERF.md
84
+ WER_TESTING.md
85
+
86
+ # IDE / language-server artifacts
87
+ .cache/
88
+
89
+ # Local working notes (plans, drafts) — never committed
90
+ /notes/
@@ -0,0 +1,460 @@
1
+ cmake_minimum_required(VERSION 3.16)
2
+
3
+ # -----------------------------------------------------------------------------
4
+ # Version (single source of truth: include/transcribe.h)
5
+ # -----------------------------------------------------------------------------
6
+ #
7
+ # The TRANSCRIBE_VERSION_MAJOR/MINOR/PATCH macros in the public header are the
8
+ # one place the library version is defined. Parse them here, before project(),
9
+ # so the CMake project version, the shared-library VERSION/SOVERSION, and the
10
+ # value transcribe_version() reports all derive from the same source and cannot
11
+ # drift. To bump the library version, edit include/transcribe.h.
12
+ file(READ "${CMAKE_CURRENT_SOURCE_DIR}/include/transcribe.h" _transcribe_header)
13
+ string(REGEX MATCH "define +TRANSCRIBE_VERSION_MAJOR +([0-9]+)" _ "${_transcribe_header}")
14
+ set(TRANSCRIBE_VERSION_MAJOR "${CMAKE_MATCH_1}")
15
+ string(REGEX MATCH "define +TRANSCRIBE_VERSION_MINOR +([0-9]+)" _ "${_transcribe_header}")
16
+ set(TRANSCRIBE_VERSION_MINOR "${CMAKE_MATCH_1}")
17
+ string(REGEX MATCH "define +TRANSCRIBE_VERSION_PATCH +([0-9]+)" _ "${_transcribe_header}")
18
+ set(TRANSCRIBE_VERSION_PATCH "${CMAKE_MATCH_1}")
19
+ if(NOT TRANSCRIBE_VERSION_MAJOR MATCHES "^[0-9]+$" OR
20
+ NOT TRANSCRIBE_VERSION_MINOR MATCHES "^[0-9]+$" OR
21
+ NOT TRANSCRIBE_VERSION_PATCH MATCHES "^[0-9]+$")
22
+ message(FATAL_ERROR
23
+ "Failed to parse TRANSCRIBE_VERSION_{MAJOR,MINOR,PATCH} from "
24
+ "include/transcribe.h")
25
+ endif()
26
+
27
+ project(transcribe
28
+ VERSION ${TRANSCRIBE_VERSION_MAJOR}.${TRANSCRIBE_VERSION_MINOR}.${TRANSCRIBE_VERSION_PATCH}
29
+ LANGUAGES C CXX)
30
+
31
+ # Short git commit for transcribe_version_commit(), captured at configure time.
32
+ # Best-effort: source tarballs and non-git trees fall back to "unknown". This is
33
+ # a configure-time snapshot (same posture as ggml's GGML_COMMIT); reconfigure to
34
+ # refresh it.
35
+ set(TRANSCRIBE_BUILD_COMMIT "unknown")
36
+ find_package(Git QUIET)
37
+ if(GIT_FOUND AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/.git")
38
+ execute_process(
39
+ COMMAND ${GIT_EXECUTABLE} -C "${CMAKE_CURRENT_SOURCE_DIR}" rev-parse --short HEAD
40
+ OUTPUT_VARIABLE _transcribe_git_sha
41
+ OUTPUT_STRIP_TRAILING_WHITESPACE
42
+ ERROR_QUIET)
43
+ if(_transcribe_git_sha)
44
+ set(TRANSCRIBE_BUILD_COMMIT "${_transcribe_git_sha}")
45
+ endif()
46
+ endif()
47
+ message(STATUS "transcribe version: ${PROJECT_VERSION} (commit ${TRANSCRIBE_BUILD_COMMIT})")
48
+
49
+ # -----------------------------------------------------------------------------
50
+ # Standards
51
+ # -----------------------------------------------------------------------------
52
+
53
+ set(CMAKE_C_STANDARD 11)
54
+ set(CMAKE_C_STANDARD_REQUIRED ON)
55
+ set(CMAKE_CXX_STANDARD 17)
56
+ set(CMAKE_CXX_STANDARD_REQUIRED ON)
57
+ set(CMAKE_CXX_EXTENSIONS OFF)
58
+
59
+ if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
60
+ set(CMAKE_BUILD_TYPE Release CACHE STRING "" FORCE)
61
+ endif()
62
+
63
+ include(GNUInstallDirs)
64
+
65
+ # Hidden symbol visibility by default per PLAN.md.
66
+ set(CMAKE_C_VISIBILITY_PRESET hidden)
67
+ set(CMAKE_CXX_VISIBILITY_PRESET hidden)
68
+ set(CMAKE_VISIBILITY_INLINES_HIDDEN ON)
69
+
70
+ # -----------------------------------------------------------------------------
71
+ # Python wheel build (scikit-build-core sets SKBUILD)
72
+ # -----------------------------------------------------------------------------
73
+ #
74
+ # The repo-root pyproject.toml builds the transcribe-cpp-native provider
75
+ # package through scikit-build-core. Force the library shape that package
76
+ # ships (shared libtranscribe, no tests/examples/tools) and default to the
77
+ # official wheel-hygiene posture: no OpenMP and no non-Apple system BLAS, so
78
+ # nothing is vendored that collides with PyTorch/NumPy/MKL in-process, and
79
+ # Metal shaders embedded so the artifact has no sidecar files. The hygiene
80
+ # defaults (not the shape) can be overridden with -D for local source builds
81
+ # that want them. CMP0077 is NEW here, so option() below respects these.
82
+ if(SKBUILD)
83
+ set(TRANSCRIBE_BUILD_SHARED ON)
84
+ set(TRANSCRIBE_BUILD_TESTS OFF)
85
+ set(TRANSCRIBE_BUILD_EXAMPLES OFF)
86
+ set(TRANSCRIBE_BUILD_TOOLS OFF)
87
+ if(NOT DEFINED CACHE{TRANSCRIBE_USE_OPENMP})
88
+ set(TRANSCRIBE_USE_OPENMP OFF)
89
+ endif()
90
+ if(NOT DEFINED CACHE{TRANSCRIBE_USE_SYSTEM_BLAS})
91
+ set(TRANSCRIBE_USE_SYSTEM_BLAS OFF)
92
+ endif()
93
+ if(NOT DEFINED CACHE{GGML_METAL_EMBED_LIBRARY})
94
+ set(GGML_METAL_EMBED_LIBRARY ON CACHE BOOL "" FORCE)
95
+ endif()
96
+ endif()
97
+
98
+ # -----------------------------------------------------------------------------
99
+ # Apple Silicon detection (drives Metal default)
100
+ # -----------------------------------------------------------------------------
101
+
102
+ set(TRANSCRIBE_IS_APPLE_SILICON OFF)
103
+ if(APPLE AND CMAKE_SYSTEM_PROCESSOR MATCHES "arm64|aarch64")
104
+ set(TRANSCRIBE_IS_APPLE_SILICON ON)
105
+ endif()
106
+
107
+ # -----------------------------------------------------------------------------
108
+ # Options
109
+ # -----------------------------------------------------------------------------
110
+
111
+ option(TRANSCRIBE_BUILD_TESTS "Build unit / smoke tests" ON)
112
+ option(TRANSCRIBE_BUILD_EXAMPLES "Build example CLI" ON)
113
+ option(TRANSCRIBE_BUILD_TOOLS "Build inspect / quantize" OFF) # post pass 2
114
+ # Numerical-parity validation hooks: reference-mel injection (TRANSCRIBE_MEL_FROM_REF)
115
+ # and per-layer tensor dumps (TRANSCRIBE_DUMP_ALL_BLOCKS / _SUB_BLOCKS). OFF for
116
+ # release so the hook code is not compiled into shipped binaries — the env-var
117
+ # reads, ref-mel loaders, and dump scaffolding all live behind this guard, so
118
+ # their names do not even appear in a release binary's strings. The validation
119
+ # pipeline (scripts/validate.py, the Modal sweep image) builds with this ON;
120
+ # validate.py hard-fails --mel-from-ref against an OFF build rather than
121
+ # silently ignoring it.
122
+ option(TRANSCRIBE_ENABLE_VALIDATION_HOOKS
123
+ "Compile in numerical-parity validation hooks" OFF)
124
+ option(TRANSCRIBE_METAL "Enable Metal backend" ${TRANSCRIBE_IS_APPLE_SILICON})
125
+ option(TRANSCRIBE_VULKAN "Enable Vulkan backend" OFF) # post-v1
126
+ option(TRANSCRIBE_CUDA "Enable CUDA backend" OFF) # opt-in; Linux + nvcc
127
+ option(TRANSCRIBE_HIP "Enable HIP/ROCm backend" OFF) # opt-in; Linux + ROCm 6.1+
128
+ option(TRANSCRIBE_SANITIZE "Enable ASan + UBSan" OFF)
129
+ option(TRANSCRIBE_LTO "Enable LTO in Release" OFF)
130
+
131
+ # Library link mode and wheel-hygiene switches.
132
+ #
133
+ # TRANSCRIBE_BUILD_SHARED OFF (default) builds a static libtranscribe + static
134
+ # ggml, so `cmake -B build` yields a self-contained transcribe-cli with no
135
+ # libtranscribe/libggml to chase at runtime — the posture every porting, test,
136
+ # and bench workflow relies on. The Python wheel/provider build sets it ON to
137
+ # produce a shared libtranscribe the FFI layer can dlopen.
138
+ #
139
+ # TRANSCRIBE_USE_OPENMP defaults OFF: we use ggml's native CPU threadpool
140
+ # everywhere (see the OpenMP CENTRAL POLICY below — OpenMP's process-global pool
141
+ # is a teardown/coexistence liability for an embeddable library, and the native
142
+ # pool is now correct on MSVC and under oversubscription). Opt in with
143
+ # -DTRANSCRIBE_USE_OPENMP=ON. TRANSCRIBE_USE_SYSTEM_BLAS stays ON for the
144
+ # Accelerate/system-BLAS host decoder; official provider wheels pass it OFF so no
145
+ # OpenBLAS/MKL runtime is vendored where it can collide with PyTorch/NumPy.
146
+ option(TRANSCRIBE_BUILD_SHARED "Build libtranscribe + ggml as shared libraries" OFF)
147
+ option(TRANSCRIBE_USE_OPENMP "Use OpenMP for ggml's CPU threadpool" OFF)
148
+ option(TRANSCRIBE_USE_SYSTEM_BLAS "Link non-Apple system BLAS for the host decoder" ON)
149
+
150
+ # Dynamic ggml backends: each backend (CPU, Vulkan, CUDA, ...) becomes a
151
+ # separate loadable module living NEXT TO libtranscribe instead of being
152
+ # compiled in. This is the provider-directory artifact shape the Python
153
+ # wheels ship on Linux/Windows: the Vulkan module is present by default and
154
+ # simply fails to load (skipped; CPU keeps working) on machines without a
155
+ # Vulkan loader/driver. The host loads the module directory once via
156
+ # transcribe_init_backends(). Requires TRANSCRIBE_BUILD_SHARED=ON.
157
+ option(TRANSCRIBE_GGML_BACKEND_DL "Build ggml backends as loadable modules" OFF)
158
+
159
+ # Conservative x86 floor: default GGML_NATIVE plus EVERY x86 SIMD tier to
160
+ # OFF so the one binary runs on baseline x86-64 without SIGILL. This is the
161
+ # single switch behind every official-wheel CPU posture (the per-flag lists
162
+ # used to be mirrored across the root pyproject lanes, the cu12 pyproject,
163
+ # and CMakePresets.json — one option, one place to drift).
164
+ #
165
+ # It is a DEFAULT, not a clamp (same posture as the SKBUILD hygiene knobs
166
+ # above): an explicit -DGGML_AVX2=ON etc. on the command line still wins, so
167
+ # a user can take the conservative floor and selectively re-enable tiers for
168
+ # their machine. With the option OFF (the default) the raw GGML_* flags are
169
+ # untouched and fully tunable, exactly as without this option.
170
+ #
171
+ # Interaction with GGML_CPU_ALL_VARIANTS=ON (the fat-CPU wheel lanes): ggml
172
+ # gates the per-flag options behind `if(NOT GGML_CPU_ALL_VARIANTS)`, so
173
+ # these are inert there and serve as the explicit floor if ALL_VARIANTS is
174
+ # ever disabled. Inert (harmless) on non-x86 targets: ggml's Linux-ARM tier
175
+ # list has its own flags.
176
+ option(TRANSCRIBE_X86_CONSERVATIVE
177
+ "Default GGML_NATIVE and every x86 SIMD tier to OFF (SIGILL-safe baseline; explicit -DGGML_* still wins)" OFF)
178
+
179
+ # Install rules for non-Python consumers: headers + the ABI digest +
180
+ # libtranscribe + the transcribe-link.json link manifest (ggml's own install
181
+ # rules supply the ggml libs/headers). This is what the Rust -sys crate's
182
+ # build.rs consumes (`cmake --install` into a staging prefix, then link per
183
+ # the manifest) — see cmake/transcribe-install.cmake. Default ON for
184
+ # top-level builds; OFF as a subproject, and never active under SKBUILD
185
+ # (the wheel ships its own component-filtered install rules instead).
186
+ if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR AND NOT SKBUILD)
187
+ set(_transcribe_install_default ON)
188
+ else()
189
+ set(_transcribe_install_default OFF)
190
+ endif()
191
+ option(TRANSCRIBE_INSTALL
192
+ "Install headers, libtranscribe, and the link manifest" ${_transcribe_install_default})
193
+
194
+ # Real-model gated tests. OFF by default because the tests need a
195
+ # converted Parakeet GGUF on disk (~2.4 GB) and CI can't ship one.
196
+ # When ON, the test reads TRANSCRIBE_PARAKEET_GGUF from the
197
+ # environment at run time. See tests/parakeet_real_smoke.cpp.
198
+ option(TRANSCRIBE_BUILD_REAL_MODEL_TESTS
199
+ "Build tests that load real (multi-GB) model files via env var" OFF)
200
+
201
+ # -----------------------------------------------------------------------------
202
+ # Warnings (no -Werror in v1 per PLAN.md)
203
+ # -----------------------------------------------------------------------------
204
+ #
205
+ # transcribe_apply_warnings(target): apply our project warning flags to one
206
+ # target. Used per-target so we don't pollute the vendored ggml subdirectory
207
+ # with -Wshadow / -Wpedantic, which fire on a lot of legitimate ggml code.
208
+
209
+ function(transcribe_apply_warnings tgt)
210
+ if(CMAKE_CXX_COMPILER_ID MATCHES "Clang|GNU")
211
+ target_compile_options(${tgt} PRIVATE
212
+ -Wall
213
+ -Wextra
214
+ -Wshadow
215
+ -Wpedantic
216
+ -Wno-unused-parameter
217
+ # The output-side TRANSCRIBE_*_INIT macros (timings,
218
+ # stream_update, capabilities, whisper_chunk_trace, ...)
219
+ # are deliberate zero-fill aggregate initializers:
220
+ # struct_size is set, every other field falls to
221
+ # initializer zero by C aggregate-init rules. The
222
+ # zero-means-absent contract is documented and load-bearing.
223
+ # -Wmissing-field-initializers would fire on every use of
224
+ # those macros; the warning's signal-to-noise on this
225
+ # codebase is too low to justify keeping it on.
226
+ -Wno-missing-field-initializers
227
+ )
228
+ endif()
229
+ endfunction()
230
+
231
+ # Sanitizers must be applied to every target in the build (including ggml)
232
+ # so the resulting binary is consistent. add_compile_options /
233
+ # add_link_options is the right scope for this.
234
+ #
235
+ # -fno-sanitize-recover=undefined makes UBSan reports fatal at runtime
236
+ # instead of merely printing them. ASan already aborts on error by
237
+ # default; UBSan does not, which would otherwise let ctest report
238
+ # success while the sanitizer printed real diagnostics.
239
+ if(TRANSCRIBE_SANITIZE)
240
+ add_compile_options(
241
+ -fsanitize=address,undefined
242
+ -fno-sanitize-recover=undefined
243
+ # ggml's `incr_ptr_aligned` (ggml/src/ggml.c) uses the
244
+ # standard "use NULL as base, walk by offsets to compute
245
+ # struct layout sizes" trick. UBSan flags this as a
246
+ # `pointer-overflow` runtime error even though it's a
247
+ # widely-used and safe-in-practice C idiom. Make this
248
+ # specific check non-fatal so the encoder run path doesn't
249
+ # abort under build-san; real bugs in our own code still
250
+ # fail loud (the rest of -fno-sanitize-recover=undefined
251
+ # is unaffected). When ggml gets patched upstream this can
252
+ # come back out.
253
+ -fsanitize-recover=pointer-overflow
254
+ -fno-omit-frame-pointer
255
+ )
256
+ add_link_options(-fsanitize=address,undefined)
257
+ endif()
258
+
259
+ # -----------------------------------------------------------------------------
260
+ # Output layout
261
+ # -----------------------------------------------------------------------------
262
+ #
263
+ # Put all binaries in build/bin/ regardless of which subdirectory built them.
264
+ # ggml's CMakeLists already does this when invoked standalone; pinning it
265
+ # at the top level keeps the same layout when ggml is added as a subdirectory.
266
+
267
+ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
268
+
269
+ # -----------------------------------------------------------------------------
270
+ # Vendored ggml
271
+ # -----------------------------------------------------------------------------
272
+ #
273
+ # ggml lives at the repo root (matching whisper.cpp / llama.cpp). The pinned
274
+ # upstream SHA is recorded in ggml/UPSTREAM. We map our TRANSCRIBE_* options
275
+ # onto ggml's GGML_* options BEFORE add_subdirectory() so ggml's option()
276
+ # calls become no-ops and our defaults win.
277
+
278
+ set(GGML_METAL ${TRANSCRIBE_METAL} CACHE BOOL "" FORCE)
279
+ set(GGML_VULKAN ${TRANSCRIBE_VULKAN} CACHE BOOL "" FORCE)
280
+ set(GGML_CUDA ${TRANSCRIBE_CUDA} CACHE BOOL "" FORCE)
281
+ set(GGML_HIP ${TRANSCRIBE_HIP} CACHE BOOL "" FORCE)
282
+ set(GGML_BLAS OFF CACHE BOOL "" FORCE)
283
+
284
+ # HIP needs position-independent code even in the default static posture.
285
+ # hipcc does not pick up the distro toolchain's default-PIE codegen the way the
286
+ # system g++ does: its objects keep absolute relocations (R_X86_64_32 against
287
+ # .rodata), and ggml only sets POSITION_INDEPENDENT_CODE when BUILD_SHARED_LIBS
288
+ # is on. Linking that static archive into the PIE executables every default-PIE
289
+ # distro produces then fails at link time. Set the directory-scope default
290
+ # before add_subdirectory(ggml) so every target — ours and ggml's — is PIC.
291
+ if(TRANSCRIBE_HIP)
292
+ set(CMAKE_POSITION_INDEPENDENT_CODE ON)
293
+ endif()
294
+
295
+ # tinyBLAS (Justine Tunney's llamafile_sgemm CPU kernels): ~29% faster encoder on
296
+ # CPU (q8_0 GEMM), numerically WER-equivalent. On by default; CPU-backend only.
297
+ set(GGML_LLAMAFILE ON CACHE BOOL "" FORCE)
298
+
299
+ # Conservative x86 floor (see the option's comment above): one switch fans
300
+ # out to GGML_NATIVE plus the full x86 SIMD tier list. Placed BEFORE
301
+ # add_subdirectory(ggml) so ggml's own option() defaults never win — but
302
+ # NOT forced: a flag the user already put in the cache (-DGGML_AVX2=ON) is
303
+ # left alone, so the floor stays selectively tunable per machine.
304
+ if(TRANSCRIBE_X86_CONSERVATIVE)
305
+ foreach(_simd_flag
306
+ GGML_NATIVE
307
+ GGML_SSE42 GGML_AVX GGML_AVX_VNNI GGML_AVX2 GGML_BMI2
308
+ GGML_FMA GGML_F16C
309
+ GGML_AVX512 GGML_AVX512_VBMI GGML_AVX512_VNNI GGML_AVX512_BF16)
310
+ if(NOT DEFINED CACHE{${_simd_flag}})
311
+ set(${_simd_flag} OFF CACHE BOOL "")
312
+ endif()
313
+ endforeach()
314
+ endif()
315
+
316
+ # OpenMP — CENTRAL POLICY.
317
+ #
318
+ # DEFAULT: OFF. We use ggml's native CPU threadpool everywhere; OpenMP is an
319
+ # opt-in (-DTRANSCRIBE_USE_OPENMP=ON), not the default. The TRANSCRIBE_USE_OPENMP
320
+ # knob simply drives ggml's GGML_OPENMP.
321
+ #
322
+ # Why native, not OpenMP — OpenMP's runtime pool is process-global and outlives
323
+ # any single compute, which is a liability for an embeddable/dlopen'd library:
324
+ # - Teardown crash: a binding (node/koffi, ctypes, ...) calls in on a worker
325
+ # thread, libgomp/vcomp spawns its pool there, and at process teardown the
326
+ # loader unmaps the runtime out from under those still-live pool threads ->
327
+ # SIGSEGV / 0xC0000005. The native pool joins its threads per graph_compute,
328
+ # so nothing outlives the call and there is nothing to unmap-race.
329
+ # - Coexistence: a vendored libgomp/libiomp can collide with numpy/torch/MKL's
330
+ # own OpenMP in one process. The native pool vendors no second runtime.
331
+ #
332
+ # This used to be a per-consumer SPLIT because ggml's native barrier deadlocked
333
+ # under MSVC (its spin `relax` was a no-op on MSVC, so a waiter starved an
334
+ # un-arrived worker under oversubscription) — OpenMP was the only working
335
+ # multi-threaded CPU path on Windows. That barrier is now fixed (ggml-cpu.c:
336
+ # YieldProcessor() relax + a bounded-spin ggml_thread_yield fallback), so the
337
+ # native pool is correct on MSVC and under oversubscription. The split is gone:
338
+ # - Rust binding: no longer needs -DGGML_OPENMP=ON on Windows; native pool.
339
+ # - Python wheels: already vendored no OpenMP; multi-threaded CPU now works on
340
+ # every platform (the old "CPU-on-Windows unsupported" limitation is lifted).
341
+ # - perf: native persistent/ephemeral pool is on par with OpenMP (it is
342
+ # llama.cpp's default). Thread count is sized affinity-aware in
343
+ # transcribe-batch-util (default_n_threads) to avoid needless oversubscription.
344
+ #
345
+ # So: honor an explicit -DGGML_OPENMP=... (opt-in); otherwise force OFF.
346
+ if(NOT TRANSCRIBE_USE_OPENMP AND NOT DEFINED CACHE{GGML_OPENMP})
347
+ set(GGML_OPENMP OFF CACHE BOOL "" FORCE)
348
+ endif()
349
+
350
+ # We don't want ggml's tests / examples leaking into our build tree. They
351
+ # default to OFF when ggml is added as a subdirectory (GGML_STANDALONE OFF),
352
+ # but pin them anyway so the contract is explicit.
353
+ set(GGML_BUILD_TESTS OFF CACHE BOOL "" FORCE)
354
+ set(GGML_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE)
355
+
356
+ # Library link mode. Default OFF (static) keeps the self-contained CLI/test/
357
+ # bench build with no libtranscribe/libggml to chase at runtime; the Python
358
+ # wheel/provider build sets TRANSCRIBE_BUILD_SHARED=ON for a shared
359
+ # libtranscribe (+ libggml) the FFI layer can dlopen. Both ggml and
360
+ # libtranscribe follow this single switch. Symbol visibility is already hidden
361
+ # by default (set above), so a shared lib exports only the TRANSCRIBE_API
362
+ # surface.
363
+ set(BUILD_SHARED_LIBS ${TRANSCRIBE_BUILD_SHARED} CACHE BOOL "" FORCE)
364
+
365
+ # Dynamic backend modules (see the option's comment above). ggml requires
366
+ # shared libs for GGML_BACKEND_DL, so gate it on TRANSCRIBE_BUILD_SHARED
367
+ # here for a clear configure-time error.
368
+ if(TRANSCRIBE_GGML_BACKEND_DL)
369
+ if(NOT TRANSCRIBE_BUILD_SHARED)
370
+ message(FATAL_ERROR
371
+ "TRANSCRIBE_GGML_BACKEND_DL requires TRANSCRIBE_BUILD_SHARED=ON "
372
+ "(backend modules are shared libraries loaded at runtime)")
373
+ endif()
374
+ set(GGML_BACKEND_DL ON CACHE BOOL "" FORCE)
375
+ # The package-local default loader resolves the directory that contains
376
+ # libtranscribe itself. Install backend modules there too, unless a caller
377
+ # explicitly chose a different provider layout and will pass it to
378
+ # transcribe_init_backends(dir).
379
+ #
380
+ # Test emptiness, not DEFINED: ggml declares GGML_BACKEND_DIR as an empty
381
+ # cache var of its own, so on any reconfigure it is already DEFINED (as "")
382
+ # and a `NOT DEFINED CACHE{...}` guard would skip our override, leaving the
383
+ # modules in ggml's default bin/ where the lib-dir loader cannot find them.
384
+ # `NOT GGML_BACKEND_DIR` treats an empty/unset value as "ours to set" while
385
+ # still respecting a non-empty caller-provided path.
386
+ if(NOT GGML_BACKEND_DIR)
387
+ # The directory that holds libtranscribe itself — which is where the
388
+ # package-local loader scans. That's bin/ on Windows (a DLL is a RUNTIME
389
+ # artifact installed to bin, so transcribe.dll lives there) and lib/
390
+ # elsewhere. Using lib/ unconditionally would strand the modules away
391
+ # from transcribe.dll on Windows, where the loader can't find them.
392
+ if(WIN32)
393
+ set(GGML_BACKEND_DIR "${CMAKE_INSTALL_BINDIR}" CACHE PATH "" FORCE)
394
+ else()
395
+ set(GGML_BACKEND_DIR "${CMAKE_INSTALL_LIBDIR}" CACHE PATH "" FORCE)
396
+ endif()
397
+ endif()
398
+ # ggml hard-errors on GGML_NATIVE + GGML_BACKEND_DL (x86): native tuning
399
+ # is incompatible with feature-scored modules. A module build is a
400
+ # distribution build, so never tune it to the build host.
401
+ set(GGML_NATIVE OFF CACHE BOOL "" FORCE)
402
+ endif()
403
+
404
+ # MSVC: use /EHs so exceptions thrown by ggml's C-ABI frames unwind to
405
+ # transcribe.cpp's public-entry guards. Apply before ggml and src are added.
406
+ if(MSVC)
407
+ string(REPLACE "/EHsc" "/EHs" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
408
+ if(NOT CMAKE_CXX_FLAGS MATCHES "/EHs")
409
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /EHs")
410
+ endif()
411
+ endif()
412
+
413
+ # Windows MAX_PATH: relocate ExternalProjects (vulkan-shaders-gen) to a flat
414
+ # <build>/e/src/ layout; inherited by add_subdirectory, so the vendored ggml
415
+ # tree stays untouched. Anchored at CMAKE_CURRENT_BINARY_DIR so an embedding
416
+ # project's build root stays clean, and skipped entirely when the embedder
417
+ # already declared its own ExternalProject layout.
418
+ if(WIN32)
419
+ # The module defines EP_PREFIX/EP_BASE as INHERITED directory properties;
420
+ # without it the get below cannot see a value set by an embedding project.
421
+ include(ExternalProject)
422
+ get_directory_property(_ep_prefix EP_PREFIX)
423
+ get_directory_property(_ep_base EP_BASE)
424
+ if(NOT _ep_prefix AND NOT _ep_base)
425
+ set_property(DIRECTORY PROPERTY EP_PREFIX "${CMAKE_CURRENT_BINARY_DIR}/e")
426
+ endif()
427
+ endif()
428
+
429
+ # ggml's CMake declares its own warning flags; let it.
430
+ add_subdirectory(ggml)
431
+
432
+ # -----------------------------------------------------------------------------
433
+ # Subdirs
434
+ # -----------------------------------------------------------------------------
435
+
436
+ add_subdirectory(src)
437
+
438
+ if(TRANSCRIBE_BUILD_EXAMPLES)
439
+ add_subdirectory(examples)
440
+ endif()
441
+
442
+ if(TRANSCRIBE_BUILD_TESTS)
443
+ enable_testing()
444
+ add_subdirectory(tests)
445
+ endif()
446
+
447
+ if(TRANSCRIBE_BUILD_TOOLS)
448
+ add_subdirectory(tools)
449
+ endif()
450
+
451
+ # Python provider-wheel packaging (after subdirs: needs the target list and
452
+ # ggml's GGML_AVAILABLE_BACKENDS).
453
+ if(SKBUILD)
454
+ include(cmake/python-wheel-install.cmake)
455
+ endif()
456
+
457
+ # Consumer install rules (same placement constraint as above).
458
+ if(TRANSCRIBE_INSTALL AND NOT SKBUILD)
459
+ include(cmake/transcribe-install.cmake)
460
+ endif()