transcribe-cpp-native 0.0.0__tar.gz → 0.0.4__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.
- transcribe_cpp_native-0.0.4/.cargo/config.toml +4 -0
- transcribe_cpp_native-0.0.4/.gitignore +86 -0
- transcribe_cpp_native-0.0.4/CLAUDE.md +19 -0
- transcribe_cpp_native-0.0.4/CMakeLists.txt +394 -0
- transcribe_cpp_native-0.0.4/CMakePresets.json +61 -0
- transcribe_cpp_native-0.0.4/CONTRIBUTING.md +193 -0
- transcribe_cpp_native-0.0.4/Cargo.lock +357 -0
- transcribe_cpp_native-0.0.4/Cargo.toml +90 -0
- transcribe_cpp_native-0.0.4/LICENSE +21 -0
- transcribe_cpp_native-0.0.4/PKG-INFO +51 -0
- transcribe_cpp_native-0.0.4/README.md +147 -0
- transcribe_cpp_native-0.0.4/RELEASING.md +41 -0
- transcribe_cpp_native-0.0.4/bindings/python/LICENSE +21 -0
- transcribe_cpp_native-0.0.4/bindings/python/README.md +92 -0
- transcribe_cpp_native-0.0.4/bindings/python/_generate/README.md +38 -0
- transcribe_cpp_native-0.0.4/bindings/python/_generate/check_version_sync.py +249 -0
- transcribe_cpp_native-0.0.4/bindings/python/_generate/generate.py +534 -0
- transcribe_cpp_native-0.0.4/bindings/python/examples/stream_wav.py +95 -0
- transcribe_cpp_native-0.0.4/bindings/python/examples/transcribe_wav.py +91 -0
- transcribe_cpp_native-0.0.4/bindings/python/pyproject.toml +71 -0
- transcribe_cpp_native-0.0.4/bindings/python/src/transcribe_cpp/__init__.py +1367 -0
- transcribe_cpp_native-0.0.4/bindings/python/src/transcribe_cpp/_abi.py +77 -0
- transcribe_cpp_native-0.0.4/bindings/python/src/transcribe_cpp/_generated.py +395 -0
- transcribe_cpp_native-0.0.4/bindings/python/src/transcribe_cpp/_library.py +386 -0
- transcribe_cpp_native-0.0.4/bindings/python/src/transcribe_cpp/errors.py +151 -0
- transcribe_cpp_native-0.0.4/bindings/python/src/transcribe_cpp/py.typed +0 -0
- transcribe_cpp_native-0.0.4/bindings/python/tests/conftest.py +159 -0
- transcribe_cpp_native-0.0.4/bindings/python/tests/test_abi.py +85 -0
- transcribe_cpp_native-0.0.4/bindings/python/tests/test_backends.py +98 -0
- transcribe_cpp_native-0.0.4/bindings/python/tests/test_device_select.py +55 -0
- transcribe_cpp_native-0.0.4/bindings/python/tests/test_errors.py +104 -0
- transcribe_cpp_native-0.0.4/bindings/python/tests/test_example.py +130 -0
- transcribe_cpp_native-0.0.4/bindings/python/tests/test_family_ext.py +206 -0
- transcribe_cpp_native-0.0.4/bindings/python/tests/test_lifetime.py +204 -0
- transcribe_cpp_native-0.0.4/bindings/python/tests/test_pcm.py +150 -0
- transcribe_cpp_native-0.0.4/bindings/python/tests/test_provider_discovery.py +341 -0
- transcribe_cpp_native-0.0.4/bindings/python/tests/test_streaming.py +152 -0
- transcribe_cpp_native-0.0.4/bindings/python/tests/test_transcribe.py +247 -0
- transcribe_cpp_native-0.0.4/bindings/python/uv.lock +416 -0
- transcribe_cpp_native-0.0.4/bindings/python-native/README.md +31 -0
- transcribe_cpp_native-0.0.4/bindings/python-native/_contract.py.in +15 -0
- transcribe_cpp_native-0.0.4/bindings/python-native/transcribe_cpp_native/__init__.py +31 -0
- transcribe_cpp_native-0.0.4/bindings/python-native-cu12/LICENSE +21 -0
- transcribe_cpp_native-0.0.4/bindings/python-native-cu12/LICENSE-ggml +21 -0
- transcribe_cpp_native-0.0.4/bindings/python-native-cu12/README.md +36 -0
- transcribe_cpp_native-0.0.4/bindings/python-native-cu12/pyproject.toml +94 -0
- transcribe_cpp_native-0.0.4/bindings/python-native-cu12/transcribe_cpp_native_cu12/__init__.py +91 -0
- transcribe_cpp_native-0.0.4/bindings/rust/sys/LICENSE +21 -0
- transcribe_cpp_native-0.0.4/bindings/rust/sys/README.md +60 -0
- transcribe_cpp_native-0.0.4/bindings/rust/sys/build.rs +321 -0
- transcribe_cpp_native-0.0.4/bindings/rust/sys/src/lib.rs +51 -0
- transcribe_cpp_native-0.0.4/bindings/rust/sys/src/transcribe_sys.rs +1213 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/Cargo.toml +44 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/LICENSE +21 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/README.md +67 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/build.rs +38 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/examples/backend-select.rs +75 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/examples/batch.rs +39 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/examples/common/mod.rs +76 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/examples/error-handling.rs +86 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/examples/streaming.rs +72 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/examples/transcribe-file.rs +77 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/src/backend.rs +162 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/src/cancel.rs +55 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/src/error.rs +185 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/src/family.rs +207 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/src/lib.rs +94 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/src/logging.rs +48 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/src/model.rs +313 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/src/result.rs +155 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/src/session.rs +602 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/src/streaming.rs +100 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/src/types.rs +304 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/src/version.rs +78 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/tests/cancel.rs +74 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/tests/common/mod.rs +122 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/tests/degradation.rs +89 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/tests/device_select.rs +92 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/tests/extensions.rs +59 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/tests/family.rs +145 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/tests/no_model.rs +128 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/tests/streaming.rs +250 -0
- transcribe_cpp_native-0.0.4/bindings/rust/transcribe-cpp/tests/transcribe.rs +227 -0
- transcribe_cpp_native-0.0.4/bindings/rust/xtask/Cargo.toml +9 -0
- transcribe_cpp_native-0.0.4/bindings/rust/xtask/src/main.rs +116 -0
- transcribe_cpp_native-0.0.4/bindings/swift/.gitignore +7 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Examples/TranscribeDemo/.gitignore +9 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Examples/TranscribeDemo/README.md +48 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Examples/TranscribeDemo/TranscribeDemo/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Examples/TranscribeDemo/TranscribeDemo/Assets.xcassets/AppIcon.appiconset/Contents.json +35 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Examples/TranscribeDemo/TranscribeDemo/Assets.xcassets/Contents.json +6 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Examples/TranscribeDemo/TranscribeDemo/ContentView.swift +149 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Examples/TranscribeDemo/TranscribeDemo/Resources/jfk.wav +0 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Examples/TranscribeDemo/TranscribeDemo/TranscribeDemoApp.swift +17 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Examples/TranscribeDemo/TranscribeDemo/WavDecoder.swift +41 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Examples/TranscribeDemo/project.yml +42 -0
- transcribe_cpp_native-0.0.4/bindings/swift/LICENSE +21 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Package.swift +74 -0
- transcribe_cpp_native-0.0.4/bindings/swift/README.md +118 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Sources/ExampleSupport/ExampleSupport.swift +88 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Sources/TranscribeCpp/ABIHash.swift +20 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Sources/TranscribeCpp/Backend.swift +128 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Sources/TranscribeCpp/Cancellation.swift +40 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Sources/TranscribeCpp/Convenience.swift +15 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Sources/TranscribeCpp/Family.swift +172 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Sources/TranscribeCpp/Logging.swift +83 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Sources/TranscribeCpp/Model.swift +104 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Sources/TranscribeCpp/Options.swift +179 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Sources/TranscribeCpp/Session.swift +254 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Sources/TranscribeCpp/Streaming.swift +205 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Sources/TranscribeCpp/TranscribeCpp.swift +94 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Sources/TranscribeCpp/TranscribeError.swift +77 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Sources/TranscribeCpp/Transcript.swift +128 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Sources/backend-select/main.swift +37 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Sources/batch/main.swift +28 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Sources/error-handling/main.swift +52 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Sources/streaming/main.swift +34 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Sources/transcribe-file/main.swift +29 -0
- transcribe_cpp_native-0.0.4/bindings/swift/THIRD-PARTY-LICENSES.md +36 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Tests/TranscribeCppTests/CancelTests.swift +133 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Tests/TranscribeCppTests/DeviceSelectTests.swift +83 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Tests/TranscribeCppTests/ExtensionTests.swift +43 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Tests/TranscribeCppTests/FamilyStreamTests.swift +76 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Tests/TranscribeCppTests/LoggingTests.swift +51 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Tests/TranscribeCppTests/NoModelTests.swift +112 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Tests/TranscribeCppTests/StreamingTests.swift +170 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Tests/TranscribeCppTests/TestSupport.swift +149 -0
- transcribe_cpp_native-0.0.4/bindings/swift/Tests/TranscribeCppTests/TranscribeTests.swift +144 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/.gitignore +5 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/LICENSE +21 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/README.md +215 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/examples/_support.mjs +44 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/examples/backend-select.mjs +34 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/examples/batch.mjs +25 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/examples/error-handling.mjs +38 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/examples/streaming.mjs +28 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/examples/transcribe-file.mjs +28 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/package-lock.json +309 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/package.json +51 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/scripts/build-from-source.mjs +90 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/scripts/pack-platform.mjs +116 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/src/_generated.ts +265 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/src/abi.ts +58 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/src/errors.ts +84 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/src/ffi.ts +250 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/src/index.ts +1244 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/src/loader.ts +156 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/src/native.ts +97 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/src/types.ts +223 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/src/version.ts +34 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/test/batch.test.mjs +29 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/test/cancel.test.mjs +29 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/test/common.mjs +56 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/test/device-select.test.mjs +58 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/test/family.test.mjs +93 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/test/lifetime.test.mjs +26 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/test/no-model.test.mjs +109 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/test/pcm.test.mjs +36 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/test/streaming.test.mjs +242 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/test/transcribe.test.mjs +70 -0
- transcribe_cpp_native-0.0.4/bindings/typescript/tsconfig.json +16 -0
- transcribe_cpp_native-0.0.4/cmake/python-wheel-install.cmake +106 -0
- transcribe_cpp_native-0.0.4/cmake/transcribe-backend-kinds.cmake +50 -0
- transcribe_cpp_native-0.0.4/cmake/transcribe-install.cmake +236 -0
- transcribe_cpp_native-0.0.4/docs/_templates/model-card.md.j2 +166 -0
- transcribe_cpp_native-0.0.4/docs/bindings.md +74 -0
- transcribe_cpp_native-0.0.4/docs/extension-kinds.md +55 -0
- transcribe_cpp_native-0.0.4/docs/input-limits.md +213 -0
- transcribe_cpp_native-0.0.4/docs/model-family-testing.md +216 -0
- transcribe_cpp_native-0.0.4/docs/models/canary-180m-flash.md +164 -0
- transcribe_cpp_native-0.0.4/docs/models/canary-1b-flash.md +150 -0
- transcribe_cpp_native-0.0.4/docs/models/canary-1b-v2.md +174 -0
- transcribe_cpp_native-0.0.4/docs/models/canary-1b.md +165 -0
- transcribe_cpp_native-0.0.4/docs/models/canary-qwen-2.5b.md +211 -0
- transcribe_cpp_native-0.0.4/docs/models/canary.md +82 -0
- transcribe_cpp_native-0.0.4/docs/models/cohere-transcribe-03-2026.md +184 -0
- transcribe_cpp_native-0.0.4/docs/models/fun-asr-mlt-nano-2512.md +226 -0
- transcribe_cpp_native-0.0.4/docs/models/fun-asr-nano-2512.md +200 -0
- transcribe_cpp_native-0.0.4/docs/models/fun-asr-nano.md +90 -0
- transcribe_cpp_native-0.0.4/docs/models/gigaam-v3-ctc.md +150 -0
- transcribe_cpp_native-0.0.4/docs/models/gigaam-v3-e2e-ctc.md +150 -0
- transcribe_cpp_native-0.0.4/docs/models/gigaam-v3-e2e-rnnt.md +150 -0
- transcribe_cpp_native-0.0.4/docs/models/gigaam-v3-rnnt.md +150 -0
- transcribe_cpp_native-0.0.4/docs/models/gigaam.md +87 -0
- transcribe_cpp_native-0.0.4/docs/models/granite-4.0-1b-speech.md +180 -0
- transcribe_cpp_native-0.0.4/docs/models/granite-speech-4.1-2b-nar.md +184 -0
- transcribe_cpp_native-0.0.4/docs/models/granite-speech-4.1-2b-plus.md +201 -0
- transcribe_cpp_native-0.0.4/docs/models/granite-speech-4.1-2b.md +178 -0
- transcribe_cpp_native-0.0.4/docs/models/granite-speech.md +113 -0
- transcribe_cpp_native-0.0.4/docs/models/medasr.md +123 -0
- transcribe_cpp_native-0.0.4/docs/models/moonshine-base.md +169 -0
- transcribe_cpp_native-0.0.4/docs/models/moonshine-streaming-medium.md +163 -0
- transcribe_cpp_native-0.0.4/docs/models/moonshine-streaming-small.md +162 -0
- transcribe_cpp_native-0.0.4/docs/models/moonshine-streaming-tiny.md +195 -0
- transcribe_cpp_native-0.0.4/docs/models/moonshine-streaming.md +99 -0
- transcribe_cpp_native-0.0.4/docs/models/moonshine-tiny.md +167 -0
- transcribe_cpp_native-0.0.4/docs/models/moonshine.md +124 -0
- transcribe_cpp_native-0.0.4/docs/models/nemotron-3.5-asr-streaming-0.6b.md +222 -0
- transcribe_cpp_native-0.0.4/docs/models/nemotron-speech-streaming-en-0.6b.md +295 -0
- transcribe_cpp_native-0.0.4/docs/models/parakeet-ctc-0.6b.md +136 -0
- transcribe_cpp_native-0.0.4/docs/models/parakeet-ctc-1.1b.md +134 -0
- transcribe_cpp_native-0.0.4/docs/models/parakeet-rnnt-0.6b.md +136 -0
- transcribe_cpp_native-0.0.4/docs/models/parakeet-rnnt-1.1b.md +133 -0
- transcribe_cpp_native-0.0.4/docs/models/parakeet-tdt-0.6b-v2.md +169 -0
- transcribe_cpp_native-0.0.4/docs/models/parakeet-tdt-0.6b-v3.md +171 -0
- transcribe_cpp_native-0.0.4/docs/models/parakeet-tdt-1.1b.md +135 -0
- transcribe_cpp_native-0.0.4/docs/models/parakeet-tdt_ctc-1.1b.md +134 -0
- transcribe_cpp_native-0.0.4/docs/models/parakeet-tdt_ctc-110m.md +139 -0
- transcribe_cpp_native-0.0.4/docs/models/parakeet-unified-en-0.6b.md +233 -0
- transcribe_cpp_native-0.0.4/docs/models/parakeet.md +104 -0
- transcribe_cpp_native-0.0.4/docs/models/qwen3-asr-0.6b.md +179 -0
- transcribe_cpp_native-0.0.4/docs/models/qwen3-asr-1.7b.md +170 -0
- transcribe_cpp_native-0.0.4/docs/models/qwen3-asr.md +78 -0
- transcribe_cpp_native-0.0.4/docs/models/sensevoice-small.md +219 -0
- transcribe_cpp_native-0.0.4/docs/models/voxtral-mini-3b-2507.md +157 -0
- transcribe_cpp_native-0.0.4/docs/models/voxtral-realtime.md +154 -0
- transcribe_cpp_native-0.0.4/docs/models/voxtral-small-24b-2507.md +152 -0
- transcribe_cpp_native-0.0.4/docs/models/voxtral.md +46 -0
- transcribe_cpp_native-0.0.4/docs/models/whisper-base.en.md +180 -0
- transcribe_cpp_native-0.0.4/docs/models/whisper-base.md +180 -0
- transcribe_cpp_native-0.0.4/docs/models/whisper-large-v2.md +180 -0
- transcribe_cpp_native-0.0.4/docs/models/whisper-large-v3-turbo.md +179 -0
- transcribe_cpp_native-0.0.4/docs/models/whisper-large-v3.md +179 -0
- transcribe_cpp_native-0.0.4/docs/models/whisper-large.md +180 -0
- transcribe_cpp_native-0.0.4/docs/models/whisper-medium.en.md +180 -0
- transcribe_cpp_native-0.0.4/docs/models/whisper-medium.md +180 -0
- transcribe_cpp_native-0.0.4/docs/models/whisper-small.en.md +180 -0
- transcribe_cpp_native-0.0.4/docs/models/whisper-small.md +180 -0
- transcribe_cpp_native-0.0.4/docs/models/whisper-tiny.en.md +180 -0
- transcribe_cpp_native-0.0.4/docs/models/whisper-tiny.md +180 -0
- transcribe_cpp_native-0.0.4/docs/models/whisper.md +104 -0
- transcribe_cpp_native-0.0.4/docs/porting/0-porting.md +132 -0
- transcribe_cpp_native-0.0.4/docs/porting/1-reference-research.md +171 -0
- transcribe_cpp_native-0.0.4/docs/porting/1a-intake.md +250 -0
- transcribe_cpp_native-0.0.4/docs/porting/2-artifacts-and-goldens.md +273 -0
- transcribe_cpp_native-0.0.4/docs/porting/3-conversion.md +157 -0
- transcribe_cpp_native-0.0.4/docs/porting/4-numerical-validation.md +179 -0
- transcribe_cpp_native-0.0.4/docs/porting/4a-numerical-troubleshooting.md +312 -0
- transcribe_cpp_native-0.0.4/docs/porting/5-benchmarks.md +91 -0
- transcribe_cpp_native-0.0.4/docs/porting/6-family-checklist.md +70 -0
- transcribe_cpp_native-0.0.4/docs/porting/families/_forward-map-template.md +53 -0
- transcribe_cpp_native-0.0.4/docs/porting/families/_intake-schema.json +303 -0
- transcribe_cpp_native-0.0.4/docs/porting/families/_template.md +122 -0
- transcribe_cpp_native-0.0.4/docs/porting/families/canary.md +278 -0
- transcribe_cpp_native-0.0.4/docs/porting/families/canary_qwen.md +231 -0
- transcribe_cpp_native-0.0.4/docs/porting/families/cohere.md +74 -0
- transcribe_cpp_native-0.0.4/docs/porting/families/funasr_nano.md +260 -0
- transcribe_cpp_native-0.0.4/docs/porting/families/gigaam.md +221 -0
- transcribe_cpp_native-0.0.4/docs/porting/families/granite.md +177 -0
- transcribe_cpp_native-0.0.4/docs/porting/families/granite_nar.md +128 -0
- transcribe_cpp_native-0.0.4/docs/porting/families/medasr.md +170 -0
- transcribe_cpp_native-0.0.4/docs/porting/families/moonshine.md +132 -0
- transcribe_cpp_native-0.0.4/docs/porting/families/moonshine_streaming.md +468 -0
- transcribe_cpp_native-0.0.4/docs/porting/families/parakeet.md +486 -0
- transcribe_cpp_native-0.0.4/docs/porting/families/qwen3_asr.md +272 -0
- transcribe_cpp_native-0.0.4/docs/porting/families/sensevoice.md +232 -0
- transcribe_cpp_native-0.0.4/docs/porting/families/voxtral.md +245 -0
- transcribe_cpp_native-0.0.4/docs/porting/families/voxtral_realtime.md +105 -0
- transcribe_cpp_native-0.0.4/docs/porting/families/whisper.md +215 -0
- transcribe_cpp_native-0.0.4/docs/porting/ggml-reference-map.md +222 -0
- transcribe_cpp_native-0.0.4/docs/tools/README.md +67 -0
- transcribe_cpp_native-0.0.4/docs/tools/benchmarking.md +105 -0
- transcribe_cpp_native-0.0.4/docs/tools/compare-tensors.md +115 -0
- transcribe_cpp_native-0.0.4/docs/tools/conversion.md +161 -0
- transcribe_cpp_native-0.0.4/docs/tools/quantization.md +204 -0
- transcribe_cpp_native-0.0.4/docs/tools/reference-dumps.md +60 -0
- transcribe_cpp_native-0.0.4/docs/tools/validate.md +60 -0
- transcribe_cpp_native-0.0.4/docs/tools/wer.md +152 -0
- transcribe_cpp_native-0.0.4/examples/CMakeLists.txt +10 -0
- transcribe_cpp_native-0.0.4/examples/bench/CMakeLists.txt +16 -0
- transcribe_cpp_native-0.0.4/examples/bench/batch_bench.cpp +189 -0
- transcribe_cpp_native-0.0.4/examples/cli/CMakeLists.txt +17 -0
- transcribe_cpp_native-0.0.4/examples/cli/main.cpp +1268 -0
- transcribe_cpp_native-0.0.4/examples/common/CMakeLists.txt +27 -0
- transcribe_cpp_native-0.0.4/examples/common/dr_wav.h +6432 -0
- transcribe_cpp_native-0.0.4/examples/common/wav.cpp +133 -0
- transcribe_cpp_native-0.0.4/examples/common/wav.h +33 -0
- transcribe_cpp_native-0.0.4/examples/hello/CMakeLists.txt +29 -0
- transcribe_cpp_native-0.0.4/examples/hello/main.c +122 -0
- transcribe_cpp_native-0.0.4/examples/hello_stream/CMakeLists.txt +28 -0
- transcribe_cpp_native-0.0.4/examples/hello_stream/main.c +234 -0
- transcribe_cpp_native-0.0.4/ggml/.editorconfig +22 -0
- transcribe_cpp_native-0.0.4/ggml/.gitignore +39 -0
- transcribe_cpp_native-0.0.4/ggml/.gitmodules +0 -0
- transcribe_cpp_native-0.0.4/ggml/AUTHORS +335 -0
- transcribe_cpp_native-0.0.4/ggml/CMakeLists.txt +505 -0
- transcribe_cpp_native-0.0.4/ggml/CONTRIBUTING.md +3 -0
- transcribe_cpp_native-0.0.4/ggml/LICENSE +21 -0
- transcribe_cpp_native-0.0.4/ggml/README.md +50 -0
- transcribe_cpp_native-0.0.4/ggml/UPSTREAM +8 -0
- transcribe_cpp_native-0.0.4/ggml/ci/run.sh +395 -0
- transcribe_cpp_native-0.0.4/ggml/cmake/FindNCCL.cmake +36 -0
- transcribe_cpp_native-0.0.4/ggml/cmake/GitVars.cmake +22 -0
- transcribe_cpp_native-0.0.4/ggml/cmake/common.cmake +50 -0
- transcribe_cpp_native-0.0.4/ggml/cmake/ggml-config.cmake.in +201 -0
- transcribe_cpp_native-0.0.4/ggml/docs/gguf.md +828 -0
- transcribe_cpp_native-0.0.4/ggml/examples/CMakeLists.txt +34 -0
- transcribe_cpp_native-0.0.4/ggml/examples/common-ggml.cpp +244 -0
- transcribe_cpp_native-0.0.4/ggml/examples/common-ggml.h +18 -0
- transcribe_cpp_native-0.0.4/ggml/examples/common.cpp +675 -0
- transcribe_cpp_native-0.0.4/ggml/examples/common.h +322 -0
- transcribe_cpp_native-0.0.4/ggml/examples/gpt-2/CMakeLists.txt +32 -0
- transcribe_cpp_native-0.0.4/ggml/examples/gpt-2/README.md +225 -0
- transcribe_cpp_native-0.0.4/ggml/examples/gpt-2/convert-cerebras-to-ggml.py +183 -0
- transcribe_cpp_native-0.0.4/ggml/examples/gpt-2/convert-ckpt-to-ggml.py +159 -0
- transcribe_cpp_native-0.0.4/ggml/examples/gpt-2/convert-h5-to-ggml.py +195 -0
- transcribe_cpp_native-0.0.4/ggml/examples/gpt-2/download-ggml-model.sh +69 -0
- transcribe_cpp_native-0.0.4/ggml/examples/gpt-2/download-model.sh +48 -0
- transcribe_cpp_native-0.0.4/ggml/examples/gpt-2/main-alloc.cpp +880 -0
- transcribe_cpp_native-0.0.4/ggml/examples/gpt-2/main-backend.cpp +946 -0
- transcribe_cpp_native-0.0.4/ggml/examples/gpt-2/main-batched.cpp +1210 -0
- transcribe_cpp_native-0.0.4/ggml/examples/gpt-2/main-ctx.cpp +840 -0
- transcribe_cpp_native-0.0.4/ggml/examples/gpt-2/main-sched.cpp +1079 -0
- transcribe_cpp_native-0.0.4/ggml/examples/gpt-2/quantize.cpp +184 -0
- transcribe_cpp_native-0.0.4/ggml/examples/gpt-j/CMakeLists.txt +13 -0
- transcribe_cpp_native-0.0.4/ggml/examples/gpt-j/README.md +239 -0
- transcribe_cpp_native-0.0.4/ggml/examples/gpt-j/convert-h5-to-ggml.py +173 -0
- transcribe_cpp_native-0.0.4/ggml/examples/gpt-j/download-ggml-model.sh +69 -0
- transcribe_cpp_native-0.0.4/ggml/examples/gpt-j/download-model.sh +11 -0
- transcribe_cpp_native-0.0.4/ggml/examples/gpt-j/main.cpp +755 -0
- transcribe_cpp_native-0.0.4/ggml/examples/gpt-j/quantize.cpp +182 -0
- transcribe_cpp_native-0.0.4/ggml/examples/magika/CMakeLists.txt +17 -0
- transcribe_cpp_native-0.0.4/ggml/examples/magika/README.md +23 -0
- transcribe_cpp_native-0.0.4/ggml/examples/magika/convert.py +32 -0
- transcribe_cpp_native-0.0.4/ggml/examples/magika/main.cpp +374 -0
- transcribe_cpp_native-0.0.4/ggml/examples/mnist/.gitignore +3 -0
- transcribe_cpp_native-0.0.4/ggml/examples/mnist/CMakeLists.txt +58 -0
- transcribe_cpp_native-0.0.4/ggml/examples/mnist/README.md +206 -0
- transcribe_cpp_native-0.0.4/ggml/examples/mnist/mnist-common.cpp +496 -0
- transcribe_cpp_native-0.0.4/ggml/examples/mnist/mnist-common.h +166 -0
- transcribe_cpp_native-0.0.4/ggml/examples/mnist/mnist-eval.cpp +67 -0
- transcribe_cpp_native-0.0.4/ggml/examples/mnist/mnist-train-cnn.py +91 -0
- transcribe_cpp_native-0.0.4/ggml/examples/mnist/mnist-train-fc.py +131 -0
- transcribe_cpp_native-0.0.4/ggml/examples/mnist/mnist-train.cpp +39 -0
- transcribe_cpp_native-0.0.4/ggml/examples/mnist/server.py +36 -0
- transcribe_cpp_native-0.0.4/ggml/examples/perf-metal/CMakeLists.txt +7 -0
- transcribe_cpp_native-0.0.4/ggml/examples/perf-metal/perf-metal.cpp +152 -0
- transcribe_cpp_native-0.0.4/ggml/examples/prompts/dolly-v2.txt +100 -0
- transcribe_cpp_native-0.0.4/ggml/examples/prompts/gpt-2-chinese.txt +1 -0
- transcribe_cpp_native-0.0.4/ggml/examples/prompts/gpt-2.txt +100 -0
- transcribe_cpp_native-0.0.4/ggml/examples/prompts/gpt-j.txt +100 -0
- transcribe_cpp_native-0.0.4/ggml/examples/prompts/gpt-neox-japanese.txt +1 -0
- transcribe_cpp_native-0.0.4/ggml/examples/prompts/gpt-neox.txt +100 -0
- transcribe_cpp_native-0.0.4/ggml/examples/prompts/polyglot-ko.txt +3 -0
- transcribe_cpp_native-0.0.4/ggml/examples/prompts/replit.txt +100 -0
- transcribe_cpp_native-0.0.4/ggml/examples/prompts/starcoder.txt +100 -0
- transcribe_cpp_native-0.0.4/ggml/examples/prompts/test-cases.txt +110 -0
- transcribe_cpp_native-0.0.4/ggml/examples/prompts/tokenize_huggingface.py +65 -0
- transcribe_cpp_native-0.0.4/ggml/examples/prompts/whisper.txt +100 -0
- transcribe_cpp_native-0.0.4/ggml/examples/python/README.md +115 -0
- transcribe_cpp_native-0.0.4/ggml/examples/python/api.h +14 -0
- transcribe_cpp_native-0.0.4/ggml/examples/python/example_add_quant.py +25 -0
- transcribe_cpp_native-0.0.4/ggml/examples/python/example_test_all_quants.py +68 -0
- transcribe_cpp_native-0.0.4/ggml/examples/python/ggml/__init__.py +58 -0
- transcribe_cpp_native-0.0.4/ggml/examples/python/ggml/__init__.pyi +2406 -0
- transcribe_cpp_native-0.0.4/ggml/examples/python/ggml/cffi.py +11 -0
- transcribe_cpp_native-0.0.4/ggml/examples/python/ggml/ffi/__init__.pyi +7 -0
- transcribe_cpp_native-0.0.4/ggml/examples/python/ggml/utils.py +182 -0
- transcribe_cpp_native-0.0.4/ggml/examples/python/regenerate.py +42 -0
- transcribe_cpp_native-0.0.4/ggml/examples/python/stubs.py +128 -0
- transcribe_cpp_native-0.0.4/ggml/examples/python/test_tensor.py +258 -0
- transcribe_cpp_native-0.0.4/ggml/examples/sam/CMakeLists.txt +13 -0
- transcribe_cpp_native-0.0.4/ggml/examples/sam/README.md +95 -0
- transcribe_cpp_native-0.0.4/ggml/examples/sam/convert-pth-to-ggml.py +147 -0
- transcribe_cpp_native-0.0.4/ggml/examples/sam/example.jpg +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/sam/sam.cpp +2370 -0
- transcribe_cpp_native-0.0.4/ggml/examples/simple/CMakeLists.txt +21 -0
- transcribe_cpp_native-0.0.4/ggml/examples/simple/README.md +61 -0
- transcribe_cpp_native-0.0.4/ggml/examples/simple/simple-backend.cpp +153 -0
- transcribe_cpp_native-0.0.4/ggml/examples/simple/simple-ctx.cpp +127 -0
- transcribe_cpp_native-0.0.4/ggml/examples/stb_image.h +7987 -0
- transcribe_cpp_native-0.0.4/ggml/examples/stb_image_write.h +1724 -0
- transcribe_cpp_native-0.0.4/ggml/examples/test-cmake/CMakeLists.txt +10 -0
- transcribe_cpp_native-0.0.4/ggml/examples/test-cmake/README.md +3 -0
- transcribe_cpp_native-0.0.4/ggml/examples/test-cmake/test-cmake.cpp +6 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/CMakeLists.txt +6 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/README.md +59 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/convert-yolov3-tiny.py +53 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/coco.names +80 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/100_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/100_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/100_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/100_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/100_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/100_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/100_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/100_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/101_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/101_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/101_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/101_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/101_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/101_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/101_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/101_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/102_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/102_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/102_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/102_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/102_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/102_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/102_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/102_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/103_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/103_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/103_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/103_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/103_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/103_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/103_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/103_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/104_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/104_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/104_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/104_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/104_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/104_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/104_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/104_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/105_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/105_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/105_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/105_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/105_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/105_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/105_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/105_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/106_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/106_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/106_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/106_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/106_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/106_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/106_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/106_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/107_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/107_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/107_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/107_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/107_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/107_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/107_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/107_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/108_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/108_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/108_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/108_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/108_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/108_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/108_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/108_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/109_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/109_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/109_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/109_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/109_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/109_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/109_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/109_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/110_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/110_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/110_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/110_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/110_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/110_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/110_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/110_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/111_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/111_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/111_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/111_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/111_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/111_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/111_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/111_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/112_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/112_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/112_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/112_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/112_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/112_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/112_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/112_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/113_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/113_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/113_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/113_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/113_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/113_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/113_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/113_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/114_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/114_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/114_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/114_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/114_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/114_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/114_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/114_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/115_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/115_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/115_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/115_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/115_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/115_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/115_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/115_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/116_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/116_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/116_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/116_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/116_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/116_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/116_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/116_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/117_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/117_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/117_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/117_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/117_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/117_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/117_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/117_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/118_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/118_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/118_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/118_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/118_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/118_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/118_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/118_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/119_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/119_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/119_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/119_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/119_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/119_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/119_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/119_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/120_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/120_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/120_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/120_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/120_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/120_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/120_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/120_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/121_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/121_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/121_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/121_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/121_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/121_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/121_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/121_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/122_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/122_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/122_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/122_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/122_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/122_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/122_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/122_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/123_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/123_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/123_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/123_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/123_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/123_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/123_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/123_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/124_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/124_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/124_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/124_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/124_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/124_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/124_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/124_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/125_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/125_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/125_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/125_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/125_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/125_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/125_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/125_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/126_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/126_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/126_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/126_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/126_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/126_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/126_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/126_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/32_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/32_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/32_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/32_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/32_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/32_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/32_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/32_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/33_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/33_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/33_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/33_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/33_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/33_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/33_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/33_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/34_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/34_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/34_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/34_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/34_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/34_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/34_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/34_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/35_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/35_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/35_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/35_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/35_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/35_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/35_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/35_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/36_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/36_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/36_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/36_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/36_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/36_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/36_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/36_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/37_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/37_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/37_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/37_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/37_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/37_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/37_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/37_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/38_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/38_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/38_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/38_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/38_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/38_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/38_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/38_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/39_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/39_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/39_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/39_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/39_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/39_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/39_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/39_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/40_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/40_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/40_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/40_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/40_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/40_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/40_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/40_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/41_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/41_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/41_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/41_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/41_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/41_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/41_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/41_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/42_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/42_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/42_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/42_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/42_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/42_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/42_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/42_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/43_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/43_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/43_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/43_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/43_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/43_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/43_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/43_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/44_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/44_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/44_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/44_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/44_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/44_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/44_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/44_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/45_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/45_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/45_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/45_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/45_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/45_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/45_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/45_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/46_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/46_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/46_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/46_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/46_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/46_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/46_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/46_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/47_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/47_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/47_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/47_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/47_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/47_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/47_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/47_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/48_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/48_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/48_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/48_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/48_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/48_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/48_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/48_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/49_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/49_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/49_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/49_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/49_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/49_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/49_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/49_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/50_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/50_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/50_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/50_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/50_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/50_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/50_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/50_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/51_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/51_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/51_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/51_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/51_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/51_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/51_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/51_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/52_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/52_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/52_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/52_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/52_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/52_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/52_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/52_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/53_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/53_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/53_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/53_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/53_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/53_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/53_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/53_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/54_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/54_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/54_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/54_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/54_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/54_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/54_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/54_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/55_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/55_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/55_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/55_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/55_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/55_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/55_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/55_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/56_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/56_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/56_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/56_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/56_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/56_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/56_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/56_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/57_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/57_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/57_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/57_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/57_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/57_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/57_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/57_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/58_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/58_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/58_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/58_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/58_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/58_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/58_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/58_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/59_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/59_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/59_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/59_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/59_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/59_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/59_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/59_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/60_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/60_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/60_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/60_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/60_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/60_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/60_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/60_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/61_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/61_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/61_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/61_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/61_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/61_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/61_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/61_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/62_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/62_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/62_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/62_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/62_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/62_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/62_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/62_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/63_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/63_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/63_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/63_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/63_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/63_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/63_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/63_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/64_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/64_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/64_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/64_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/64_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/64_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/64_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/64_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/65_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/65_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/65_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/65_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/65_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/65_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/65_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/65_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/66_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/66_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/66_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/66_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/66_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/66_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/66_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/66_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/67_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/67_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/67_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/67_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/67_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/67_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/67_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/67_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/68_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/68_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/68_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/68_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/68_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/68_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/68_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/68_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/69_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/69_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/69_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/69_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/69_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/69_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/69_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/69_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/70_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/70_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/70_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/70_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/70_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/70_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/70_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/70_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/71_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/71_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/71_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/71_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/71_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/71_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/71_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/71_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/72_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/72_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/72_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/72_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/72_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/72_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/72_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/72_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/73_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/73_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/73_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/73_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/73_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/73_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/73_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/73_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/74_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/74_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/74_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/74_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/74_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/74_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/74_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/74_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/75_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/75_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/75_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/75_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/75_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/75_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/75_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/75_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/76_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/76_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/76_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/76_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/76_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/76_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/76_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/76_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/77_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/77_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/77_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/77_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/77_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/77_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/77_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/77_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/78_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/78_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/78_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/78_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/78_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/78_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/78_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/78_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/79_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/79_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/79_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/79_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/79_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/79_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/79_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/79_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/80_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/80_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/80_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/80_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/80_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/80_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/80_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/80_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/81_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/81_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/81_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/81_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/81_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/81_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/81_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/81_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/82_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/82_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/82_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/82_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/82_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/82_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/82_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/82_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/83_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/83_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/83_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/83_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/83_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/83_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/83_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/83_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/84_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/84_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/84_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/84_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/84_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/84_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/84_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/84_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/85_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/85_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/85_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/85_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/85_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/85_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/85_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/85_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/86_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/86_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/86_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/86_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/86_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/86_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/86_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/86_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/87_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/87_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/87_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/87_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/87_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/87_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/87_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/87_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/88_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/88_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/88_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/88_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/88_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/88_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/88_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/88_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/89_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/89_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/89_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/89_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/89_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/89_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/89_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/89_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/90_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/90_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/90_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/90_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/90_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/90_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/90_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/90_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/91_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/91_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/91_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/91_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/91_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/91_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/91_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/91_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/92_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/92_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/92_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/92_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/92_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/92_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/92_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/92_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/93_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/93_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/93_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/93_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/93_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/93_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/93_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/93_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/94_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/94_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/94_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/94_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/94_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/94_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/94_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/94_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/95_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/95_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/95_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/95_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/95_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/95_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/95_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/95_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/96_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/96_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/96_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/96_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/96_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/96_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/96_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/96_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/97_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/97_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/97_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/97_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/97_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/97_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/97_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/97_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/98_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/98_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/98_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/98_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/98_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/98_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/98_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/98_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/99_0.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/99_1.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/99_2.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/99_3.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/99_4.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/99_5.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/99_6.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/data/labels/99_7.png +0 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/yolo-image.cpp +210 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/yolo-image.h +39 -0
- transcribe_cpp_native-0.0.4/ggml/examples/yolo/yolov3-tiny.cpp +661 -0
- transcribe_cpp_native-0.0.4/ggml/ggml.pc.in +10 -0
- transcribe_cpp_native-0.0.4/ggml/include/ggml-alloc.h +86 -0
- transcribe_cpp_native-0.0.4/ggml/include/ggml-backend.h +435 -0
- transcribe_cpp_native-0.0.4/ggml/include/ggml-blas.h +25 -0
- transcribe_cpp_native-0.0.4/ggml/include/ggml-cann.h +123 -0
- transcribe_cpp_native-0.0.4/ggml/include/ggml-cpp.h +39 -0
- transcribe_cpp_native-0.0.4/ggml/include/ggml-cpu.h +151 -0
- transcribe_cpp_native-0.0.4/ggml/include/ggml-cuda.h +50 -0
- transcribe_cpp_native-0.0.4/ggml/include/ggml-hexagon.h +19 -0
- transcribe_cpp_native-0.0.4/ggml/include/ggml-metal.h +61 -0
- transcribe_cpp_native-0.0.4/ggml/include/ggml-opencl.h +26 -0
- transcribe_cpp_native-0.0.4/ggml/include/ggml-openvino.h +37 -0
- transcribe_cpp_native-0.0.4/ggml/include/ggml-opt.h +256 -0
- transcribe_cpp_native-0.0.4/ggml/include/ggml-rpc.h +35 -0
- transcribe_cpp_native-0.0.4/ggml/include/ggml-sycl.h +49 -0
- transcribe_cpp_native-0.0.4/ggml/include/ggml-virtgpu.h +14 -0
- transcribe_cpp_native-0.0.4/ggml/include/ggml-vulkan.h +29 -0
- transcribe_cpp_native-0.0.4/ggml/include/ggml-webgpu.h +19 -0
- transcribe_cpp_native-0.0.4/ggml/include/ggml-zdnn.h +17 -0
- transcribe_cpp_native-0.0.4/ggml/include/ggml-zendnn.h +22 -0
- transcribe_cpp_native-0.0.4/ggml/include/ggml.h +2863 -0
- transcribe_cpp_native-0.0.4/ggml/include/gguf.h +210 -0
- transcribe_cpp_native-0.0.4/ggml/requirements.txt +12 -0
- transcribe_cpp_native-0.0.4/ggml/scripts/gen-authors.sh +9 -0
- transcribe_cpp_native-0.0.4/ggml/scripts/release.sh +296 -0
- transcribe_cpp_native-0.0.4/ggml/scripts/sync-llama-am.sh +167 -0
- transcribe_cpp_native-0.0.4/ggml/scripts/sync-llama.last +1 -0
- transcribe_cpp_native-0.0.4/ggml/scripts/sync-llama.sh +21 -0
- transcribe_cpp_native-0.0.4/ggml/scripts/sync-whisper-am.sh +138 -0
- transcribe_cpp_native-0.0.4/ggml/scripts/sync-whisper.last +1 -0
- transcribe_cpp_native-0.0.4/ggml/scripts/sync-whisper.sh +17 -0
- transcribe_cpp_native-0.0.4/ggml/src/CMakeLists.txt +517 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-alloc.c +1248 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-backend-dl.cpp +48 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-backend-dl.h +45 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-backend-impl.h +275 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-backend-meta.cpp +2263 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-backend-reg.cpp +586 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-backend.cpp +2371 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-blas/CMakeLists.txt +101 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-blas/ggml-blas.cpp +522 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cann/CMakeLists.txt +89 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cann/acl_tensor.cpp +195 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cann/acl_tensor.h +349 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cann/aclnn_ops.cpp +4436 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cann/aclnn_ops.h +1190 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cann/common.h +651 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cann/ggml-cann.cpp +3062 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-common.h +1900 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/CMakeLists.txt +723 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/amx/amx.cpp +249 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/amx/amx.h +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/amx/common.h +115 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/amx/mmq.cpp +2512 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/amx/mmq.h +10 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/arch/arm/cpu-feats.cpp +98 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/arch/arm/quants.c +4245 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/arch/arm/repack.cpp +5156 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/arch/loongarch/quants.c +2309 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/arch/powerpc/cpu-feats.cpp +82 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/arch/powerpc/quants.c +2304 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/arch/riscv/cpu-feats.cpp +38 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/arch/riscv/quants.c +6596 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/arch/riscv/repack.cpp +1703 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/arch/s390/cpu-feats.cpp +50 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/arch/s390/quants.c +1465 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/arch/wasm/quants.c +1292 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/arch/x86/cpu-feats.cpp +327 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/arch/x86/quants.c +3970 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/arch/x86/repack.cpp +6407 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/arch-fallback.h +347 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/binary-ops.cpp +154 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/binary-ops.h +16 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/cmake/FindSIMD.cmake +100 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/cmake/FindSMTIME.cmake +32 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/common.h +95 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/ggml-cpu-impl.h +539 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/ggml-cpu.c +3840 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/ggml-cpu.cpp +703 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/hbm.cpp +55 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/hbm.h +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/kleidiai/kernels.cpp +939 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/kleidiai/kernels.h +90 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/kleidiai/kleidiai.cpp +1523 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/kleidiai/kleidiai.h +17 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/llamafile/sgemm.cpp +4052 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/llamafile/sgemm.h +25 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/ops.cpp +11487 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/ops.h +120 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/quants.c +1288 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/quants.h +103 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/repack.cpp +4836 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/repack.h +245 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/simd-gemm.h +226 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/simd-mappings.h +1306 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/spacemit/ime.cpp +1740 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/spacemit/ime.h +21 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/spacemit/ime1_kernels.cpp +1027 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/spacemit/ime2_kernels.cpp +5768 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/spacemit/ime_env.cpp +320 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/spacemit/ime_env.h +55 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/spacemit/ime_kernels.h +189 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/spacemit/repack.cpp +1795 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/spacemit/repack.h +14 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/spacemit/rvv_kernels.cpp +3178 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/spacemit/rvv_kernels.h +95 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/spacemit/spine_barrier.h +34 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/spacemit/spine_mem_pool.cpp +760 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/spacemit/spine_mem_pool.h +32 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/spacemit/spine_tcm.h +409 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/traits.cpp +36 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/traits.h +38 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/unary-ops.cpp +337 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/unary-ops.h +35 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/vec.cpp +613 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cpu/vec.h +1570 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/CMakeLists.txt +269 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/acc.cu +61 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/acc.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/add-id.cu +58 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/add-id.cuh +3 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/allreduce.cu +971 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/allreduce.cuh +29 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/arange.cu +34 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/arange.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/argmax.cu +91 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/argmax.cuh +3 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/argsort.cu +266 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/argsort.cuh +19 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/binbcast.cu +530 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/binbcast.cuh +12 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/clamp.cu +45 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/clamp.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/col2im-1d.cu +81 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/col2im-1d.cuh +3 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/common.cuh +1641 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/concat.cu +227 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/concat.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/conv-transpose-1d.cu +86 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/conv-transpose-1d.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/conv2d-dw.cu +161 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/conv2d-dw.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/conv2d-transpose.cu +115 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/conv2d-transpose.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/conv2d.cu +166 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/conv2d.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/convert.cu +892 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/convert.cuh +66 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/count-equal.cu +64 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/count-equal.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/cp-async.cuh +57 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/cpy-utils.cuh +217 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/cpy.cu +566 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/cpy.cuh +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/cross-entropy-loss.cu +177 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/cross-entropy-loss.cuh +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/cumsum.cu +307 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/cumsum.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/dequantize.cuh +99 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/diag.cu +77 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/diag.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/diagmask.cu +40 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/diagmask.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/fattn-common.cuh +1270 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/fattn-mma-f16.cuh +2029 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/fattn-tile.cu +61 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/fattn-tile.cuh +1357 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/fattn-vec.cuh +611 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/fattn-wmma-f16.cu +705 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/fattn-wmma-f16.cuh +51 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/fattn.cu +597 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/fattn.cuh +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/fill.cu +37 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/fill.cuh +3 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/fwht.cu +101 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/fwht.cuh +4 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/gated_delta_net.cu +312 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/gated_delta_net.cuh +4 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/getrows.cu +308 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/getrows.cuh +15 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/ggml-cuda.cu +5721 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/gla.cu +93 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/gla.cuh +3 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/im2col.cu +267 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/im2col.cuh +6 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/mean.cu +77 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/mean.cuh +3 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/mma.cuh +1456 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/mmf.cu +191 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/mmf.cuh +908 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/mmid.cu +164 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/mmid.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/mmq.cu +372 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/mmq.cuh +4176 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/mmvf.cu +869 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/mmvf.cuh +14 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/mmvq.cu +1252 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/mmvq.cuh +18 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/norm.cu +698 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/norm.cuh +18 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/opt-step-adamw.cu +78 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/opt-step-adamw.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/opt-step-sgd.cu +49 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/opt-step-sgd.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/out-prod.cu +84 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/out-prod.cuh +3 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/pad.cu +106 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/pad.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/pad_reflect_1d.cu +91 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/pad_reflect_1d.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/pool2d.cu +94 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/pool2d.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/quantize.cu +450 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/quantize.cuh +41 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/reduce_rows.cuh +43 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/roll.cu +67 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/roll.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/rope.cu +672 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/rope.cuh +9 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/scale.cu +37 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/scale.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/set-rows.cu +338 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/set-rows.cuh +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/set.cu +39 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/set.cuh +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/snake.cu +72 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/snake.cuh +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/softcap.cu +37 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/softcap.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/softmax.cu +472 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/softmax.cuh +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/solve_tri.cu +275 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/solve_tri.cuh +3 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/ssm-conv.cu +206 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/ssm-conv.cuh +3 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/ssm-scan.cu +364 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/ssm-scan.cuh +3 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/sum.cu +41 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/sum.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/sumrows.cu +47 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/sumrows.cuh +4 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_1-ncols2_16.cu +6 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_1-ncols2_32.cu +6 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_1-ncols2_8.cu +12 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_16-ncols2_1.cu +10 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_16-ncols2_2.cu +10 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_16-ncols2_4.cu +12 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_2-ncols2_16.cu +6 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_2-ncols2_32.cu +6 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_2-ncols2_4.cu +12 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_2-ncols2_8.cu +12 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_32-ncols2_1.cu +10 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_32-ncols2_2.cu +10 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_4-ncols2_16.cu +6 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_4-ncols2_2.cu +10 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_4-ncols2_4.cu +12 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_4-ncols2_8.cu +12 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_64-ncols2_1.cu +10 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_8-ncols2_1.cu +10 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_8-ncols2_2.cu +10 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_8-ncols2_4.cu +12 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_8-ncols2_8.cu +12 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq112-dv112.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq128-dv128.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq192-dv128.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq256-dv256.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq320-dv256.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq40-dv40.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq512-dv512.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq576-dv512.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq64-dv64.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq72-dv72.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq80-dv80.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-tile-instance-dkq96-dv96.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-bf16.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-f16.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-q4_0.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-q4_1.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-q5_0.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-q5_1.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-bf16-q8_0.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-bf16.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-f16.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-q4_0.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-q4_1.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-q5_0.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-q5_1.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-f16-q8_0.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-bf16.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-f16.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-q4_0.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-q4_1.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-q5_0.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-q5_1.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_0-q8_0.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-bf16.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-f16.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-q4_0.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-q4_1.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-q5_0.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-q5_1.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q4_1-q8_0.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-bf16.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-f16.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-q4_0.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-q4_1.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-q5_0.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-q5_1.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_0-q8_0.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-bf16.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-f16.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-q4_0.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-q4_1.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-q5_0.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-q5_1.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q5_1-q8_0.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-bf16.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-f16.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-q4_0.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-q4_1.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-q5_0.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-q5_1.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/fattn-vec-instance-q8_0-q8_0.cu +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/generate_cu_files.py +110 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_1.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_10.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_11.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_12.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_13.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_14.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_15.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_16.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_2.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_3.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_4.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_5.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_6.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_7.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_8.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmf-instance-ncols_9.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmq-instance-iq1_s.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmq-instance-iq2_s.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmq-instance-iq2_xs.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmq-instance-iq2_xxs.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmq-instance-iq3_s.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmq-instance-iq3_xxs.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmq-instance-iq4_nl.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmq-instance-iq4_xs.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmq-instance-mxfp4.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmq-instance-nvfp4.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmq-instance-q1_0.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmq-instance-q2_k.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmq-instance-q3_k.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmq-instance-q4_0.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmq-instance-q4_1.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmq-instance-q4_k.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmq-instance-q5_0.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmq-instance-q5_1.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmq-instance-q5_k.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmq-instance-q6_k.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/template-instances/mmq-instance-q8_0.cu +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/top-k.cu +96 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/top-k.cuh +3 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/topk-moe.cu +418 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/topk-moe.cuh +27 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/tri.cu +136 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/tri.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/tsembd.cu +47 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/tsembd.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/unary.cu +646 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/unary.cuh +114 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/upscale.cu +293 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/upscale.cuh +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/vecdotq.cuh +1317 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/vendors/cuda.h +28 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/vendors/hip.h +304 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/vendors/musa.h +150 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/wkv.cu +199 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-cuda/wkv.cuh +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/CMakeLists.txt +118 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/ggml-hexagon.cpp +4102 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/CMakeLists.txt +84 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/act-ops.c +782 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/argsort-ops.c +294 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/binary-ops.c +872 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/cmake-toolchain.cmake +157 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/concat-ops.c +277 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/cpy-ops.c +295 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/cumsum-ops.c +270 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/diag-ops.c +216 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/fill-ops.c +123 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/flash-attn-ops.c +745 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/gated-delta-net-ops.c +1148 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/get-rows-ops.c +218 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hex-dma.c +63 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hex-dma.h +379 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hex-dump.h +86 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hex-fastdiv.h +37 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hex-profile.h +64 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hex-utils.h +110 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hmx-flash-attn-ops.c +1838 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hmx-matmul-ops.c +2080 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hmx-ops.c +6 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hmx-ops.h +88 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hmx-queue.c +160 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hmx-queue.h +136 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hmx-utils.h +200 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/htp-ctx.h +120 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/htp-ops.h +215 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/htp_iface.idl +22 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hvx-arith.h +443 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hvx-base.h +308 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hvx-copy.h +262 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hvx-div.h +291 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hvx-dump.h +129 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hvx-exp.h +216 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hvx-flash-attn.h +47 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hvx-floor.h +100 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hvx-inverse.h +210 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hvx-log.h +65 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hvx-pow.h +42 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hvx-reduce.h +296 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hvx-repl.h +74 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hvx-scale.h +133 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hvx-sigmoid.h +142 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hvx-sin-cos.h +90 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hvx-sqrt.h +126 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hvx-types.h +36 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/hvx-utils.h +23 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/main.c +945 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/matmul-ops.c +5004 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/pad-ops.c +547 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/repeat-ops.c +148 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/rope-ops.c +693 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/set-rows-ops.c +190 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/softmax-ops.c +407 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/solve-tri-ops.c +267 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/ssm-conv.c +432 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/sum-rows-ops.c +128 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/unary-ops.c +1056 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/vtcm-utils.h +16 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/worker-pool.c +293 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp/worker-pool.h +57 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp-drv.cpp +418 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp-drv.h +121 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/htp-opnode.h +272 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/libdl.h +79 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hexagon/libggml-htp.inf +40 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-hip/CMakeLists.txt +157 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-impl.h +783 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-metal/CMakeLists.txt +124 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-metal/ggml-metal-common.cpp +457 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-metal/ggml-metal-common.h +52 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-metal/ggml-metal-context.h +41 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-metal/ggml-metal-context.m +739 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-metal/ggml-metal-device.cpp +2086 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-metal/ggml-metal-device.h +323 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-metal/ggml-metal-device.m +1900 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-metal/ggml-metal-impl.h +1175 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-metal/ggml-metal-ops.cpp +4633 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-metal/ggml-metal-ops.h +97 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-metal/ggml-metal.cpp +950 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-metal/ggml-metal.metal +10754 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-musa/CMakeLists.txt +124 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-musa/mudnn.cu +112 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-musa/mudnn.cuh +12 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/CMakeLists.txt +206 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/ggml-opencl.cpp +18931 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/add.cl +190 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/add_id.cl +42 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/argsort.cl +86 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/clamp.cl +20 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/concat.cl +118 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/conv2d.cl +185 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/conv2d_f16_f32.cl +176 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/cpy.cl +288 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/cumsum.cl +139 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/cvt.cl +2176 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/diag.cl +27 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/diag_mask_inf.cl +58 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/div.cl +138 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/embed_kernel.py +26 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/exp.cl +125 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/expm1.cl +113 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/fill.cl +17 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/flash_attn_f16.cl +370 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/flash_attn_f32.cl +371 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/flash_attn_f32_f16.cl +373 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gated_delta_net.cl +249 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gelu.cl +89 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemm_moe_mxfp4_f32.cl +162 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemm_moe_mxfp4_f32_ns.cl +306 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemm_moe_q4_0_f32_ns.cl +256 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemm_moe_q4_1_f32_ns.cl +258 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemm_moe_q4_k_f32_ns.cl +283 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemm_moe_q5_0_f32_ns.cl +260 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemm_moe_q5_1_f32_ns.cl +262 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemm_moe_q5_k_f32_ns.cl +288 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemm_moe_q6_k_f32_ns.cl +267 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemm_noshuffle_iq4_nl_f32.cl +150 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q4_0_f32.cl +139 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q4_1_f32.cl +132 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q4_k_f32.cl +172 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q5_0_f32.cl +131 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q5_1_f32.cl +134 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q5_k_f32.cl +176 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q6_k_f32.cl +140 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemm_noshuffle_q8_0_f32.cl +129 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemm_xmem_f16_f32_os8.cl +233 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemv_moe_mxfp4_f32.cl +156 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemv_moe_mxfp4_f32_ns.cl +165 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemv_moe_q4_0_f32_ns.cl +120 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemv_moe_q4_1_f32_ns.cl +123 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemv_moe_q4_k_f32_ns.cl +155 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemv_moe_q5_0_f32_ns.cl +123 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemv_moe_q5_1_f32_ns.cl +125 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemv_moe_q5_k_f32_ns.cl +160 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemv_moe_q6_k_f32_ns.cl +141 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemv_noshuffle_iq4_nl_f32.cl +302 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q4_0_f32.cl +274 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q4_0_f32_spec.cl +268 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q4_1_f32.cl +283 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q4_k_f32.cl +318 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q5_0_f32.cl +291 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q5_1_f32.cl +294 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q5_k_f32.cl +326 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q6_k_f32.cl +293 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/gemv_noshuffle_q8_0_f32.cl +195 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/get_rows.cl +193 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/glu.cl +378 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/group_norm.cl +121 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/im2col_f16.cl +57 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/im2col_f32.cl +57 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/l2_norm.cl +71 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mean.cl +140 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/moe_reorder_b.cl +30 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/moe_sort_by_expert.cl +82 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul.cl +152 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mat_f16_f32.cl +130 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mm_f16_f32_kq_kqv.cl +273 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mm_f16_f32_l4_lm.cl +146 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mm_f32_f32_l4_lm.cl +147 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mm_iq4_nl_f32_l4_lm.cl +171 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mm_q4_0_f32_l4_lm.cl +163 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mm_q4_1_f32_l4_lm.cl +165 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mm_q4_k_f32_l4_lm.cl +179 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mm_q5_0_f32_l4_lm.cl +173 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mm_q5_1_f32_l4_lm.cl +175 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mm_q5_k_f32_l4_lm.cl +192 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mm_q6_k_f32_l4_lm.cl +158 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mm_q8_0_f32_l4_lm.cl +154 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_f16_f16.cl +118 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_f16_f32.cl +118 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_f16_f32_1row.cl +94 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_f16_f32_l4.cl +380 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_f32_f32.cl +118 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_id_mxfp4_f32.cl +189 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_id_mxfp4_f32_flat.cl +176 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_id_q4_0_f32_8x_flat.cl +283 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_id_q8_0_f32.cl +140 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_id_q8_0_f32_flat.cl +222 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_iq4_nl_f32.cl +164 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_iq4_nl_f32_flat.cl +202 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_mxfp4_f32.cl +144 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_mxfp4_f32_flat.cl +167 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32.cl +192 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32_1d_16x_flat.cl +307 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32_1d_8x_flat.cl +265 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32_8x_flat.cl +272 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32_v.cl +254 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_q4_1_f32.cl +219 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_q4_1_f32_flat.cl +229 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_q4_k_f32.cl +180 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_q4_k_f32_flat.cl +196 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_q5_0_f32.cl +241 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_q5_0_f32_flat.cl +243 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_q5_1_f32.cl +243 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_q5_1_f32_flat.cl +247 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_q5_k_f32.cl +187 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_q5_k_f32_flat.cl +203 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_q6_k_f32.cl +194 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_q6_k_f32_flat.cl +178 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_q8_0_f32.cl +125 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/mul_mv_q8_0_f32_flat.cl +202 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/neg.cl +125 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/norm.cl +161 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/pad.cl +39 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/relu.cl +16 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/repeat.cl +38 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/rms_norm.cl +190 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/rope.cl +747 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/scale.cl +27 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/set_rows.cl +208 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/sigmoid.cl +29 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/silu.cl +30 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/softmax_4_f16.cl +108 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/softmax_4_f32.cl +108 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/softmax_f16.cl +107 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/softmax_f32.cl +107 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/softplus.cl +116 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/solve_tri.cl +51 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/sqr.cl +53 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/sqrt.cl +53 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/ssm_conv.cl +77 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/sub.cl +138 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/sum_rows.cl +140 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/tanh.cl +109 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/transpose.cl +143 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/tri.cl +32 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/tsembd.cl +48 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opencl/kernels/upscale.cl +120 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/.clang-format +149 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/CMakeLists.txt +20 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/ggml-decoder.cpp +1651 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/ggml-decoder.h +347 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/ggml-openvino-extra.cpp +434 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/ggml-openvino-extra.h +203 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/ggml-openvino.cpp +1376 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/ggml-quants.cpp +1022 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/ggml-quants.h +159 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/decoder.h +114 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/frontend.cpp +27 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/frontend.h +23 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/input_model.cpp +17 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/input_model.h +29 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/node_context.h +169 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/add_id.cpp +62 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/argsort.cpp +47 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/clamp.cpp +33 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/concat.cpp +48 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/cont.cpp +40 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/cpy.cpp +34 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/div.cpp +146 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/flash_attn_ext.cpp +177 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/gated_delta_net.cpp +282 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/gated_delta_net.hpp +65 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/get_rows.cpp +62 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/glu_geglu.cpp +75 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/glu_swiglu.cpp +65 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/im2col.cpp +120 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/l2_norm.cpp +44 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/mul_mat_id.cpp +108 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/mulmat.cpp +100 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/norm.cpp +58 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/pad.cpp +95 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/permute.cpp +147 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/repeat.cpp +74 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/reshape.cpp +90 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/rms_norm.cpp +46 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/rope.cpp +245 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/scale.cpp +41 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/set_rows.cpp +76 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/softmax.cpp +106 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/ssm_conv.cpp +59 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/sum_rows.cpp +27 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/transpose.cpp +54 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/unary_silu.cpp +27 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/unary_softplus.cpp +38 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op/view.cpp +118 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op_table.cpp +64 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/op_table.h +52 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/pass/fuse_to_sdpa.cpp +60 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/pass/fuse_to_sdpa.h +17 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/pass/mark_decompression_convert_constant_folding.h +29 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/pass/squeeze_matmul.cpp +58 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/pass/squeeze_matmul.h +17 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/rt_info/weightless_caching_attributes.hpp +41 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/translate_session.cpp +320 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/translate_session.h +29 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/utils.cpp +802 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/openvino/utils.h +88 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/utils.cpp +1169 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-openvino/utils.h +146 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-opt.cpp +1094 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-quants.c +5591 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-quants.h +112 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-rpc/CMakeLists.txt +33 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-rpc/ggml-rpc.cpp +1974 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-rpc/transport.cpp +683 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-rpc/transport.h +34 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/CMakeLists.txt +207 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/add-id.cpp +81 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/add-id.hpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/backend.hpp +49 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/binbcast.cpp +353 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/binbcast.hpp +39 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/common.cpp +153 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/common.hpp +1025 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/concat.cpp +222 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/concat.hpp +20 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/conv.cpp +101 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/conv.hpp +20 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/conv2d-dw.cpp +158 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/conv2d-dw.hpp +10 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/conv2d-transpose.cpp +125 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/conv2d-transpose.hpp +10 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/conv2d.cpp +150 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/conv2d.hpp +10 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/conv3d.cpp +218 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/conv3d.hpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/convert.cpp +852 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/convert.hpp +64 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/count-equal.cpp +79 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/count-equal.hpp +9 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/cpy.cpp +602 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/cpy.hpp +504 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/cumsum.cpp +148 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/cumsum.hpp +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/dequantize.hpp +1519 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/diag.cpp +67 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/diag.hpp +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/dmmv.cpp +1912 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/dmmv.hpp +27 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/dpct/helper.hpp +3782 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/element_wise.cpp +1098 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/element_wise.hpp +96 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/fattn-buffers.cpp +56 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/fattn-buffers.hpp +63 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/fattn-common.hpp +1181 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/fattn-tile.cpp +59 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/fattn-tile.hpp +1246 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/fattn-vec.hpp +674 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/fattn.cpp +227 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/fattn.hpp +22 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/fill.cpp +55 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/fill.hpp +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/gated_delta_net.cpp +347 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/gated_delta_net.hpp +9 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/gemm.hpp +93 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/getrows.cpp +291 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/getrows.hpp +20 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/ggml-sycl.cpp +5954 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/gla.cpp +106 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/gla.hpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/im2col.cpp +400 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/im2col.hpp +23 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/mmq.cpp +3030 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/mmq.hpp +33 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/mmvq.cpp +2659 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/mmvq.hpp +60 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/norm.cpp +656 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/norm.hpp +28 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/outprod.cpp +83 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/outprod.hpp +10 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/pad.cpp +97 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/pad.hpp +24 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/pad_reflect_1d.cpp +100 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/pad_reflect_1d.hpp +10 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/pool.cpp +185 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/pool.hpp +22 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/presets.hpp +80 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/quantize.hpp +133 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/quants.hpp +181 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/repeat_back.cpp +76 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/repeat_back.hpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/roll.cpp +122 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/roll.hpp +20 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/rope.cpp +641 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/rope.hpp +26 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/set.cpp +73 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/set.hpp +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/set_rows.cpp +248 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/set_rows.hpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/softmax.cpp +425 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/softmax.hpp +24 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/solve_tri.cpp +172 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/solve_tri.hpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/ssm_conv.cpp +132 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/ssm_conv.hpp +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/ssm_scan.cpp +156 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/ssm_scan.hpp +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/sycl_hw.cpp +67 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/sycl_hw.hpp +38 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq112-dv112.cpp +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq128-dv128.cpp +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq256-dv256.cpp +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq40-dv40.cpp +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq512-dv512.cpp +6 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq576-dv512.cpp +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq64-dv64.cpp +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq72-dv72.cpp +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq80-dv80.cpp +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq96-dv96.cpp +5 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-f16.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q4_0.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q4_1.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q5_0.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q5_1.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q8_0.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-f16.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q4_0.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q4_1.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q5_0.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q5_1.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q8_0.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-f16.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q4_0.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q4_1.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q5_0.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q5_1.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q8_0.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-f16.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q4_0.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q4_1.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q5_0.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q5_1.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q8_0.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-f16.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q4_0.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q4_1.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q5_0.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q5_1.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q8_0.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-f16.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q4_0.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q4_1.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q5_0.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q5_1.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q8_0.cpp +8 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/tsembd.cpp +73 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/tsembd.hpp +20 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/type.hpp +112 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/upscale.cpp +410 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/upscale.hpp +9 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/vecdotq.hpp +1571 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/wkv.cpp +293 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-sycl/wkv.hpp +10 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-threading.cpp +12 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-threading.h +14 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/CMakeLists.txt +70 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/apir_cs_ggml-rpc-front.cpp +87 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/backend/CMakeLists.txt +21 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/backend/apir_cs_ggml-rpc-back.cpp +115 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/backend/backend-convert.h +13 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/backend/backend-dispatched-backend.cpp +102 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/backend/backend-dispatched-buffer-type.cpp +105 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/backend/backend-dispatched-buffer.cpp +179 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/backend/backend-dispatched-device.cpp +148 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/backend/backend-dispatched.cpp +51 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/backend/backend-dispatched.gen.h +73 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/backend/backend-dispatched.h +27 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/backend/backend-virgl-apir.h +32 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/backend/backend.cpp +144 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/backend/shared/api_remoting.h +95 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/backend/shared/apir_backend.gen.h +94 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/backend/shared/apir_backend.h +50 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/backend/shared/apir_cs.h +378 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/backend/shared/apir_cs_ggml.h +232 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/backend/shared/apir_cs_rpc.h +58 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/ggml-backend-buffer-type.cpp +81 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/ggml-backend-buffer.cpp +123 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/ggml-backend-device.cpp +160 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/ggml-backend-reg.cpp +213 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/ggml-backend.cpp +71 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/ggml-remoting.h +71 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/ggmlremoting_functions.yaml +166 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/include/apir_hw.h +9 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/regenerate_remoting.py +333 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/virtgpu-apir.h +15 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/virtgpu-forward-backend.cpp +58 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/virtgpu-forward-buffer-type.cpp +110 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/virtgpu-forward-buffer.cpp +173 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/virtgpu-forward-device.cpp +192 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/virtgpu-forward-impl.h +36 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/virtgpu-forward.gen.h +53 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/virtgpu-shm.cpp +99 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/virtgpu-shm.h +23 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/virtgpu-utils.cpp +179 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/virtgpu-utils.h +86 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/virtgpu.cpp +545 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-virtgpu/virtgpu.h +115 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/CMakeLists.txt +231 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/cmake/host-toolchain.cmake.in +15 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/ggml-vulkan.cpp +18393 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/CMakeLists.txt +35 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/acc.comp +37 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/add.comp +69 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/add1.comp +28 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/add_id.comp +42 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/arange.comp +20 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/argmax.comp +60 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/argsort.comp +86 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/argsort_large.comp +114 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/clamp.comp +17 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/col2im_1d.comp +61 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/concat.comp +41 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/contig_copy.comp +53 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/conv2d_dw.comp +105 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/conv2d_mm.comp +480 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/conv_transpose_1d.comp +98 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/copy.comp +25 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/copy_from_quant.comp +51 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/copy_to_quant.comp +320 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/copy_transpose.comp +67 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/cos.comp +17 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/count_equal.comp +31 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/count_experts.comp +51 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/cumsum.comp +83 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/cumsum_multipass1.comp +60 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/cumsum_multipass2.comp +66 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_f32.comp +20 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_funcs.glsl +692 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_funcs_cm2.glsl +1376 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_head.glsl +13 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq1_m.comp +42 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq1_s.comp +35 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq2_s.comp +44 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq2_xs.comp +43 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq2_xxs.comp +49 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq3_s.comp +40 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq3_xxs.comp +51 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq4_nl.comp +32 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq4_xs.comp +34 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_mxfp4.comp +32 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_nvfp4.comp +32 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q1_0.comp +29 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q2_k.comp +34 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q3_k.comp +42 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q4_0.comp +30 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q4_1.comp +32 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q4_k.comp +68 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q5_0.comp +34 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q5_1.comp +35 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q5_k.comp +70 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q6_k.comp +33 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q8_0.comp +31 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/diag.comp +28 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/diag_mask_inf.comp +34 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/div.comp +27 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/dot_product_funcs.glsl +27 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/feature-tests/bfloat16.comp +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/feature-tests/coopmat.comp +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/feature-tests/coopmat2.comp +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/feature-tests/coopmat2_decode_vector.comp +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/feature-tests/integer_dot.comp +7 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/fill.comp +19 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn.comp +757 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_base.glsl +265 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_cm1.comp +644 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_cm2.comp +481 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_dequant.glsl +131 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_mask_opt.comp +162 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_mmq_funcs.glsl +203 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_split_k_reduce.comp +121 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/fwht.comp +115 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/gated_delta_net.comp +189 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/geglu.comp +13 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/geglu_erf.comp +27 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/geglu_quick.comp +11 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/generic_binary_head.glsl +65 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/generic_head.glsl +11 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/generic_unary_head.glsl +85 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/get_rows.comp +42 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/get_rows_quant.comp +51 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/glu_head.glsl +47 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/glu_main.glsl +35 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/group_norm.comp +66 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/im2col.comp +138 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/im2col_3d.comp +124 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/l2_norm.comp +44 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/leaky_relu.comp +22 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/log.comp +17 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul.comp +27 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_split_k_reduce.comp +48 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec.comp +264 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_base.glsl +230 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iface.glsl +35 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq1_m.comp +132 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq1_s.comp +95 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq2_s.comp +90 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq2_xs.comp +105 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq2_xxs.comp +87 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq3_s.comp +90 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq3_xxs.comp +88 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_nc.comp +124 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_p021.comp +156 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q2_k.comp +128 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q3_k.comp +132 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q4_k.comp +134 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q5_k.comp +165 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q6_k.comp +130 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vecq.comp +144 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vecq_funcs.glsl +527 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mm.comp +458 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mm_cm2.comp +657 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mm_funcs.glsl +600 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mm_id_funcs.glsl +74 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq.comp +311 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq_funcs.glsl +454 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq_shmem_types.glsl +93 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/multi_add.comp +194 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/norm.comp +44 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/opt_step_adamw.comp +42 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/opt_step_sgd.comp +22 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/pad.comp +64 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/pool2d.comp +74 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/quantize_q8_1.comp +127 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/reglu.comp +9 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/repeat.comp +26 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/repeat_back.comp +37 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/rms_norm.comp +150 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/rms_norm_back.comp +55 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/rms_norm_partials.comp +65 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/roll.comp +46 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/rope_funcs.glsl +210 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/rope_head.glsl +19 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/rope_multi.comp +17 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/rope_neox.comp +17 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/rope_norm.comp +17 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/rope_params.glsl +34 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/rope_vision.comp +17 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/scale.comp +24 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/silu_back.comp +26 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/sin.comp +17 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/snake.comp +49 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/soft_max.comp +195 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/soft_max_back.comp +54 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/soft_max_large1.comp +62 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/soft_max_large2.comp +79 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/soft_max_large3.comp +65 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/soft_max_large_common.glsl +53 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/solve_tri.comp +81 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/sqrt.comp +17 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/square.comp +17 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/ssm_conv.comp +60 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/ssm_scan.comp +124 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/sub.comp +29 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/sum_rows.comp +47 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/sum_rows.glsl +25 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/swiglu.comp +9 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/swiglu_oai.comp +14 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/timestep_embedding.comp +42 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/topk_argsort.comp +118 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/topk_moe.comp +213 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/topk_nary_search.comp +246 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/tri.comp +42 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/types.glsl +1861 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/unary.comp +144 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/upscale.comp +178 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/utils.glsl +25 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/vulkan-shaders-gen.cpp +1257 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/wkv6.comp +87 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-vulkan/vulkan-shaders/wkv7.comp +91 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/CMakeLists.txt +83 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/ggml-webgpu-shader-lib.hpp +3293 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/ggml-webgpu.cpp +4583 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/pre_wgsl.hpp +808 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/add_id.wgsl +64 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/argmax.wgsl +72 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/argsort.wgsl +106 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/argsort_merge.wgsl +134 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/binary.wgsl +142 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/common_decls.tmpl +904 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/concat.wgsl +93 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/conv2d.wgsl +165 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/cpy.wgsl +82 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/cumsum.wgsl +66 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/embed_wgsl.py +89 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/flash_attn.wgsl +559 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/flash_attn_quant_staging.tmpl +124 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/flash_attn_tile.wgsl +397 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/flash_attn_vec_blk.wgsl +101 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/flash_attn_vec_reduce.wgsl +84 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/flash_attn_vec_split.wgsl +619 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/gated_delta_net.wgsl +149 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/get_rows.wgsl +773 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/glu.wgsl +155 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/im2col.wgsl +101 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/memset.wgsl +40 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_decls.tmpl +1004 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_id.wgsl +195 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_id_gather.wgsl +52 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_id_vec.wgsl +154 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_reg_tile.wgsl +149 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_subgroup_matrix.wgsl +200 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_vec.wgsl +151 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_vec_acc.tmpl +1432 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/mul_mat_vec_q_acc.tmpl +303 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/pad.wgsl +86 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/quant_inner_loops.tmpl +21 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/quantize_q8.wgsl +173 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/repeat.wgsl +67 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/rms_norm_mul.wgsl +152 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/rope.wgsl +224 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/row_norm.wgsl +153 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/scale.wgsl +65 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/set.wgsl +109 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/set_rows.wgsl +108 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/set_rows_quant.wgsl +224 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/soft_max.wgsl +245 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/solve_tri.wgsl +121 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/ssm_conv.wgsl +65 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/ssm_scan.wgsl +193 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/sum_rows.wgsl +55 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/unary.wgsl +213 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-webgpu/wgsl-shaders/upscale.wgsl +240 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-zdnn/.gitignore +1 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-zdnn/CMakeLists.txt +36 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-zdnn/common.hpp +59 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-zdnn/ggml-zdnn.cpp +637 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-zdnn/mmf.cpp +80 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-zdnn/mmf.hpp +12 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-zdnn/utils.cpp +79 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-zdnn/utils.hpp +19 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-zendnn/CMakeLists.txt +91 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml-zendnn/ggml-zendnn.cpp +703 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml.c +7818 -0
- transcribe_cpp_native-0.0.4/ggml/src/ggml.cpp +26 -0
- transcribe_cpp_native-0.0.4/ggml/src/gguf.cpp +1688 -0
- transcribe_cpp_native-0.0.4/ggml/tests/CMakeLists.txt +356 -0
- transcribe_cpp_native-0.0.4/ggml/tests/test-arange.cpp +100 -0
- transcribe_cpp_native-0.0.4/ggml/tests/test-backend-ops.cpp +10035 -0
- transcribe_cpp_native-0.0.4/ggml/tests/test-cont.c +170 -0
- transcribe_cpp_native-0.0.4/ggml/tests/test-conv-transpose-1d.cpp +691 -0
- transcribe_cpp_native-0.0.4/ggml/tests/test-conv-transpose.c +248 -0
- transcribe_cpp_native-0.0.4/ggml/tests/test-conv1d-dw-c1.cpp +243 -0
- transcribe_cpp_native-0.0.4/ggml/tests/test-conv1d-dw-c2.cpp +243 -0
- transcribe_cpp_native-0.0.4/ggml/tests/test-conv1d.cpp +289 -0
- transcribe_cpp_native-0.0.4/ggml/tests/test-conv2d-dw.cpp +153 -0
- transcribe_cpp_native-0.0.4/ggml/tests/test-conv2d.cpp +391 -0
- transcribe_cpp_native-0.0.4/ggml/tests/test-customop.c +300 -0
- transcribe_cpp_native-0.0.4/ggml/tests/test-dup.c +111 -0
- transcribe_cpp_native-0.0.4/ggml/tests/test-interpolate.cpp +166 -0
- transcribe_cpp_native-0.0.4/ggml/tests/test-opt.cpp +1003 -0
- transcribe_cpp_native-0.0.4/ggml/tests/test-pad-reflect-1d.cpp +213 -0
- transcribe_cpp_native-0.0.4/ggml/tests/test-pool.c +274 -0
- transcribe_cpp_native-0.0.4/ggml/tests/test-quantize-fns.cpp +196 -0
- transcribe_cpp_native-0.0.4/ggml/tests/test-quantize-perf.cpp +356 -0
- transcribe_cpp_native-0.0.4/ggml/tests/test-rel-pos.c +87 -0
- transcribe_cpp_native-0.0.4/ggml/tests/test-roll.cpp +128 -0
- transcribe_cpp_native-0.0.4/ggml/tests/test-timestep_embedding.cpp +180 -0
- transcribe_cpp_native-0.0.4/include/transcribe/extensions.h +22 -0
- transcribe_cpp_native-0.0.4/include/transcribe/moonshine_streaming.h +63 -0
- transcribe_cpp_native-0.0.4/include/transcribe/parakeet.h +114 -0
- transcribe_cpp_native-0.0.4/include/transcribe/voxtral_realtime.h +80 -0
- transcribe_cpp_native-0.0.4/include/transcribe/whisper.h +220 -0
- transcribe_cpp_native-0.0.4/include/transcribe.abihash +1 -0
- transcribe_cpp_native-0.0.4/include/transcribe.h +2538 -0
- transcribe_cpp_native-0.0.4/pyproject.toml +223 -0
- transcribe_cpp_native-0.0.4/samples/jfk.wav +0 -0
- transcribe_cpp_native-0.0.4/scripts/batch_parity.py +198 -0
- transcribe_cpp_native-0.0.4/scripts/batch_tensor_parity.py +139 -0
- transcribe_cpp_native-0.0.4/scripts/bench/compare.py +344 -0
- transcribe_cpp_native-0.0.4/scripts/bench/run.py +787 -0
- transcribe_cpp_native-0.0.4/scripts/build_canary_qwen_oracle.py +196 -0
- transcribe_cpp_native-0.0.4/scripts/build_gigaam_oracle.py +173 -0
- transcribe_cpp_native-0.0.4/scripts/build_medasr_oracle.py +167 -0
- transcribe_cpp_native-0.0.4/scripts/ci/build_wheel_index.py +133 -0
- transcribe_cpp_native-0.0.4/scripts/ci/build_xcframework.sh +279 -0
- transcribe_cpp_native-0.0.4/scripts/ci/check_lane_mirror.py +205 -0
- transcribe_cpp_native-0.0.4/scripts/ci/co_import_smoke.py +102 -0
- transcribe_cpp_native-0.0.4/scripts/ci/extract_native_bundle.py +121 -0
- transcribe_cpp_native-0.0.4/scripts/ci/link_smoke.c +57 -0
- transcribe_cpp_native-0.0.4/scripts/ci/link_smoke.py +95 -0
- transcribe_cpp_native-0.0.4/scripts/ci/manylinux-vulkan-toolchain.sh +105 -0
- transcribe_cpp_native-0.0.4/scripts/ci/modal_cuda_build.py +335 -0
- transcribe_cpp_native-0.0.4/scripts/ci/package_xcframework.sh +38 -0
- transcribe_cpp_native-0.0.4/scripts/ci/rust_package_audit.py +129 -0
- transcribe_cpp_native-0.0.4/scripts/ci/rust_packed_smoke.py +194 -0
- transcribe_cpp_native-0.0.4/scripts/ci/swift_abihash_check.py +60 -0
- transcribe_cpp_native-0.0.4/scripts/ci/ts_packed_smoke.mjs +44 -0
- transcribe_cpp_native-0.0.4/scripts/ci/vulkan_degradation_check.py +105 -0
- transcribe_cpp_native-0.0.4/scripts/ci/wheel_smoke.py +182 -0
- transcribe_cpp_native-0.0.4/scripts/compare_tensors.py +324 -0
- transcribe_cpp_native-0.0.4/scripts/convert-canary-qwen.py +925 -0
- transcribe_cpp_native-0.0.4/scripts/convert-canary.py +845 -0
- transcribe_cpp_native-0.0.4/scripts/convert-cohere.py +756 -0
- transcribe_cpp_native-0.0.4/scripts/convert-funasr_nano.py +892 -0
- transcribe_cpp_native-0.0.4/scripts/convert-gigaam.py +834 -0
- transcribe_cpp_native-0.0.4/scripts/convert-granite.py +1005 -0
- transcribe_cpp_native-0.0.4/scripts/convert-granite_nar.py +690 -0
- transcribe_cpp_native-0.0.4/scripts/convert-medasr.py +532 -0
- transcribe_cpp_native-0.0.4/scripts/convert-moonshine.py +812 -0
- transcribe_cpp_native-0.0.4/scripts/convert-moonshine_streaming.py +745 -0
- transcribe_cpp_native-0.0.4/scripts/convert-parakeet.py +1709 -0
- transcribe_cpp_native-0.0.4/scripts/convert-qwen3_asr.py +849 -0
- transcribe_cpp_native-0.0.4/scripts/convert-sensevoice.py +713 -0
- transcribe_cpp_native-0.0.4/scripts/convert-voxtral.py +638 -0
- transcribe_cpp_native-0.0.4/scripts/convert-voxtral_realtime.py +603 -0
- transcribe_cpp_native-0.0.4/scripts/convert-whisper.py +827 -0
- transcribe_cpp_native-0.0.4/scripts/dump_reference_canary_nemo.py +697 -0
- transcribe_cpp_native-0.0.4/scripts/dump_reference_canary_qwen_nemo.py +666 -0
- transcribe_cpp_native-0.0.4/scripts/dump_reference_cohere_transformers.py +659 -0
- transcribe_cpp_native-0.0.4/scripts/dump_reference_funasr_nano_funasr.py +475 -0
- transcribe_cpp_native-0.0.4/scripts/dump_reference_gigaam_author.py +368 -0
- transcribe_cpp_native-0.0.4/scripts/dump_reference_granite_nar_transformers.py +433 -0
- transcribe_cpp_native-0.0.4/scripts/dump_reference_granite_transformers.py +574 -0
- transcribe_cpp_native-0.0.4/scripts/dump_reference_medasr_transformers.py +388 -0
- transcribe_cpp_native-0.0.4/scripts/dump_reference_moonshine_streaming_transformers.py +820 -0
- transcribe_cpp_native-0.0.4/scripts/dump_reference_moonshine_transformers.py +754 -0
- transcribe_cpp_native-0.0.4/scripts/dump_reference_parakeet_nemo.py +1660 -0
- transcribe_cpp_native-0.0.4/scripts/dump_reference_qwen3_asr_author.py +566 -0
- transcribe_cpp_native-0.0.4/scripts/dump_reference_sensevoice_funasr.py +406 -0
- transcribe_cpp_native-0.0.4/scripts/dump_reference_voxtral_realtime_transformers.py +623 -0
- transcribe_cpp_native-0.0.4/scripts/dump_reference_voxtral_transformers.py +450 -0
- transcribe_cpp_native-0.0.4/scripts/dump_reference_whisper_transformers.py +761 -0
- transcribe_cpp_native-0.0.4/scripts/envs/canary/pyproject.toml +14 -0
- transcribe_cpp_native-0.0.4/scripts/envs/canary/uv.lock +3394 -0
- transcribe_cpp_native-0.0.4/scripts/envs/canary_qwen/pyproject.toml +17 -0
- transcribe_cpp_native-0.0.4/scripts/envs/canary_qwen/uv.lock +3385 -0
- transcribe_cpp_native-0.0.4/scripts/envs/cohere/pyproject.toml +17 -0
- transcribe_cpp_native-0.0.4/scripts/envs/cohere/uv.lock +1767 -0
- transcribe_cpp_native-0.0.4/scripts/envs/funasr_nano/pyproject.toml +28 -0
- transcribe_cpp_native-0.0.4/scripts/envs/funasr_nano/uv.lock +1806 -0
- transcribe_cpp_native-0.0.4/scripts/envs/gigaam/pyproject.toml +32 -0
- transcribe_cpp_native-0.0.4/scripts/envs/gigaam/uv.lock +1146 -0
- transcribe_cpp_native-0.0.4/scripts/envs/granite/pyproject.toml +20 -0
- transcribe_cpp_native-0.0.4/scripts/envs/granite/uv.lock +1290 -0
- transcribe_cpp_native-0.0.4/scripts/envs/granite_nar/pyproject.toml +24 -0
- transcribe_cpp_native-0.0.4/scripts/envs/granite_nar/uv.lock +1267 -0
- transcribe_cpp_native-0.0.4/scripts/envs/medasr/pyproject.toml +25 -0
- transcribe_cpp_native-0.0.4/scripts/envs/medasr/uv.lock +1289 -0
- transcribe_cpp_native-0.0.4/scripts/envs/moonshine/pyproject.toml +15 -0
- transcribe_cpp_native-0.0.4/scripts/envs/moonshine/uv.lock +1692 -0
- transcribe_cpp_native-0.0.4/scripts/envs/moonshine_streaming/pyproject.toml +15 -0
- transcribe_cpp_native-0.0.4/scripts/envs/moonshine_streaming/uv.lock +1692 -0
- transcribe_cpp_native-0.0.4/scripts/envs/parakeet/pyproject.toml +24 -0
- transcribe_cpp_native-0.0.4/scripts/envs/parakeet/uv.lock +3283 -0
- transcribe_cpp_native-0.0.4/scripts/envs/qwen3_asr/pyproject.toml +18 -0
- transcribe_cpp_native-0.0.4/scripts/envs/qwen3_asr/uv.lock +1860 -0
- transcribe_cpp_native-0.0.4/scripts/envs/sensevoice/pyproject.toml +27 -0
- transcribe_cpp_native-0.0.4/scripts/envs/sensevoice/uv.lock +1747 -0
- transcribe_cpp_native-0.0.4/scripts/envs/voxtral/pyproject.toml +18 -0
- transcribe_cpp_native-0.0.4/scripts/envs/voxtral/uv.lock +1394 -0
- transcribe_cpp_native-0.0.4/scripts/envs/voxtral_realtime/pyproject.toml +18 -0
- transcribe_cpp_native-0.0.4/scripts/envs/voxtral_realtime/uv.lock +1533 -0
- transcribe_cpp_native-0.0.4/scripts/envs/whisper/pyproject.toml +20 -0
- transcribe_cpp_native-0.0.4/scripts/envs/whisper/uv.lock +1692 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/canary-180m-flash.yaml +81 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/canary-1b-flash.yaml +76 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/canary-1b-v2.yaml +101 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/canary-1b.yaml +86 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/canary-qwen-2.5b.yaml +83 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/cohere-transcribe-03-2026.yaml +89 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/fun-asr-mlt-nano-2512.yaml +127 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/fun-asr-nano-2512.yaml +92 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/generate.py +121 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/gigaam-v3-ctc.yaml +72 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/gigaam-v3-e2e-ctc.yaml +72 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/gigaam-v3-e2e-rnnt.yaml +73 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/gigaam-v3-rnnt.yaml +72 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/granite-4.0-1b-speech.yaml +81 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/granite-speech-4.1-2b-nar.yaml +89 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/granite-speech-4.1-2b-plus.yaml +92 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/granite-speech-4.1-2b.yaml +83 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/medasr.yaml +68 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/moonshine-base-ar.yaml +66 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/moonshine-base-ja.yaml +66 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/moonshine-base-ko.yaml +66 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/moonshine-base-uk.yaml +66 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/moonshine-base-vi.yaml +66 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/moonshine-base-zh.yaml +66 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/moonshine-base.yaml +64 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/moonshine-streaming-medium.yaml +68 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/moonshine-streaming-small.yaml +66 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/moonshine-streaming-tiny.yaml +66 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/moonshine-tiny-ar.yaml +66 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/moonshine-tiny-ja.yaml +66 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/moonshine-tiny-ko.yaml +66 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/moonshine-tiny-uk.yaml +66 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/moonshine-tiny-vi.yaml +66 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/moonshine-tiny-zh.yaml +66 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/moonshine-tiny.yaml +61 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/nemotron-3.5-asr-streaming-0.6b.yaml +109 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/nemotron-speech-streaming-en-0.6b.yaml +75 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/parakeet-ctc-0.6b.yaml +66 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/parakeet-ctc-1.1b.yaml +66 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/parakeet-rnnt-0.6b.yaml +66 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/parakeet-rnnt-1.1b.yaml +66 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/parakeet-tdt-0.6b-v2.yaml +73 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/parakeet-tdt-0.6b-v3.yaml +97 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/parakeet-tdt-1.1b.yaml +67 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/parakeet-tdt_ctc-1.1b.yaml +67 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/parakeet-tdt_ctc-110m.yaml +67 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/parakeet-unified-en-0.6b.yaml +66 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/qwen3-asr-0.6b.yaml +105 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/qwen3-asr-1.7b.yaml +108 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/sensevoice-small.yaml +91 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/template.md.j2 +88 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/voxtral-mini-3b-2507.yaml +86 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/voxtral-mini-4b-realtime-2602.yaml +95 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/voxtral-small-24b-2507.yaml +84 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/whisper-base.en.yaml +64 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/whisper-base.yaml +161 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/whisper-large-v2.yaml +161 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/whisper-large-v3-turbo.yaml +158 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/whisper-large-v3.yaml +158 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/whisper-large.yaml +161 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/whisper-medium.en.yaml +64 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/whisper-medium.yaml +161 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/whisper-small.en.yaml +64 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/whisper-small.yaml +161 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/whisper-tiny.en.yaml +64 -0
- transcribe_cpp_native-0.0.4/scripts/hf_cards/whisper-tiny.yaml +161 -0
- transcribe_cpp_native-0.0.4/scripts/intake.py +470 -0
- transcribe_cpp_native-0.0.4/scripts/lib/__init__.py +6 -0
- transcribe_cpp_native-0.0.4/scripts/lib/gguf_common.py +186 -0
- transcribe_cpp_native-0.0.4/scripts/lib/quant_policy.py +66 -0
- transcribe_cpp_native-0.0.4/scripts/lib/ref_dump.py +118 -0
- transcribe_cpp_native-0.0.4/scripts/preflight.py +896 -0
- transcribe_cpp_native-0.0.4/scripts/quant_accuracy.py +362 -0
- transcribe_cpp_native-0.0.4/scripts/quantize-all.py +132 -0
- transcribe_cpp_native-0.0.4/scripts/release/check_registries.py +152 -0
- transcribe_cpp_native-0.0.4/scripts/release/doctor.py +114 -0
- transcribe_cpp_native-0.0.4/scripts/release/prepare.py +213 -0
- transcribe_cpp_native-0.0.4/scripts/sync-ggml.sh +146 -0
- transcribe_cpp_native-0.0.4/scripts/tokenizer-parity-fixture.py +149 -0
- transcribe_cpp_native-0.0.4/scripts/validate.py +926 -0
- transcribe_cpp_native-0.0.4/scripts/validate_buffered_streaming.py +324 -0
- transcribe_cpp_native-0.0.4/scripts/validate_streaming.py +506 -0
- transcribe_cpp_native-0.0.4/scripts/wer/compare.py +106 -0
- transcribe_cpp_native-0.0.4/scripts/wer/ingest.py +428 -0
- transcribe_cpp_native-0.0.4/scripts/wer/remote/README.md +143 -0
- transcribe_cpp_native-0.0.4/scripts/wer/remote/cache_paths.py +71 -0
- transcribe_cpp_native-0.0.4/scripts/wer/remote/dataset_specs.py +192 -0
- transcribe_cpp_native-0.0.4/scripts/wer/remote/fingerprints.py +91 -0
- transcribe_cpp_native-0.0.4/scripts/wer/remote/gpu_config.py +22 -0
- transcribe_cpp_native-0.0.4/scripts/wer/remote/modal_sweep.py +1296 -0
- transcribe_cpp_native-0.0.4/scripts/wer/remote/model_specs.py +39 -0
- transcribe_cpp_native-0.0.4/scripts/wer/remote/output_paths.py +43 -0
- transcribe_cpp_native-0.0.4/scripts/wer/remote/reference_specs.py +64 -0
- transcribe_cpp_native-0.0.4/scripts/wer/remote/subprocess_io.py +36 -0
- transcribe_cpp_native-0.0.4/scripts/wer/remote/workdir.py +47 -0
- transcribe_cpp_native-0.0.4/scripts/wer/run.py +447 -0
- transcribe_cpp_native-0.0.4/scripts/wer/run_reference_canary_nemo.py +196 -0
- transcribe_cpp_native-0.0.4/scripts/wer/run_reference_canary_qwen_nemo.py +208 -0
- transcribe_cpp_native-0.0.4/scripts/wer/run_reference_funasr_nano.py +257 -0
- transcribe_cpp_native-0.0.4/scripts/wer/run_reference_gigaam_author.py +156 -0
- transcribe_cpp_native-0.0.4/scripts/wer/run_reference_granite_nar_transformers.py +181 -0
- transcribe_cpp_native-0.0.4/scripts/wer/run_reference_granite_transformers.py +344 -0
- transcribe_cpp_native-0.0.4/scripts/wer/run_reference_medasr_transformers.py +184 -0
- transcribe_cpp_native-0.0.4/scripts/wer/run_reference_parakeet_buffered_streaming_nemo.py +315 -0
- transcribe_cpp_native-0.0.4/scripts/wer/run_reference_parakeet_nemo.py +314 -0
- transcribe_cpp_native-0.0.4/scripts/wer/run_reference_parakeet_streaming_nemo.py +274 -0
- transcribe_cpp_native-0.0.4/scripts/wer/run_reference_qwen3_asr_author.py +222 -0
- transcribe_cpp_native-0.0.4/scripts/wer/run_reference_sensevoice.py +182 -0
- transcribe_cpp_native-0.0.4/scripts/wer/run_reference_voxtral_realtime_transformers.py +285 -0
- transcribe_cpp_native-0.0.4/scripts/wer/run_reference_voxtral_transformers.py +232 -0
- transcribe_cpp_native-0.0.4/scripts/wer/score.py +277 -0
- transcribe_cpp_native-0.0.4/scripts/wer/setup.sh +36 -0
- transcribe_cpp_native-0.0.4/scripts/wer/subset.py +83 -0
- transcribe_cpp_native-0.0.4/scripts/whisper_long_form_parity.py +289 -0
- transcribe_cpp_native-0.0.4/src/CMakeLists.txt +261 -0
- transcribe_cpp_native-0.0.4/src/arch/canary/canary.h +165 -0
- transcribe_cpp_native-0.0.4/src/arch/canary/capabilities.cpp +35 -0
- transcribe_cpp_native-0.0.4/src/arch/canary/decoder.cpp +882 -0
- transcribe_cpp_native-0.0.4/src/arch/canary/decoder.h +148 -0
- transcribe_cpp_native-0.0.4/src/arch/canary/encoder.cpp +231 -0
- transcribe_cpp_native-0.0.4/src/arch/canary/encoder.h +51 -0
- transcribe_cpp_native-0.0.4/src/arch/canary/model.cpp +1920 -0
- transcribe_cpp_native-0.0.4/src/arch/canary/weights.cpp +470 -0
- transcribe_cpp_native-0.0.4/src/arch/canary/weights.h +271 -0
- transcribe_cpp_native-0.0.4/src/arch/canary_qwen/canary_qwen.h +134 -0
- transcribe_cpp_native-0.0.4/src/arch/canary_qwen/capabilities.cpp +25 -0
- transcribe_cpp_native-0.0.4/src/arch/canary_qwen/decoder.cpp +509 -0
- transcribe_cpp_native-0.0.4/src/arch/canary_qwen/decoder.h +136 -0
- transcribe_cpp_native-0.0.4/src/arch/canary_qwen/encoder.cpp +235 -0
- transcribe_cpp_native-0.0.4/src/arch/canary_qwen/encoder.h +47 -0
- transcribe_cpp_native-0.0.4/src/arch/canary_qwen/model.cpp +1811 -0
- transcribe_cpp_native-0.0.4/src/arch/canary_qwen/weights.cpp +319 -0
- transcribe_cpp_native-0.0.4/src/arch/canary_qwen/weights.h +215 -0
- transcribe_cpp_native-0.0.4/src/arch/cohere/capabilities.cpp +29 -0
- transcribe_cpp_native-0.0.4/src/arch/cohere/cohere.h +204 -0
- transcribe_cpp_native-0.0.4/src/arch/cohere/decoder.cpp +1245 -0
- transcribe_cpp_native-0.0.4/src/arch/cohere/decoder.h +182 -0
- transcribe_cpp_native-0.0.4/src/arch/cohere/encoder.cpp +246 -0
- transcribe_cpp_native-0.0.4/src/arch/cohere/encoder.h +47 -0
- transcribe_cpp_native-0.0.4/src/arch/cohere/model.cpp +2027 -0
- transcribe_cpp_native-0.0.4/src/arch/cohere/weights.cpp +398 -0
- transcribe_cpp_native-0.0.4/src/arch/cohere/weights.h +242 -0
- transcribe_cpp_native-0.0.4/src/arch/funasr_nano/adaptor.cpp +201 -0
- transcribe_cpp_native-0.0.4/src/arch/funasr_nano/adaptor.h +59 -0
- transcribe_cpp_native-0.0.4/src/arch/funasr_nano/capabilities.cpp +34 -0
- transcribe_cpp_native-0.0.4/src/arch/funasr_nano/decoder.cpp +499 -0
- transcribe_cpp_native-0.0.4/src/arch/funasr_nano/decoder.h +136 -0
- transcribe_cpp_native-0.0.4/src/arch/funasr_nano/encoder.cpp +174 -0
- transcribe_cpp_native-0.0.4/src/arch/funasr_nano/encoder.h +53 -0
- transcribe_cpp_native-0.0.4/src/arch/funasr_nano/funasr_nano.h +102 -0
- transcribe_cpp_native-0.0.4/src/arch/funasr_nano/model.cpp +1464 -0
- transcribe_cpp_native-0.0.4/src/arch/funasr_nano/weights.cpp +424 -0
- transcribe_cpp_native-0.0.4/src/arch/funasr_nano/weights.h +227 -0
- transcribe_cpp_native-0.0.4/src/arch/gigaam/capabilities.cpp +33 -0
- transcribe_cpp_native-0.0.4/src/arch/gigaam/decoder.cpp +445 -0
- transcribe_cpp_native-0.0.4/src/arch/gigaam/decoder.h +74 -0
- transcribe_cpp_native-0.0.4/src/arch/gigaam/encoder.cpp +477 -0
- transcribe_cpp_native-0.0.4/src/arch/gigaam/encoder.h +93 -0
- transcribe_cpp_native-0.0.4/src/arch/gigaam/gigaam.h +92 -0
- transcribe_cpp_native-0.0.4/src/arch/gigaam/mel.cpp +172 -0
- transcribe_cpp_native-0.0.4/src/arch/gigaam/mel.h +51 -0
- transcribe_cpp_native-0.0.4/src/arch/gigaam/model.cpp +869 -0
- transcribe_cpp_native-0.0.4/src/arch/gigaam/weights.cpp +308 -0
- transcribe_cpp_native-0.0.4/src/arch/gigaam/weights.h +205 -0
- transcribe_cpp_native-0.0.4/src/arch/granite/capabilities.cpp +36 -0
- transcribe_cpp_native-0.0.4/src/arch/granite/decoder.cpp +985 -0
- transcribe_cpp_native-0.0.4/src/arch/granite/decoder.h +167 -0
- transcribe_cpp_native-0.0.4/src/arch/granite/encoder.cpp +574 -0
- transcribe_cpp_native-0.0.4/src/arch/granite/encoder.h +127 -0
- transcribe_cpp_native-0.0.4/src/arch/granite/granite.h +144 -0
- transcribe_cpp_native-0.0.4/src/arch/granite/model.cpp +1783 -0
- transcribe_cpp_native-0.0.4/src/arch/granite/projector.cpp +349 -0
- transcribe_cpp_native-0.0.4/src/arch/granite/projector.h +71 -0
- transcribe_cpp_native-0.0.4/src/arch/granite/weights.cpp +501 -0
- transcribe_cpp_native-0.0.4/src/arch/granite/weights.h +328 -0
- transcribe_cpp_native-0.0.4/src/arch/granite_nar/capabilities.cpp +22 -0
- transcribe_cpp_native-0.0.4/src/arch/granite_nar/decoder.cpp +311 -0
- transcribe_cpp_native-0.0.4/src/arch/granite_nar/decoder.h +88 -0
- transcribe_cpp_native-0.0.4/src/arch/granite_nar/encoder.cpp +556 -0
- transcribe_cpp_native-0.0.4/src/arch/granite_nar/encoder.h +135 -0
- transcribe_cpp_native-0.0.4/src/arch/granite_nar/granite_nar.h +80 -0
- transcribe_cpp_native-0.0.4/src/arch/granite_nar/model.cpp +871 -0
- transcribe_cpp_native-0.0.4/src/arch/granite_nar/projector.cpp +259 -0
- transcribe_cpp_native-0.0.4/src/arch/granite_nar/projector.h +78 -0
- transcribe_cpp_native-0.0.4/src/arch/granite_nar/weights.cpp +345 -0
- transcribe_cpp_native-0.0.4/src/arch/granite_nar/weights.h +266 -0
- transcribe_cpp_native-0.0.4/src/arch/medasr/capabilities.cpp +37 -0
- transcribe_cpp_native-0.0.4/src/arch/medasr/encoder.cpp +650 -0
- transcribe_cpp_native-0.0.4/src/arch/medasr/encoder.h +81 -0
- transcribe_cpp_native-0.0.4/src/arch/medasr/medasr.h +65 -0
- transcribe_cpp_native-0.0.4/src/arch/medasr/model.cpp +1102 -0
- transcribe_cpp_native-0.0.4/src/arch/medasr/weights.cpp +331 -0
- transcribe_cpp_native-0.0.4/src/arch/medasr/weights.h +179 -0
- transcribe_cpp_native-0.0.4/src/arch/moonshine/capabilities.cpp +28 -0
- transcribe_cpp_native-0.0.4/src/arch/moonshine/decoder.cpp +1062 -0
- transcribe_cpp_native-0.0.4/src/arch/moonshine/decoder.h +155 -0
- transcribe_cpp_native-0.0.4/src/arch/moonshine/encoder.cpp +426 -0
- transcribe_cpp_native-0.0.4/src/arch/moonshine/encoder.h +89 -0
- transcribe_cpp_native-0.0.4/src/arch/moonshine/model.cpp +1202 -0
- transcribe_cpp_native-0.0.4/src/arch/moonshine/moonshine.h +164 -0
- transcribe_cpp_native-0.0.4/src/arch/moonshine/weights.cpp +416 -0
- transcribe_cpp_native-0.0.4/src/arch/moonshine/weights.h +238 -0
- transcribe_cpp_native-0.0.4/src/arch/moonshine_streaming/capabilities.cpp +40 -0
- transcribe_cpp_native-0.0.4/src/arch/moonshine_streaming/decoder.cpp +952 -0
- transcribe_cpp_native-0.0.4/src/arch/moonshine_streaming/decoder.h +162 -0
- transcribe_cpp_native-0.0.4/src/arch/moonshine_streaming/encoder.cpp +431 -0
- transcribe_cpp_native-0.0.4/src/arch/moonshine_streaming/encoder.h +100 -0
- transcribe_cpp_native-0.0.4/src/arch/moonshine_streaming/model.cpp +2328 -0
- transcribe_cpp_native-0.0.4/src/arch/moonshine_streaming/moonshine_streaming.h +227 -0
- transcribe_cpp_native-0.0.4/src/arch/moonshine_streaming/weights.cpp +433 -0
- transcribe_cpp_native-0.0.4/src/arch/moonshine_streaming/weights.h +237 -0
- transcribe_cpp_native-0.0.4/src/arch/parakeet/capabilities.cpp +74 -0
- transcribe_cpp_native-0.0.4/src/arch/parakeet/decoder.cpp +1589 -0
- transcribe_cpp_native-0.0.4/src/arch/parakeet/decoder.h +297 -0
- transcribe_cpp_native-0.0.4/src/arch/parakeet/encoder.cpp +978 -0
- transcribe_cpp_native-0.0.4/src/arch/parakeet/encoder.h +296 -0
- transcribe_cpp_native-0.0.4/src/arch/parakeet/model.cpp +3913 -0
- transcribe_cpp_native-0.0.4/src/arch/parakeet/parakeet.h +427 -0
- transcribe_cpp_native-0.0.4/src/arch/parakeet/weights.cpp +939 -0
- transcribe_cpp_native-0.0.4/src/arch/parakeet/weights.h +488 -0
- transcribe_cpp_native-0.0.4/src/arch/qwen3_asr/capabilities.cpp +40 -0
- transcribe_cpp_native-0.0.4/src/arch/qwen3_asr/decoder.cpp +628 -0
- transcribe_cpp_native-0.0.4/src/arch/qwen3_asr/decoder.h +199 -0
- transcribe_cpp_native-0.0.4/src/arch/qwen3_asr/encoder.cpp +543 -0
- transcribe_cpp_native-0.0.4/src/arch/qwen3_asr/encoder.h +145 -0
- transcribe_cpp_native-0.0.4/src/arch/qwen3_asr/model.cpp +1965 -0
- transcribe_cpp_native-0.0.4/src/arch/qwen3_asr/qwen3_asr.h +139 -0
- transcribe_cpp_native-0.0.4/src/arch/qwen3_asr/weights.cpp +388 -0
- transcribe_cpp_native-0.0.4/src/arch/qwen3_asr/weights.h +218 -0
- transcribe_cpp_native-0.0.4/src/arch/sensevoice/capabilities.cpp +42 -0
- transcribe_cpp_native-0.0.4/src/arch/sensevoice/encoder.cpp +281 -0
- transcribe_cpp_native-0.0.4/src/arch/sensevoice/encoder.h +111 -0
- transcribe_cpp_native-0.0.4/src/arch/sensevoice/model.cpp +922 -0
- transcribe_cpp_native-0.0.4/src/arch/sensevoice/sensevoice.h +67 -0
- transcribe_cpp_native-0.0.4/src/arch/sensevoice/weights.cpp +331 -0
- transcribe_cpp_native-0.0.4/src/arch/sensevoice/weights.h +178 -0
- transcribe_cpp_native-0.0.4/src/arch/voxtral/capabilities.cpp +31 -0
- transcribe_cpp_native-0.0.4/src/arch/voxtral/decoder.cpp +478 -0
- transcribe_cpp_native-0.0.4/src/arch/voxtral/decoder.h +159 -0
- transcribe_cpp_native-0.0.4/src/arch/voxtral/encoder.cpp +393 -0
- transcribe_cpp_native-0.0.4/src/arch/voxtral/encoder.h +67 -0
- transcribe_cpp_native-0.0.4/src/arch/voxtral/model.cpp +1478 -0
- transcribe_cpp_native-0.0.4/src/arch/voxtral/voxtral.h +106 -0
- transcribe_cpp_native-0.0.4/src/arch/voxtral/weights.cpp +302 -0
- transcribe_cpp_native-0.0.4/src/arch/voxtral/weights.h +210 -0
- transcribe_cpp_native-0.0.4/src/arch/voxtral_realtime/capabilities.cpp +32 -0
- transcribe_cpp_native-0.0.4/src/arch/voxtral_realtime/decoder.cpp +473 -0
- transcribe_cpp_native-0.0.4/src/arch/voxtral_realtime/decoder.h +174 -0
- transcribe_cpp_native-0.0.4/src/arch/voxtral_realtime/encoder.cpp +628 -0
- transcribe_cpp_native-0.0.4/src/arch/voxtral_realtime/encoder.h +175 -0
- transcribe_cpp_native-0.0.4/src/arch/voxtral_realtime/model.cpp +2317 -0
- transcribe_cpp_native-0.0.4/src/arch/voxtral_realtime/voxtral_realtime.h +152 -0
- transcribe_cpp_native-0.0.4/src/arch/voxtral_realtime/weights.cpp +276 -0
- transcribe_cpp_native-0.0.4/src/arch/voxtral_realtime/weights.h +202 -0
- transcribe_cpp_native-0.0.4/src/arch/whisper/bin_load.cpp +770 -0
- transcribe_cpp_native-0.0.4/src/arch/whisper/bin_load.h +49 -0
- transcribe_cpp_native-0.0.4/src/arch/whisper/capabilities.cpp +47 -0
- transcribe_cpp_native-0.0.4/src/arch/whisper/decoder.cpp +1272 -0
- transcribe_cpp_native-0.0.4/src/arch/whisper/decoder.h +205 -0
- transcribe_cpp_native-0.0.4/src/arch/whisper/encoder.cpp +340 -0
- transcribe_cpp_native-0.0.4/src/arch/whisper/encoder.h +89 -0
- transcribe_cpp_native-0.0.4/src/arch/whisper/model.cpp +3692 -0
- transcribe_cpp_native-0.0.4/src/arch/whisper/public.cpp +116 -0
- transcribe_cpp_native-0.0.4/src/arch/whisper/weights.cpp +532 -0
- transcribe_cpp_native-0.0.4/src/arch/whisper/weights.h +243 -0
- transcribe_cpp_native-0.0.4/src/arch/whisper/whisper.h +389 -0
- transcribe_cpp_native-0.0.4/src/causal_lm/causal_lm.cpp +1159 -0
- transcribe_cpp_native-0.0.4/src/causal_lm/causal_lm.h +445 -0
- transcribe_cpp_native-0.0.4/src/conformer/conformer.cpp +1265 -0
- transcribe_cpp_native-0.0.4/src/conformer/conformer.h +556 -0
- transcribe_cpp_native-0.0.4/src/granite_conformer/shaw_attn.cpp +172 -0
- transcribe_cpp_native-0.0.4/src/granite_conformer/shaw_attn.h +74 -0
- transcribe_cpp_native-0.0.4/src/sanm/sanm.cpp +279 -0
- transcribe_cpp_native-0.0.4/src/sanm/sanm.h +171 -0
- transcribe_cpp_native-0.0.4/src/transcribe-abi.h +49 -0
- transcribe_cpp_native-0.0.4/src/transcribe-arch.cpp +75 -0
- transcribe_cpp_native-0.0.4/src/transcribe-arch.h +253 -0
- transcribe_cpp_native-0.0.4/src/transcribe-backend.cpp +74 -0
- transcribe_cpp_native-0.0.4/src/transcribe-backend.h +99 -0
- transcribe_cpp_native-0.0.4/src/transcribe-batch-util.cpp +246 -0
- transcribe_cpp_native-0.0.4/src/transcribe-batch-util.h +164 -0
- transcribe_cpp_native-0.0.4/src/transcribe-bin-loader.cpp +469 -0
- transcribe_cpp_native-0.0.4/src/transcribe-bin-loader.h +137 -0
- transcribe_cpp_native-0.0.4/src/transcribe-debug.cpp +399 -0
- transcribe_cpp_native-0.0.4/src/transcribe-debug.h +128 -0
- transcribe_cpp_native-0.0.4/src/transcribe-flash-policy.cpp +25 -0
- transcribe_cpp_native-0.0.4/src/transcribe-flash-policy.h +47 -0
- transcribe_cpp_native-0.0.4/src/transcribe-kaldi-fbank.cpp +301 -0
- transcribe_cpp_native-0.0.4/src/transcribe-kaldi-fbank.h +78 -0
- transcribe_cpp_native-0.0.4/src/transcribe-load-common.cpp +616 -0
- transcribe_cpp_native-0.0.4/src/transcribe-load-common.h +184 -0
- transcribe_cpp_native-0.0.4/src/transcribe-loader.cpp +128 -0
- transcribe_cpp_native-0.0.4/src/transcribe-loader.h +89 -0
- transcribe_cpp_native-0.0.4/src/transcribe-log.h +36 -0
- transcribe_cpp_native-0.0.4/src/transcribe-mel.cpp +963 -0
- transcribe_cpp_native-0.0.4/src/transcribe-mel.h +178 -0
- transcribe_cpp_native-0.0.4/src/transcribe-meta.cpp +412 -0
- transcribe_cpp_native-0.0.4/src/transcribe-meta.h +200 -0
- transcribe_cpp_native-0.0.4/src/transcribe-model.cpp +74 -0
- transcribe_cpp_native-0.0.4/src/transcribe-model.h +199 -0
- transcribe_cpp_native-0.0.4/src/transcribe-session.h +313 -0
- transcribe_cpp_native-0.0.4/src/transcribe-tokenizer.cpp +885 -0
- transcribe_cpp_native-0.0.4/src/transcribe-tokenizer.h +290 -0
- transcribe_cpp_native-0.0.4/src/transcribe-unicode-data.cpp +2341 -0
- transcribe_cpp_native-0.0.4/src/transcribe-unicode.cpp +899 -0
- transcribe_cpp_native-0.0.4/src/transcribe-unicode.h +174 -0
- transcribe_cpp_native-0.0.4/src/transcribe-weights-util.cpp +98 -0
- transcribe_cpp_native-0.0.4/src/transcribe-weights-util.h +94 -0
- transcribe_cpp_native-0.0.4/src/transcribe.cpp +3239 -0
- transcribe_cpp_native-0.0.4/tests/CMakeLists.txt +1033 -0
- transcribe_cpp_native-0.0.4/tests/api_smoke.c +843 -0
- transcribe_cpp_native-0.0.4/tests/backend_classification_unit.cpp +58 -0
- transcribe_cpp_native-0.0.4/tests/backend_init_unit.cpp +295 -0
- transcribe_cpp_native-0.0.4/tests/check_extension_umbrella.cmake +34 -0
- transcribe_cpp_native-0.0.4/tests/cohere_e2e_smoke.cpp +384 -0
- transcribe_cpp_native-0.0.4/tests/cohere_real_smoke.cpp +355 -0
- transcribe_cpp_native-0.0.4/tests/cohere_smoke.cpp +412 -0
- transcribe_cpp_native-0.0.4/tests/conv_pw_promote_unit.cpp +240 -0
- transcribe_cpp_native-0.0.4/tests/debug_dump_unit.cpp +249 -0
- transcribe_cpp_native-0.0.4/tests/decoder_smoke.cpp +487 -0
- transcribe_cpp_native-0.0.4/tests/fixtures/make_gguf_fixtures.py +1586 -0
- transcribe_cpp_native-0.0.4/tests/fixtures/qwen3_asr_bpe_parity.inc +88 -0
- transcribe_cpp_native-0.0.4/tests/golden/batch/medasr.cpu.json +39 -0
- transcribe_cpp_native-0.0.4/tests/golden/batch/nemotron-3.5-asr-streaming-0.6b.cpu.json +15 -0
- transcribe_cpp_native-0.0.4/tests/golden/batch/parakeet-tdt-0.6b-v2.cpu.json +14 -0
- transcribe_cpp_native-0.0.4/tests/golden/batch/sensevoice-small.cpu.json +11 -0
- transcribe_cpp_native-0.0.4/tests/golden/batch/voxtral-mini-3b-2507.cpu.json +10 -0
- transcribe_cpp_native-0.0.4/tests/golden/batch/voxtral-mini-4b-realtime-2602.cpu.json +11 -0
- transcribe_cpp_native-0.0.4/tests/golden/canary/canary-180m-flash.manifest.json +63 -0
- transcribe_cpp_native-0.0.4/tests/golden/canary/canary-1b-flash.manifest.json +67 -0
- transcribe_cpp_native-0.0.4/tests/golden/canary/canary-1b-v2.manifest.json +84 -0
- transcribe_cpp_native-0.0.4/tests/golden/canary/canary-1b.manifest.json +53 -0
- transcribe_cpp_native-0.0.4/tests/golden/canary_qwen/canary-qwen-2.5b.manifest.json +55 -0
- transcribe_cpp_native-0.0.4/tests/golden/cohere/cohere-transcribe-03-2026.manifest.json +44 -0
- transcribe_cpp_native-0.0.4/tests/golden/funasr_nano/fun-asr-mlt-nano-2512.manifest.json +53 -0
- transcribe_cpp_native-0.0.4/tests/golden/funasr_nano/fun-asr-nano-2512.manifest.json +46 -0
- transcribe_cpp_native-0.0.4/tests/golden/gigaam/gigaam-v3-ctc.manifest.json +58 -0
- transcribe_cpp_native-0.0.4/tests/golden/gigaam/gigaam-v3-e2e-ctc.manifest.json +57 -0
- transcribe_cpp_native-0.0.4/tests/golden/gigaam/gigaam-v3-e2e-rnnt.manifest.json +57 -0
- transcribe_cpp_native-0.0.4/tests/golden/gigaam/gigaam-v3-rnnt.manifest.json +58 -0
- transcribe_cpp_native-0.0.4/tests/golden/granite/granite-4.0-1b-speech.manifest.json +50 -0
- transcribe_cpp_native-0.0.4/tests/golden/granite/granite-speech-4.1-2b-plus.manifest.json +53 -0
- transcribe_cpp_native-0.0.4/tests/golden/granite/granite-speech-4.1-2b.manifest.json +50 -0
- transcribe_cpp_native-0.0.4/tests/golden/granite_nar/granite-speech-4.1-2b-nar.manifest.json +52 -0
- transcribe_cpp_native-0.0.4/tests/golden/medasr/medasr.manifest.json +62 -0
- transcribe_cpp_native-0.0.4/tests/golden/moonshine/moonshine-base.manifest.json +49 -0
- transcribe_cpp_native-0.0.4/tests/golden/moonshine/moonshine-tiny.manifest.json +49 -0
- transcribe_cpp_native-0.0.4/tests/golden/moonshine_streaming/moonshine-streaming-medium.manifest.json +53 -0
- transcribe_cpp_native-0.0.4/tests/golden/moonshine_streaming/moonshine-streaming-small.manifest.json +53 -0
- transcribe_cpp_native-0.0.4/tests/golden/moonshine_streaming/moonshine-streaming-tiny.manifest.json +49 -0
- transcribe_cpp_native-0.0.4/tests/golden/parakeet/nemotron-3.5-asr-streaming-0.6b.manifest.json +61 -0
- transcribe_cpp_native-0.0.4/tests/golden/parakeet/nemotron-speech-streaming-en-0.6b.manifest.json +53 -0
- transcribe_cpp_native-0.0.4/tests/golden/parakeet/parakeet-ctc-0.6b.manifest.json +53 -0
- transcribe_cpp_native-0.0.4/tests/golden/parakeet/parakeet-ctc-1.1b.manifest.json +53 -0
- transcribe_cpp_native-0.0.4/tests/golden/parakeet/parakeet-rnnt-0.6b.manifest.json +53 -0
- transcribe_cpp_native-0.0.4/tests/golden/parakeet/parakeet-rnnt-1.1b.manifest.json +53 -0
- transcribe_cpp_native-0.0.4/tests/golden/parakeet/parakeet-tdt-0.6b-v2.manifest.json +44 -0
- transcribe_cpp_native-0.0.4/tests/golden/parakeet/parakeet-tdt-0.6b-v3.manifest.json +50 -0
- transcribe_cpp_native-0.0.4/tests/golden/parakeet/parakeet-tdt-1.1b.manifest.json +54 -0
- transcribe_cpp_native-0.0.4/tests/golden/parakeet/parakeet-tdt_ctc-1.1b.manifest.json +54 -0
- transcribe_cpp_native-0.0.4/tests/golden/parakeet/parakeet-tdt_ctc-110m.manifest.json +54 -0
- transcribe_cpp_native-0.0.4/tests/golden/parakeet/parakeet-unified-en-0.6b.manifest.json +54 -0
- transcribe_cpp_native-0.0.4/tests/golden/qwen3_asr/qwen3-asr-0.6b.manifest.json +59 -0
- transcribe_cpp_native-0.0.4/tests/golden/qwen3_asr/qwen3-asr-1.7b.manifest.json +86 -0
- transcribe_cpp_native-0.0.4/tests/golden/sensevoice/sensevoice-small.manifest.json +57 -0
- transcribe_cpp_native-0.0.4/tests/golden/voxtral/voxtral-mini-3b-2507.manifest.json +50 -0
- transcribe_cpp_native-0.0.4/tests/golden/voxtral/voxtral-mini-4b-realtime-2602.manifest.json +12 -0
- transcribe_cpp_native-0.0.4/tests/golden/voxtral/voxtral-small-24b-2507.manifest.json +12 -0
- transcribe_cpp_native-0.0.4/tests/golden/voxtral_realtime/voxtral-mini-4b-realtime-2602.manifest.json +51 -0
- transcribe_cpp_native-0.0.4/tests/golden/whisper/whisper-base.en.manifest.json +63 -0
- transcribe_cpp_native-0.0.4/tests/golden/whisper/whisper-base.manifest.json +161 -0
- transcribe_cpp_native-0.0.4/tests/golden/whisper/whisper-large-v2.manifest.json +161 -0
- transcribe_cpp_native-0.0.4/tests/golden/whisper/whisper-large-v3-turbo.manifest.json +162 -0
- transcribe_cpp_native-0.0.4/tests/golden/whisper/whisper-large-v3.manifest.json +162 -0
- transcribe_cpp_native-0.0.4/tests/golden/whisper/whisper-large.manifest.json +161 -0
- transcribe_cpp_native-0.0.4/tests/golden/whisper/whisper-medium.en.manifest.json +62 -0
- transcribe_cpp_native-0.0.4/tests/golden/whisper/whisper-medium.manifest.json +165 -0
- transcribe_cpp_native-0.0.4/tests/golden/whisper/whisper-small.en.manifest.json +63 -0
- transcribe_cpp_native-0.0.4/tests/golden/whisper/whisper-small.manifest.json +161 -0
- transcribe_cpp_native-0.0.4/tests/golden/whisper/whisper-tiny.en.manifest.json +63 -0
- transcribe_cpp_native-0.0.4/tests/golden/whisper/whisper-tiny.manifest.json +165 -0
- transcribe_cpp_native-0.0.4/tests/loader_smoke.cpp +220 -0
- transcribe_cpp_native-0.0.4/tests/log_unit.cpp +174 -0
- transcribe_cpp_native-0.0.4/tests/mel_unit.cpp +208 -0
- transcribe_cpp_native-0.0.4/tests/moonshine_streaming_batch_truncation.cpp +135 -0
- transcribe_cpp_native-0.0.4/tests/moonshine_streaming_stream_parity.cpp +409 -0
- transcribe_cpp_native-0.0.4/tests/parakeet_chunked_limited_with_rc_mask_unit.cpp +151 -0
- transcribe_cpp_native-0.0.4/tests/parakeet_real_smoke.cpp +329 -0
- transcribe_cpp_native-0.0.4/tests/parakeet_smoke.cpp +345 -0
- transcribe_cpp_native-0.0.4/tests/parakeet_stream_ext_reject_unit.cpp +244 -0
- transcribe_cpp_native-0.0.4/tests/qwen3_asr_batch_truncation.cpp +167 -0
- transcribe_cpp_native-0.0.4/tests/qwen3_asr_bpe_parity.cpp +180 -0
- transcribe_cpp_native-0.0.4/tests/qwen3_asr_e2e_smoke.cpp +383 -0
- transcribe_cpp_native-0.0.4/tests/qwen3_asr_real_smoke_0_6b.cpp +357 -0
- transcribe_cpp_native-0.0.4/tests/qwen3_asr_real_smoke_1_7b.cpp +256 -0
- transcribe_cpp_native-0.0.4/tests/qwen3_asr_smoke.cpp +389 -0
- transcribe_cpp_native-0.0.4/tests/run_dispatch_unit.cpp +314 -0
- transcribe_cpp_native-0.0.4/tests/stream_capability_unit.cpp +249 -0
- transcribe_cpp_native-0.0.4/tests/stream_committed_pointer_stability.cpp +162 -0
- transcribe_cpp_native-0.0.4/tests/stream_dispatch_unit.cpp +1583 -0
- transcribe_cpp_native-0.0.4/tests/tokenizer_decode_only_unit.cpp +209 -0
- transcribe_cpp_native-0.0.4/tests/tokenizer_smoke.cpp +368 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/canary.json +104 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/canary_qwen.json +173 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/cohere.json +52 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/funasr_nano.json +79 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/gigaam.json +133 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/granite.json +163 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/granite_nar.json +137 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/medasr.json +106 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/moonshine.json +191 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/moonshine_streaming.json +193 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/nemotron-3.5-asr-streaming-0.6b.json +152 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/nemotron-speech-streaming-en-0.6b.json +111 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/nemotron-speech-streaming-en-0.6b.streaming.json +93 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/parakeet.json +203 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/qwen3_asr-1.7b.json +88 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/qwen3_asr.json +46 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/sensevoice.json +122 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/voxtral.json +59 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/voxtral_realtime.json +70 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/whisper-base.en.json +43 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/whisper-base.json +43 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/whisper-large-v2.json +43 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/whisper-large-v3-turbo.json +70 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/whisper-large-v3.json +65 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/whisper-large.json +43 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/whisper-medium.en.json +43 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/whisper-medium.json +43 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/whisper-small.en.json +43 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/whisper-small.json +43 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/whisper-tiny.en.json +41 -0
- transcribe_cpp_native-0.0.4/tests/tolerances/whisper-tiny.json +41 -0
- transcribe_cpp_native-0.0.4/tests/voxtral_realtime_real_smoke.cpp +174 -0
- transcribe_cpp_native-0.0.4/tests/wav_loader_smoke.cpp +102 -0
- transcribe_cpp_native-0.0.4/tests/whisper_bin_e2e_smoke.cpp +426 -0
- transcribe_cpp_native-0.0.4/tests/whisper_bin_parser_unit.cpp +264 -0
- transcribe_cpp_native-0.0.4/tests/whisper_bin_tokenize_parity.cpp +170 -0
- transcribe_cpp_native-0.0.4/tests/whisper_e2e_smoke.cpp +696 -0
- transcribe_cpp_native-0.0.4/tests/whisper_tokenize_parity.cpp +154 -0
- transcribe_cpp_native-0.0.4/tools/CMakeLists.txt +9 -0
- transcribe_cpp_native-0.0.4/tools/transcribe-bench/CMakeLists.txt +20 -0
- transcribe_cpp_native-0.0.4/tools/transcribe-bench/main.cpp +392 -0
- transcribe_cpp_native-0.0.4/tools/transcribe-quantize/CMakeLists.txt +17 -0
- transcribe_cpp_native-0.0.4/tools/transcribe-quantize/README.md +18 -0
- transcribe_cpp_native-0.0.4/tools/transcribe-quantize/main.cpp +397 -0
- transcribe_cpp_native-0.0.4/tools/transcribe-quantize/policy.cpp +374 -0
- transcribe_cpp_native-0.0.4/tools/transcribe-quantize/policy.h +88 -0
- transcribe_cpp_native-0.0.4/uv.lock +6 -0
- transcribe_cpp_native-0.0.0/PKG-INFO +0 -8
- transcribe_cpp_native-0.0.0/pyproject.toml +0 -17
- transcribe_cpp_native-0.0.0/src/transcribe_cpp_native/__init__.py +0 -5
|
@@ -0,0 +1,86 @@
|
|
|
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
|
+
/reports/*
|
|
63
|
+
|
|
64
|
+
# Reviewable porting evidence (intake, porting log) is intentionally committed.
|
|
65
|
+
!/reports/porting/
|
|
66
|
+
!/reports/porting/**
|
|
67
|
+
|
|
68
|
+
# ...but per-run preflight outputs and validate report bundles are ephemeral:
|
|
69
|
+
# they regenerate in seconds from committed inputs (manifest, tolerance, code).
|
|
70
|
+
# Committing them without CI adds clutter without verification. Paste their
|
|
71
|
+
# stdout into the PR description instead; the reviewer re-runs to verify.
|
|
72
|
+
/reports/porting/*/*/preflight-gate-*.json
|
|
73
|
+
/reports/porting/*/*/preflight-gate-*.md
|
|
74
|
+
/reports/porting/*/*/[0-9]*T[0-9]*Z-*/
|
|
75
|
+
|
|
76
|
+
# Internal planning docs (not committed)
|
|
77
|
+
PORTING.md
|
|
78
|
+
RESUME.md
|
|
79
|
+
PERF.md
|
|
80
|
+
WER_TESTING.md
|
|
81
|
+
|
|
82
|
+
# IDE / language-server artifacts
|
|
83
|
+
.cache/
|
|
84
|
+
|
|
85
|
+
# Local working notes (plans, drafts) — never committed
|
|
86
|
+
/notes/
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# transcribe.cpp Agent Conventions
|
|
2
|
+
|
|
3
|
+
## Python (critical)
|
|
4
|
+
- ALWAYS use `uv run` for every Python invocation. Never bare `python`, `python3`, or `pip`.
|
|
5
|
+
- Use `uv pip` for packages, `uv sync` for envs, `uv run` for scripts.
|
|
6
|
+
- Per-family reference environments live under `scripts/envs/<family>/` and are invoked as `uv run --project scripts/envs/<family> scripts/<script>.py ...`.
|
|
7
|
+
|
|
8
|
+
## Build
|
|
9
|
+
- `cmake --build build --target transcribe-cli` after C++ changes.
|
|
10
|
+
|
|
11
|
+
## Verification
|
|
12
|
+
- `uv run scripts/validate.py all --family <f> [--variant <v>]` for end-to-end numerical checks. `--variant` is required when the family has multiple manifests.
|
|
13
|
+
- `uv run scripts/compare_tensors.py` for manual debugging of a single tensor pair.
|
|
14
|
+
- `uv run scripts/preflight.py --family <f> [--variant <v>]` for cheap metadata/config gates before expensive numerical work.
|
|
15
|
+
- Never suppress test failures without root cause analysis.
|
|
16
|
+
|
|
17
|
+
## Porting a new model
|
|
18
|
+
Use the `porting-*` skills in `.claude/skills/`. Stage skills are independent and run in order:
|
|
19
|
+
`porting-1-intake` → `porting-2-oracle` → `porting-3-convert` → `porting-4-cpp` → `porting-5-quants` → `porting-6-bench` → `porting-7-wer` → `porting-8-ship`.
|
|
@@ -0,0 +1,394 @@
|
|
|
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
|
+
option(TRANSCRIBE_METAL "Enable Metal backend" ${TRANSCRIBE_IS_APPLE_SILICON})
|
|
115
|
+
option(TRANSCRIBE_VULKAN "Enable Vulkan backend" OFF) # post-v1
|
|
116
|
+
option(TRANSCRIBE_CUDA "Enable CUDA backend" OFF) # opt-in; Linux + nvcc
|
|
117
|
+
option(TRANSCRIBE_SANITIZE "Enable ASan + UBSan" OFF)
|
|
118
|
+
option(TRANSCRIBE_LTO "Enable LTO in Release" OFF)
|
|
119
|
+
|
|
120
|
+
# Library link mode and wheel-hygiene switches.
|
|
121
|
+
#
|
|
122
|
+
# TRANSCRIBE_BUILD_SHARED OFF (default) builds a static libtranscribe + static
|
|
123
|
+
# ggml, so `cmake -B build` yields a self-contained transcribe-cli with no
|
|
124
|
+
# libtranscribe/libggml to chase at runtime — the posture every porting, test,
|
|
125
|
+
# and bench workflow relies on. The Python wheel/provider build sets it ON to
|
|
126
|
+
# produce a shared libtranscribe the FFI layer can dlopen.
|
|
127
|
+
#
|
|
128
|
+
# TRANSCRIBE_USE_OPENMP / TRANSCRIBE_USE_SYSTEM_BLAS default ON to keep the
|
|
129
|
+
# developer build fast (ggml OpenMP, Accelerate/system BLAS host decoder).
|
|
130
|
+
# Official provider wheels pass them OFF so no libgomp/libiomp or OpenBLAS/MKL
|
|
131
|
+
# runtime is vendored into the wheel where it can collide with PyTorch/NumPy.
|
|
132
|
+
option(TRANSCRIBE_BUILD_SHARED "Build libtranscribe + ggml as shared libraries" OFF)
|
|
133
|
+
option(TRANSCRIBE_USE_OPENMP "Use OpenMP (ggml + Parakeet host-decoder TU)" ON)
|
|
134
|
+
option(TRANSCRIBE_USE_SYSTEM_BLAS "Link non-Apple system BLAS for the host decoder" ON)
|
|
135
|
+
|
|
136
|
+
# Dynamic ggml backends: each backend (CPU, Vulkan, CUDA, ...) becomes a
|
|
137
|
+
# separate loadable module living NEXT TO libtranscribe instead of being
|
|
138
|
+
# compiled in. This is the provider-directory artifact shape the Python
|
|
139
|
+
# wheels ship on Linux/Windows: the Vulkan module is present by default and
|
|
140
|
+
# simply fails to load (skipped; CPU keeps working) on machines without a
|
|
141
|
+
# Vulkan loader/driver. The host loads the module directory once via
|
|
142
|
+
# transcribe_init_backends(). Requires TRANSCRIBE_BUILD_SHARED=ON.
|
|
143
|
+
option(TRANSCRIBE_GGML_BACKEND_DL "Build ggml backends as loadable modules" OFF)
|
|
144
|
+
|
|
145
|
+
# Conservative x86 floor: default GGML_NATIVE plus EVERY x86 SIMD tier to
|
|
146
|
+
# OFF so the one binary runs on baseline x86-64 without SIGILL. This is the
|
|
147
|
+
# single switch behind every official-wheel CPU posture (the per-flag lists
|
|
148
|
+
# used to be mirrored across the root pyproject lanes, the cu12 pyproject,
|
|
149
|
+
# and CMakePresets.json — one option, one place to drift).
|
|
150
|
+
#
|
|
151
|
+
# It is a DEFAULT, not a clamp (same posture as the SKBUILD hygiene knobs
|
|
152
|
+
# above): an explicit -DGGML_AVX2=ON etc. on the command line still wins, so
|
|
153
|
+
# a user can take the conservative floor and selectively re-enable tiers for
|
|
154
|
+
# their machine. With the option OFF (the default) the raw GGML_* flags are
|
|
155
|
+
# untouched and fully tunable, exactly as without this option.
|
|
156
|
+
#
|
|
157
|
+
# Interaction with GGML_CPU_ALL_VARIANTS=ON (the fat-CPU wheel lanes): ggml
|
|
158
|
+
# gates the per-flag options behind `if(NOT GGML_CPU_ALL_VARIANTS)`, so
|
|
159
|
+
# these are inert there and serve as the explicit floor if ALL_VARIANTS is
|
|
160
|
+
# ever disabled. Inert (harmless) on non-x86 targets: ggml's Linux-ARM tier
|
|
161
|
+
# list has its own flags.
|
|
162
|
+
option(TRANSCRIBE_X86_CONSERVATIVE
|
|
163
|
+
"Default GGML_NATIVE and every x86 SIMD tier to OFF (SIGILL-safe baseline; explicit -DGGML_* still wins)" OFF)
|
|
164
|
+
|
|
165
|
+
# Install rules for non-Python consumers: headers + the ABI digest +
|
|
166
|
+
# libtranscribe + the transcribe-link.json link manifest (ggml's own install
|
|
167
|
+
# rules supply the ggml libs/headers). This is what the Rust -sys crate's
|
|
168
|
+
# build.rs consumes (`cmake --install` into a staging prefix, then link per
|
|
169
|
+
# the manifest) — see cmake/transcribe-install.cmake. Default ON for
|
|
170
|
+
# top-level builds; OFF as a subproject, and never active under SKBUILD
|
|
171
|
+
# (the wheel ships its own component-filtered install rules instead).
|
|
172
|
+
if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR AND NOT SKBUILD)
|
|
173
|
+
set(_transcribe_install_default ON)
|
|
174
|
+
else()
|
|
175
|
+
set(_transcribe_install_default OFF)
|
|
176
|
+
endif()
|
|
177
|
+
option(TRANSCRIBE_INSTALL
|
|
178
|
+
"Install headers, libtranscribe, and the link manifest" ${_transcribe_install_default})
|
|
179
|
+
|
|
180
|
+
# Real-model gated tests. OFF by default because the tests need a
|
|
181
|
+
# converted Parakeet GGUF on disk (~2.4 GB) and CI can't ship one.
|
|
182
|
+
# When ON, the test reads TRANSCRIBE_REAL_PARAKEET_GGUF from the
|
|
183
|
+
# environment at run time. See tests/parakeet_real_smoke.cpp.
|
|
184
|
+
option(TRANSCRIBE_BUILD_REAL_MODEL_TESTS
|
|
185
|
+
"Build tests that load real (multi-GB) model files via env var" OFF)
|
|
186
|
+
|
|
187
|
+
# -----------------------------------------------------------------------------
|
|
188
|
+
# Warnings (no -Werror in v1 per PLAN.md)
|
|
189
|
+
# -----------------------------------------------------------------------------
|
|
190
|
+
#
|
|
191
|
+
# transcribe_apply_warnings(target): apply our project warning flags to one
|
|
192
|
+
# target. Used per-target so we don't pollute the vendored ggml subdirectory
|
|
193
|
+
# with -Wshadow / -Wpedantic, which fire on a lot of legitimate ggml code.
|
|
194
|
+
|
|
195
|
+
function(transcribe_apply_warnings tgt)
|
|
196
|
+
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang|GNU")
|
|
197
|
+
target_compile_options(${tgt} PRIVATE
|
|
198
|
+
-Wall
|
|
199
|
+
-Wextra
|
|
200
|
+
-Wshadow
|
|
201
|
+
-Wpedantic
|
|
202
|
+
-Wno-unused-parameter
|
|
203
|
+
# The output-side TRANSCRIBE_*_INIT macros (timings,
|
|
204
|
+
# stream_update, capabilities, whisper_chunk_trace, ...)
|
|
205
|
+
# are deliberate zero-fill aggregate initializers:
|
|
206
|
+
# struct_size is set, every other field falls to
|
|
207
|
+
# initializer zero by C aggregate-init rules. The
|
|
208
|
+
# zero-means-absent contract is documented and load-bearing.
|
|
209
|
+
# -Wmissing-field-initializers would fire on every use of
|
|
210
|
+
# those macros; the warning's signal-to-noise on this
|
|
211
|
+
# codebase is too low to justify keeping it on.
|
|
212
|
+
-Wno-missing-field-initializers
|
|
213
|
+
)
|
|
214
|
+
endif()
|
|
215
|
+
endfunction()
|
|
216
|
+
|
|
217
|
+
# Sanitizers must be applied to every target in the build (including ggml)
|
|
218
|
+
# so the resulting binary is consistent. add_compile_options /
|
|
219
|
+
# add_link_options is the right scope for this.
|
|
220
|
+
#
|
|
221
|
+
# -fno-sanitize-recover=undefined makes UBSan reports fatal at runtime
|
|
222
|
+
# instead of merely printing them. ASan already aborts on error by
|
|
223
|
+
# default; UBSan does not, which would otherwise let ctest report
|
|
224
|
+
# success while the sanitizer printed real diagnostics.
|
|
225
|
+
if(TRANSCRIBE_SANITIZE)
|
|
226
|
+
add_compile_options(
|
|
227
|
+
-fsanitize=address,undefined
|
|
228
|
+
-fno-sanitize-recover=undefined
|
|
229
|
+
# ggml's `incr_ptr_aligned` (ggml/src/ggml.c) uses the
|
|
230
|
+
# standard "use NULL as base, walk by offsets to compute
|
|
231
|
+
# struct layout sizes" trick. UBSan flags this as a
|
|
232
|
+
# `pointer-overflow` runtime error even though it's a
|
|
233
|
+
# widely-used and safe-in-practice C idiom. Make this
|
|
234
|
+
# specific check non-fatal so the encoder run path doesn't
|
|
235
|
+
# abort under build-san; real bugs in our own code still
|
|
236
|
+
# fail loud (the rest of -fno-sanitize-recover=undefined
|
|
237
|
+
# is unaffected). When ggml gets patched upstream this can
|
|
238
|
+
# come back out.
|
|
239
|
+
-fsanitize-recover=pointer-overflow
|
|
240
|
+
-fno-omit-frame-pointer
|
|
241
|
+
)
|
|
242
|
+
add_link_options(-fsanitize=address,undefined)
|
|
243
|
+
endif()
|
|
244
|
+
|
|
245
|
+
# -----------------------------------------------------------------------------
|
|
246
|
+
# Output layout
|
|
247
|
+
# -----------------------------------------------------------------------------
|
|
248
|
+
#
|
|
249
|
+
# Put all binaries in build/bin/ regardless of which subdirectory built them.
|
|
250
|
+
# ggml's CMakeLists already does this when invoked standalone; pinning it
|
|
251
|
+
# at the top level keeps the same layout when ggml is added as a subdirectory.
|
|
252
|
+
|
|
253
|
+
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
|
|
254
|
+
|
|
255
|
+
# -----------------------------------------------------------------------------
|
|
256
|
+
# Vendored ggml
|
|
257
|
+
# -----------------------------------------------------------------------------
|
|
258
|
+
#
|
|
259
|
+
# ggml lives at the repo root (matching whisper.cpp / llama.cpp). The pinned
|
|
260
|
+
# upstream SHA is recorded in ggml/UPSTREAM. We map our TRANSCRIBE_* options
|
|
261
|
+
# onto ggml's GGML_* options BEFORE add_subdirectory() so ggml's option()
|
|
262
|
+
# calls become no-ops and our defaults win.
|
|
263
|
+
|
|
264
|
+
set(GGML_METAL ${TRANSCRIBE_METAL} CACHE BOOL "" FORCE)
|
|
265
|
+
set(GGML_VULKAN ${TRANSCRIBE_VULKAN} CACHE BOOL "" FORCE)
|
|
266
|
+
set(GGML_CUDA ${TRANSCRIBE_CUDA} CACHE BOOL "" FORCE)
|
|
267
|
+
set(GGML_BLAS OFF CACHE BOOL "" FORCE)
|
|
268
|
+
|
|
269
|
+
# Conservative x86 floor (see the option's comment above): one switch fans
|
|
270
|
+
# out to GGML_NATIVE plus the full x86 SIMD tier list. Placed BEFORE
|
|
271
|
+
# add_subdirectory(ggml) so ggml's own option() defaults never win — but
|
|
272
|
+
# NOT forced: a flag the user already put in the cache (-DGGML_AVX2=ON) is
|
|
273
|
+
# left alone, so the floor stays selectively tunable per machine.
|
|
274
|
+
if(TRANSCRIBE_X86_CONSERVATIVE)
|
|
275
|
+
foreach(_simd_flag
|
|
276
|
+
GGML_NATIVE
|
|
277
|
+
GGML_SSE42 GGML_AVX GGML_AVX_VNNI GGML_AVX2 GGML_BMI2
|
|
278
|
+
GGML_FMA GGML_F16C
|
|
279
|
+
GGML_AVX512 GGML_AVX512_VBMI GGML_AVX512_VNNI GGML_AVX512_BF16)
|
|
280
|
+
if(NOT DEFINED CACHE{${_simd_flag}})
|
|
281
|
+
set(${_simd_flag} OFF CACHE BOOL "")
|
|
282
|
+
endif()
|
|
283
|
+
endforeach()
|
|
284
|
+
endif()
|
|
285
|
+
|
|
286
|
+
# OpenMP — CENTRAL POLICY (read before changing the Windows/MSVC threading).
|
|
287
|
+
#
|
|
288
|
+
# ggml defaults GGML_OPENMP ON and probes for it gracefully, so leave ggml's own
|
|
289
|
+
# default in place when we want OpenMP. Only force it OFF (matching the
|
|
290
|
+
# GGML_OPENMP=OFF posture official wheels use) when OpenMP is switched off, so
|
|
291
|
+
# one TRANSCRIBE_USE_OPENMP knob covers ggml and our host-decoder TU.
|
|
292
|
+
#
|
|
293
|
+
# The catch: ggml's NON-OpenMP CPU threadpool barrier (ggml_barrier's custom
|
|
294
|
+
# spin path) DEADLOCKS under MSVC codegen on Windows — any multi-threaded CPU
|
|
295
|
+
# run wedges its workers in the barrier spin (it works on every other compiler).
|
|
296
|
+
# OpenMP's `#pragma omp barrier` is the only working multi-threaded CPU path on
|
|
297
|
+
# MSVC. But OpenMP is a per-CONSUMER tradeoff, not a global flag, so this is not
|
|
298
|
+
# one switch — it is a deliberate, documented split:
|
|
299
|
+
#
|
|
300
|
+
# - Rust binding (CPU is its default backend, standalone process): MUST have
|
|
301
|
+
# OpenMP on Windows. Its build.rs passes -DGGML_OPENMP=ON; the guard below
|
|
302
|
+
# honors that explicit value. MSVC auto-links vcomp via the /openmp pragma in
|
|
303
|
+
# the ggml objects (no -fopenmp flag, so the link manifest is untouched);
|
|
304
|
+
# vcomp140.dll ships in the VC++ runtime the binary already needs.
|
|
305
|
+
# - Python wheels (default to the Vulkan GPU backend; deliberately vendor NO
|
|
306
|
+
# OpenMP so ggml's runtime cannot collide with numpy/torch's own OpenMP/MKL
|
|
307
|
+
# in one process — see python-wheels.yml): leave GGML_OPENMP unset and get
|
|
308
|
+
# the force-off below. KNOWN LIMITATION as a consequence: multi-threaded CPU
|
|
309
|
+
# compute on Windows is unsupported for the wheels (they use Vulkan). Lifting
|
|
310
|
+
# it needs a non-OpenMP fix (e.g. single-threaded CPU on Windows, or patching
|
|
311
|
+
# ggml's barrier) rather than forcing OpenMP and the coexistence hazard back.
|
|
312
|
+
#
|
|
313
|
+
# So: honor an explicit -DGGML_OPENMP=... (the Rust opt-in); otherwise force OFF.
|
|
314
|
+
if(NOT TRANSCRIBE_USE_OPENMP AND NOT DEFINED CACHE{GGML_OPENMP})
|
|
315
|
+
set(GGML_OPENMP OFF CACHE BOOL "" FORCE)
|
|
316
|
+
endif()
|
|
317
|
+
|
|
318
|
+
# We don't want ggml's tests / examples leaking into our build tree. They
|
|
319
|
+
# default to OFF when ggml is added as a subdirectory (GGML_STANDALONE OFF),
|
|
320
|
+
# but pin them anyway so the contract is explicit.
|
|
321
|
+
set(GGML_BUILD_TESTS OFF CACHE BOOL "" FORCE)
|
|
322
|
+
set(GGML_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE)
|
|
323
|
+
|
|
324
|
+
# Library link mode. Default OFF (static) keeps the self-contained CLI/test/
|
|
325
|
+
# bench build with no libtranscribe/libggml to chase at runtime; the Python
|
|
326
|
+
# wheel/provider build sets TRANSCRIBE_BUILD_SHARED=ON for a shared
|
|
327
|
+
# libtranscribe (+ libggml) the FFI layer can dlopen. Both ggml and
|
|
328
|
+
# libtranscribe follow this single switch. Symbol visibility is already hidden
|
|
329
|
+
# by default (set above), so a shared lib exports only the TRANSCRIBE_API
|
|
330
|
+
# surface.
|
|
331
|
+
set(BUILD_SHARED_LIBS ${TRANSCRIBE_BUILD_SHARED} CACHE BOOL "" FORCE)
|
|
332
|
+
|
|
333
|
+
# Dynamic backend modules (see the option's comment above). ggml requires
|
|
334
|
+
# shared libs for GGML_BACKEND_DL, so gate it on TRANSCRIBE_BUILD_SHARED
|
|
335
|
+
# here for a clear configure-time error.
|
|
336
|
+
if(TRANSCRIBE_GGML_BACKEND_DL)
|
|
337
|
+
if(NOT TRANSCRIBE_BUILD_SHARED)
|
|
338
|
+
message(FATAL_ERROR
|
|
339
|
+
"TRANSCRIBE_GGML_BACKEND_DL requires TRANSCRIBE_BUILD_SHARED=ON "
|
|
340
|
+
"(backend modules are shared libraries loaded at runtime)")
|
|
341
|
+
endif()
|
|
342
|
+
set(GGML_BACKEND_DL ON CACHE BOOL "" FORCE)
|
|
343
|
+
# The package-local default loader resolves the directory that contains
|
|
344
|
+
# libtranscribe itself. Install backend modules there too, unless a caller
|
|
345
|
+
# explicitly chose a different provider layout and will pass it to
|
|
346
|
+
# transcribe_init_backends(dir).
|
|
347
|
+
#
|
|
348
|
+
# Test emptiness, not DEFINED: ggml declares GGML_BACKEND_DIR as an empty
|
|
349
|
+
# cache var of its own, so on any reconfigure it is already DEFINED (as "")
|
|
350
|
+
# and a `NOT DEFINED CACHE{...}` guard would skip our override, leaving the
|
|
351
|
+
# modules in ggml's default bin/ where the lib-dir loader cannot find them.
|
|
352
|
+
# `NOT GGML_BACKEND_DIR` treats an empty/unset value as "ours to set" while
|
|
353
|
+
# still respecting a non-empty caller-provided path.
|
|
354
|
+
if(NOT GGML_BACKEND_DIR)
|
|
355
|
+
set(GGML_BACKEND_DIR "${CMAKE_INSTALL_LIBDIR}" CACHE PATH "" FORCE)
|
|
356
|
+
endif()
|
|
357
|
+
# ggml hard-errors on GGML_NATIVE + GGML_BACKEND_DL (x86): native tuning
|
|
358
|
+
# is incompatible with feature-scored modules. A module build is a
|
|
359
|
+
# distribution build, so never tune it to the build host.
|
|
360
|
+
set(GGML_NATIVE OFF CACHE BOOL "" FORCE)
|
|
361
|
+
endif()
|
|
362
|
+
|
|
363
|
+
# ggml's CMake declares its own warning flags; let it.
|
|
364
|
+
add_subdirectory(ggml)
|
|
365
|
+
|
|
366
|
+
# -----------------------------------------------------------------------------
|
|
367
|
+
# Subdirs
|
|
368
|
+
# -----------------------------------------------------------------------------
|
|
369
|
+
|
|
370
|
+
add_subdirectory(src)
|
|
371
|
+
|
|
372
|
+
if(TRANSCRIBE_BUILD_EXAMPLES)
|
|
373
|
+
add_subdirectory(examples)
|
|
374
|
+
endif()
|
|
375
|
+
|
|
376
|
+
if(TRANSCRIBE_BUILD_TESTS)
|
|
377
|
+
enable_testing()
|
|
378
|
+
add_subdirectory(tests)
|
|
379
|
+
endif()
|
|
380
|
+
|
|
381
|
+
if(TRANSCRIBE_BUILD_TOOLS)
|
|
382
|
+
add_subdirectory(tools)
|
|
383
|
+
endif()
|
|
384
|
+
|
|
385
|
+
# Python provider-wheel packaging (after subdirs: needs the target list and
|
|
386
|
+
# ggml's GGML_AVAILABLE_BACKENDS).
|
|
387
|
+
if(SKBUILD)
|
|
388
|
+
include(cmake/python-wheel-install.cmake)
|
|
389
|
+
endif()
|
|
390
|
+
|
|
391
|
+
# Consumer install rules (same placement constraint as above).
|
|
392
|
+
if(TRANSCRIBE_INSTALL AND NOT SKBUILD)
|
|
393
|
+
include(cmake/transcribe-install.cmake)
|
|
394
|
+
endif()
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"cmakeMinimumRequired": { "major": 3, "minor": 21, "patch": 0 },
|
|
4
|
+
"configurePresets": [
|
|
5
|
+
{
|
|
6
|
+
"name": "wheel-base",
|
|
7
|
+
"hidden": true,
|
|
8
|
+
"displayName": "Official wheel posture (shared, no vendored OpenMP/BLAS)",
|
|
9
|
+
"description": "Shared libtranscribe for the Python provider wheels. OpenMP and non-Apple system BLAS are off so wheel-repair tools (auditwheel/delocate/delvewheel) never vendor an OpenMP/BLAS runtime that would collide with PyTorch/NumPy/MKL in the same process. GGML_NATIVE off so the binary is not tuned to the build machine. NOTE: the official wheels build these same postures through the TRANSCRIBE_WHEEL_LANE overrides in the repo-root pyproject.toml (base posture supplied by the SKBUILD block in CMakeLists.txt) — keep both in sync. The presets remain for hand-built provider directories.",
|
|
10
|
+
"binaryDir": "${sourceDir}/build-wheel",
|
|
11
|
+
"generator": "Ninja",
|
|
12
|
+
"cacheVariables": {
|
|
13
|
+
"CMAKE_BUILD_TYPE": "Release",
|
|
14
|
+
"TRANSCRIBE_BUILD_SHARED": "ON",
|
|
15
|
+
"TRANSCRIBE_USE_OPENMP": "OFF",
|
|
16
|
+
"TRANSCRIBE_USE_SYSTEM_BLAS": "OFF",
|
|
17
|
+
"TRANSCRIBE_BUILD_TESTS": "OFF",
|
|
18
|
+
"TRANSCRIBE_BUILD_EXAMPLES": "OFF",
|
|
19
|
+
"GGML_NATIVE": "OFF"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"name": "wheel-linux-cpu",
|
|
24
|
+
"inherits": "wheel-base",
|
|
25
|
+
"displayName": "Linux x86_64 conservative CPU wheel",
|
|
26
|
+
"description": "The permanent compatibility floor. TRANSCRIBE_X86_CONSERVATIVE fans out to GGML_NATIVE=OFF plus every x86 SIMD tier OFF (one switch, defined in CMakeLists.txt — GGML_NATIVE=OFF alone does NOT disable the tiers): the resulting binary runs on a baseline x86-64 machine without SIGILL. Performance is the job of the fat-CPU (Strategy B) track, not this wheel.",
|
|
27
|
+
"cacheVariables": {
|
|
28
|
+
"TRANSCRIBE_X86_CONSERVATIVE": "ON"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "wheel-macos-metal",
|
|
33
|
+
"inherits": "wheel-base",
|
|
34
|
+
"displayName": "macOS arm64 Metal wheel",
|
|
35
|
+
"description": "Metal ships by default on Apple Silicon, with the shader library embedded so there are no sidecar .metal files to vendor or locate at runtime. Single-artifact (no dynamic backend modules): one platform, one GPU API.",
|
|
36
|
+
"cacheVariables": {
|
|
37
|
+
"TRANSCRIBE_METAL": "ON",
|
|
38
|
+
"GGML_METAL": "ON",
|
|
39
|
+
"GGML_METAL_EMBED_LIBRARY": "ON"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "wheel-linux-cpu-vulkan",
|
|
44
|
+
"inherits": "wheel-linux-cpu",
|
|
45
|
+
"displayName": "Linux x86_64 default wheel: fat CPU + Vulkan backend modules",
|
|
46
|
+
"description": "The default Linux provider (M6.5). GGML_BACKEND_DL builds every backend as a loadable module next to libtranscribe; GGML_CPU_ALL_VARIANTS emits one ggml-cpu-<tier> module per x86 ISA tier (runtime feature scoring, llama.cpp-release shape) — the x64 baseline tier is the SIGILL-safe floor, so the per-tier SIMD-off flags inherited from wheel-linux-cpu are inert here (ggml gates them behind NOT GGML_CPU_ALL_VARIANTS) and kept only as the floor if ALL_VARIANTS is disabled. The Vulkan module ships too. On machines without a Vulkan loader/driver the Vulkan module fails to load quietly and CPU keeps working — degradation verified by the provider-dl-vulkan and clean-install CI lanes. Build image needs the Vulkan SDK (glslc).",
|
|
47
|
+
"cacheVariables": {
|
|
48
|
+
"TRANSCRIBE_GGML_BACKEND_DL": "ON",
|
|
49
|
+
"TRANSCRIBE_VULKAN": "ON",
|
|
50
|
+
"GGML_VULKAN": "ON",
|
|
51
|
+
"GGML_CPU_ALL_VARIANTS": "ON"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "wheel-windows-cpu-vulkan",
|
|
56
|
+
"inherits": "wheel-linux-cpu-vulkan",
|
|
57
|
+
"displayName": "Windows x86_64 default wheel: CPU + Vulkan backend modules",
|
|
58
|
+
"description": "Same provider shape as wheel-linux-cpu-vulkan on Windows: conservative CPU module + Vulkan module, loaded package-locally (the Python loader calls os.add_dll_directory before CDLL). Build image needs the Vulkan SDK (glslc)."
|
|
59
|
+
}
|
|
60
|
+
]
|
|
61
|
+
}
|