@agency-lang/whisper-local 0.0.1
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.
- package/CMakeLists.txt +51 -0
- package/README.md +145 -0
- package/build/Release/whisper_addon.node +0 -0
- package/dist/src/addon.d.ts +11 -0
- package/dist/src/addon.js +22 -0
- package/dist/src/cli.d.ts +2 -0
- package/dist/src/cli.js +117 -0
- package/dist/src/ffmpeg.d.ts +11 -0
- package/dist/src/ffmpeg.js +154 -0
- package/dist/src/handleCache.d.ts +9 -0
- package/dist/src/handleCache.js +83 -0
- package/dist/src/modelManager.d.ts +12 -0
- package/dist/src/modelManager.js +172 -0
- package/dist/src/packageRoot.d.ts +8 -0
- package/dist/src/packageRoot.js +21 -0
- package/dist/src/transcribe.d.ts +2 -0
- package/dist/src/transcribe.js +36 -0
- package/dist/src/types.d.ts +11 -0
- package/dist/src/types.js +17 -0
- package/index.agency +32 -0
- package/models.lock.json +55 -0
- package/package.json +52 -0
- package/vendor/whisper.cpp/CMakeLists.txt +251 -0
- package/vendor/whisper.cpp/LICENSE +21 -0
- package/vendor/whisper.cpp/UPSTREAM_SHA256 +1 -0
- package/vendor/whisper.cpp/VERSION +1 -0
- package/vendor/whisper.cpp/cmake/DefaultTargetOptions.cmake +16 -0
- package/vendor/whisper.cpp/cmake/FindFFmpeg.cmake +163 -0
- package/vendor/whisper.cpp/cmake/build-info.cmake +60 -0
- package/vendor/whisper.cpp/cmake/git-vars.cmake +22 -0
- package/vendor/whisper.cpp/cmake/whisper-config.cmake.in +65 -0
- package/vendor/whisper.cpp/cmake/whisper.pc.in +10 -0
- package/vendor/whisper.cpp/ggml/CMakeLists.txt +434 -0
- package/vendor/whisper.cpp/ggml/cmake/BuildTypes.cmake +54 -0
- package/vendor/whisper.cpp/ggml/cmake/GitVars.cmake +22 -0
- package/vendor/whisper.cpp/ggml/cmake/common.cmake +50 -0
- package/vendor/whisper.cpp/ggml/cmake/ggml-config.cmake.in +152 -0
- package/vendor/whisper.cpp/ggml/include/ggml-alloc.h +76 -0
- package/vendor/whisper.cpp/ggml/include/ggml-backend.h +354 -0
- package/vendor/whisper.cpp/ggml/include/ggml-blas.h +25 -0
- package/vendor/whisper.cpp/ggml/include/ggml-cann.h +123 -0
- package/vendor/whisper.cpp/ggml/include/ggml-cpp.h +39 -0
- package/vendor/whisper.cpp/ggml/include/ggml-cpu.h +143 -0
- package/vendor/whisper.cpp/ggml/include/ggml-cuda.h +47 -0
- package/vendor/whisper.cpp/ggml/include/ggml-kompute.h +50 -0
- package/vendor/whisper.cpp/ggml/include/ggml-metal.h +66 -0
- package/vendor/whisper.cpp/ggml/include/ggml-opencl.h +26 -0
- package/vendor/whisper.cpp/ggml/include/ggml-opt.h +237 -0
- package/vendor/whisper.cpp/ggml/include/ggml-rpc.h +33 -0
- package/vendor/whisper.cpp/ggml/include/ggml-sycl.h +49 -0
- package/vendor/whisper.cpp/ggml/include/ggml-vulkan.h +29 -0
- package/vendor/whisper.cpp/ggml/include/ggml.h +2221 -0
- package/vendor/whisper.cpp/ggml/include/gguf.h +202 -0
- package/vendor/whisper.cpp/ggml/src/CMakeLists.txt +404 -0
- package/vendor/whisper.cpp/ggml/src/ggml-alloc.c +1042 -0
- package/vendor/whisper.cpp/ggml/src/ggml-amx/CMakeLists.txt +107 -0
- package/vendor/whisper.cpp/ggml/src/ggml-amx/common.h +94 -0
- package/vendor/whisper.cpp/ggml/src/ggml-amx/ggml-amx.cpp +446 -0
- package/vendor/whisper.cpp/ggml/src/ggml-amx/mmq.cpp +2510 -0
- package/vendor/whisper.cpp/ggml/src/ggml-amx/mmq.h +17 -0
- package/vendor/whisper.cpp/ggml/src/ggml-backend-impl.h +255 -0
- package/vendor/whisper.cpp/ggml/src/ggml-backend-reg.cpp +591 -0
- package/vendor/whisper.cpp/ggml/src/ggml-backend.cpp +2016 -0
- package/vendor/whisper.cpp/ggml/src/ggml-blas/CMakeLists.txt +87 -0
- package/vendor/whisper.cpp/ggml/src/ggml-blas/ggml-blas.cpp +517 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cann/CMakeLists.txt +75 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cann/Doxyfile +2579 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cann/acl_tensor.cpp +181 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cann/acl_tensor.h +258 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cann/aclnn_ops.cpp +3193 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cann/aclnn_ops.h +1125 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cann/common.h +425 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cann/ggml-cann.cpp +2630 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cann/kernels/CMakeLists.txt +30 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cann/kernels/ascendc_kernels.h +19 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cann/kernels/dup.cpp +234 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cann/kernels/get_row_f16.cpp +197 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cann/kernels/get_row_f32.cpp +190 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cann/kernels/get_row_q4_0.cpp +204 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cann/kernels/get_row_q8_0.cpp +191 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cann/kernels/quantize_f16_q8_0.cpp +218 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cann/kernels/quantize_f32_q8_0.cpp +216 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cann/kernels/quantize_float_to_q4_0.cpp +295 -0
- package/vendor/whisper.cpp/ggml/src/ggml-common.h +1861 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/CMakeLists.txt +584 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/amx/amx.cpp +221 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/amx/amx.h +8 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/amx/common.h +91 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/amx/mmq.cpp +2511 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/amx/mmq.h +10 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/arch/arm/cpu-feats.cpp +94 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/arch/arm/quants.c +4113 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/arch/arm/repack.cpp +2162 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/arch/loongarch/quants.c +2638 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/arch/powerpc/cpu-feats.cpp +82 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/arch/powerpc/quants.c +2731 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/arch/riscv/quants.c +2068 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/arch/riscv/repack.cpp +396 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/arch/s390/quants.c +1299 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/arch/wasm/quants.c +1480 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/arch/x86/cpu-feats.cpp +327 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/arch/x86/quants.c +4310 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/arch/x86/repack.cpp +3284 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/arch-fallback.h +184 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/binary-ops.cpp +158 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/binary-ops.h +16 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/cmake/FindSIMD.cmake +100 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/common.h +72 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/ggml-cpu-impl.h +511 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/ggml-cpu.c +3473 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/ggml-cpu.cpp +671 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/hbm.cpp +55 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/hbm.h +8 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/kleidiai/kernels.cpp +337 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/kleidiai/kernels.h +95 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/kleidiai/kleidiai.cpp +482 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/kleidiai/kleidiai.h +17 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/llamafile/sgemm.cpp +3593 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/llamafile/sgemm.h +19 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/ops.cpp +9085 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/ops.h +111 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/quants.c +1157 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/quants.h +89 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/repack.cpp +1570 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/repack.h +98 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/simd-mappings.h +1006 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/traits.cpp +36 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/traits.h +38 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/unary-ops.cpp +186 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/unary-ops.h +28 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/vec.cpp +321 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cpu/vec.h +973 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/CMakeLists.txt +184 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/acc.cu +61 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/acc.cuh +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/arange.cu +34 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/arange.cuh +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/argmax.cu +91 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/argmax.cuh +3 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/argsort.cu +104 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/argsort.cuh +3 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/binbcast.cu +363 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/binbcast.cuh +9 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/clamp.cu +45 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/clamp.cuh +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/common.cuh +812 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/concat.cu +221 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/concat.cuh +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/conv-transpose-1d.cu +89 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/conv-transpose-1d.cuh +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/conv2d-dw.cu +161 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/conv2d-dw.cuh +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/conv2d-transpose.cu +91 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/conv2d-transpose.cuh +4 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/convert.cu +730 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/convert.cuh +26 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/count-equal.cu +64 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/count-equal.cuh +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/cp-async.cuh +57 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/cpy.cu +705 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/cpy.cuh +11 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/cross-entropy-loss.cu +189 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/cross-entropy-loss.cuh +7 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/dequantize.cuh +103 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/diagmask.cu +40 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/diagmask.cuh +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/fattn-common.cuh +881 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/fattn-mma-f16.cuh +1474 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/fattn-tile-f16.cu +357 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/fattn-tile-f16.cuh +3 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/fattn-tile-f32.cu +365 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/fattn-tile-f32.cuh +3 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/fattn-vec-f16.cuh +482 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/fattn-vec-f32.cuh +472 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/fattn-wmma-f16.cu +634 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/fattn-wmma-f16.cuh +3 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/fattn.cu +346 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/fattn.cuh +3 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/getrows.cu +275 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/getrows.cuh +15 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/ggml-cuda.cu +3562 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/gla.cu +93 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/gla.cuh +3 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/im2col.cu +103 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/im2col.cuh +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/mma.cuh +396 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/mmq.cu +324 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/mmq.cuh +3217 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/mmv.cu +336 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/mmv.cuh +12 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/mmvq.cu +595 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/mmvq.cuh +12 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/norm.cu +458 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/norm.cuh +11 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/opt-step-adamw.cu +78 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/opt-step-adamw.cuh +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/out-prod.cu +68 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/out-prod.cuh +3 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/pad.cu +49 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/pad.cuh +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/pool2d.cu +94 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/pool2d.cuh +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/quantize.cu +190 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/quantize.cuh +27 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/rope.cu +456 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/rope.cuh +7 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/scale.cu +31 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/scale.cuh +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/softmax.cu +283 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/softmax.cuh +7 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/ssm-conv.cu +148 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/ssm-conv.cuh +3 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/ssm-scan.cu +155 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/ssm-scan.cuh +3 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/sum.cu +45 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/sum.cuh +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/sumrows.cu +39 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/sumrows.cuh +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_1-ncols2_16.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_1-ncols2_8.cu +10 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_16-ncols2_1.cu +10 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_16-ncols2_2.cu +10 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_16-ncols2_4.cu +10 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_2-ncols2_16.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_2-ncols2_4.cu +10 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_2-ncols2_8.cu +10 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_32-ncols2_1.cu +10 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_32-ncols2_2.cu +10 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_4-ncols2_16.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_4-ncols2_2.cu +10 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_4-ncols2_4.cu +10 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_4-ncols2_8.cu +10 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_64-ncols2_1.cu +10 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_8-ncols2_1.cu +10 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_8-ncols2_2.cu +10 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_8-ncols2_4.cu +10 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-mma-f16-instance-ncols1_8-ncols2_8.cu +10 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-f16.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q4_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q4_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q5_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q5_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q8_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-f16.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q4_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q4_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q5_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q5_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q8_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-f16.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q4_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q4_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q5_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q5_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q8_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-f16.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q4_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q4_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q5_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q5_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q8_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-f16.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q4_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q4_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q5_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q5_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q8_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-f16.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q4_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q4_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q5_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q5_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q8_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs256-f16-f16.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-f16.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q4_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q4_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q5_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q5_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q8_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-f16.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q4_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q4_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q5_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q5_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q8_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-f16.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q4_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q4_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q5_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q5_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q8_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-f16.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q4_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q4_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q5_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q5_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q8_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-f16.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q4_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q4_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q5_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q5_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q8_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-f16.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q4_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q4_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q5_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q5_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q8_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-f16.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q4_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q4_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q5_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q5_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q8_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs256-f16-f16.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-f16.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q4_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q4_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q5_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q5_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q8_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/generate_cu_files.py +78 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq1_s.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq2_s.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq2_xs.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq2_xxs.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq3_s.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq3_xxs.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq4_nl.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq4_xs.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q2_k.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q3_k.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q4_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q4_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q4_k.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q5_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q5_1.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q5_k.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q6_k.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q8_0.cu +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/tsembd.cu +47 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/tsembd.cuh +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/unary.cu +289 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/unary.cuh +59 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/upscale.cu +51 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/upscale.cuh +5 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/vecdotq.cuh +1135 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/vendors/cuda.h +15 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/vendors/hip.h +243 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/vendors/musa.h +140 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/wkv.cu +199 -0
- package/vendor/whisper.cpp/ggml/src/ggml-cuda/wkv.cuh +7 -0
- package/vendor/whisper.cpp/ggml/src/ggml-hip/CMakeLists.txt +135 -0
- package/vendor/whisper.cpp/ggml/src/ggml-impl.h +603 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/CMakeLists.txt +166 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/ggml-kompute.cpp +2251 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/common.comp +112 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_add.comp +58 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_addrow.comp +25 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_cpy_f16_f16.comp +52 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_cpy_f16_f32.comp +52 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_cpy_f32_f16.comp +52 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_cpy_f32_f32.comp +52 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_diagmask.comp +30 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_gelu.comp +22 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_getrows.comp +17 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_getrows_f16.comp +31 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_getrows_f32.comp +31 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_getrows_q4_0.comp +38 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_getrows_q4_1.comp +39 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_getrows_q6_k.comp +44 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_mul.comp +52 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_mul_mat_f16.comp +69 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_mul_mat_mat_f32.comp +51 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_mul_mat_q4_0.comp +33 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_mul_mat_q4_1.comp +35 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_mul_mat_q4_k.comp +140 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_mul_mat_q6_k.comp +106 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_mul_mat_q8_0.comp +73 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_mul_mv_q_n.comp +52 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_mul_mv_q_n_pre.comp +28 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_norm.comp +84 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_relu.comp +21 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_rmsnorm.comp +53 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_rope_neox_f16.comp +52 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_rope_neox_f32.comp +52 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_rope_norm_f16.comp +52 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_rope_norm_f32.comp +52 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_scale.comp +19 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_scale_8.comp +23 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_silu.comp +22 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/op_softmax.comp +72 -0
- package/vendor/whisper.cpp/ggml/src/ggml-kompute/kompute-shaders/rope_common.comp +71 -0
- package/vendor/whisper.cpp/ggml/src/ggml-metal/CMakeLists.txt +121 -0
- package/vendor/whisper.cpp/ggml/src/ggml-metal/ggml-metal-impl.h +622 -0
- package/vendor/whisper.cpp/ggml/src/ggml-metal/ggml-metal.m +6023 -0
- package/vendor/whisper.cpp/ggml/src/ggml-metal/ggml-metal.metal +7124 -0
- package/vendor/whisper.cpp/ggml/src/ggml-musa/CMakeLists.txt +113 -0
- package/vendor/whisper.cpp/ggml/src/ggml-musa/mudnn.cu +112 -0
- package/vendor/whisper.cpp/ggml/src/ggml-musa/mudnn.cuh +12 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/CMakeLists.txt +109 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/ggml-opencl.cpp +6665 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/add.cl +83 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/argsort.cl +86 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/clamp.cl +20 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/concat.cl +109 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/cpy.cl +184 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/cvt.cl +118 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/diag_mask_inf.cl +58 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/div.cl +72 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/embed_kernel.py +26 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/gelu.cl +62 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/gemv_noshuffle.cl +268 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/gemv_noshuffle_general.cl +274 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/get_rows.cl +163 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/group_norm.cl +72 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/im2col_f16.cl +57 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/im2col_f32.cl +57 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/mul.cl +79 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/mul_mat_Ab_Bi_8x4.cl +139 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/mul_mv_f16_f16.cl +118 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/mul_mv_f16_f32.cl +118 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/mul_mv_f16_f32_1row.cl +94 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/mul_mv_f16_f32_l4.cl +84 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/mul_mv_f32_f32.cl +118 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/mul_mv_id_q4_0_f32_8x_flat.cl +283 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32.cl +192 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32_1d_16x_flat.cl +307 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32_1d_8x_flat.cl +265 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32_8x_flat.cl +272 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/mul_mv_q4_0_f32_v.cl +254 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/mul_mv_q6_k.cl +190 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/norm.cl +81 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/pad.cl +30 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/relu.cl +16 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/repeat.cl +39 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/rms_norm.cl +96 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/rope.cl +721 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/scale.cl +16 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/sigmoid.cl +29 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/silu.cl +30 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/softmax_4_f16.cl +87 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/softmax_4_f32.cl +87 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/softmax_f16.cl +86 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/softmax_f32.cl +86 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/sub.cl +72 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/sum_rows.cl +39 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/tanh.cl +63 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/transpose.cl +84 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/tsembd.cl +48 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opencl/kernels/upscale.cl +121 -0
- package/vendor/whisper.cpp/ggml/src/ggml-opt.cpp +1037 -0
- package/vendor/whisper.cpp/ggml/src/ggml-quants.c +5230 -0
- package/vendor/whisper.cpp/ggml/src/ggml-quants.h +100 -0
- package/vendor/whisper.cpp/ggml/src/ggml-rpc/CMakeLists.txt +9 -0
- package/vendor/whisper.cpp/ggml/src/ggml-rpc/ggml-rpc.cpp +1816 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/CMakeLists.txt +189 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/backend.hpp +37 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/binbcast.cpp +344 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/binbcast.hpp +39 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/common.cpp +83 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/common.hpp +584 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/concat.cpp +182 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/concat.hpp +20 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/conv.cpp +95 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/conv.hpp +20 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/convert.cpp +575 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/convert.hpp +34 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/cpy.cpp +839 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/cpy.hpp +11 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/dequantize.hpp +823 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/dmmv.cpp +1144 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/dmmv.hpp +27 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/dpct/helper.hpp +2987 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/element_wise.cpp +1511 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/element_wise.hpp +77 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/gemm.hpp +102 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/getrows.cpp +212 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/getrows.hpp +20 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/ggml-sycl.cpp +4608 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/gla.cpp +106 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/gla.hpp +8 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/im2col.cpp +136 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/im2col.hpp +21 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/mmq.cpp +3010 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/mmq.hpp +33 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/mmvq.cpp +1065 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/mmvq.hpp +27 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/norm.cpp +482 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/norm.hpp +26 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/outprod.cpp +47 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/outprod.hpp +10 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/presets.hpp +74 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/quants.hpp +111 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/rope.cpp +472 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/rope.hpp +20 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/softmax.cpp +261 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/softmax.hpp +20 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/sycl_hw.cpp +13 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/sycl_hw.hpp +23 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/tsembd.cpp +67 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/tsembd.hpp +20 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/vecdotq.hpp +1307 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/wkv.cpp +289 -0
- package/vendor/whisper.cpp/ggml/src/ggml-sycl/wkv.hpp +10 -0
- package/vendor/whisper.cpp/ggml/src/ggml-threading.cpp +12 -0
- package/vendor/whisper.cpp/ggml/src/ggml-threading.h +14 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/CMakeLists.txt +189 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/cmake/host-toolchain.cmake.in +15 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/ggml-vulkan.cpp +10937 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/CMakeLists.txt +27 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/acc.comp +29 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/add.comp +29 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/argmax.comp +51 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/argsort.comp +69 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/clamp.comp +17 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/concat.comp +41 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/contig_copy.comp +49 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/conv2d_dw.comp +105 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/conv_transpose_1d.comp +98 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/copy.comp +23 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/copy_from_quant.comp +51 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/copy_to_quant.comp +242 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/cos.comp +17 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/count_equal.comp +31 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_f32.comp +20 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_funcs.comp +462 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_funcs_cm2.comp +699 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_head.comp +13 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq1_m.comp +42 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq1_s.comp +35 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq2_s.comp +44 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq2_xs.comp +43 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq2_xxs.comp +48 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq3_s.comp +39 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq3_xxs.comp +49 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq4_nl.comp +32 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_iq4_xs.comp +34 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q2_k.comp +34 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q3_k.comp +42 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q4_0.comp +30 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q4_1.comp +32 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q4_k.comp +68 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q5_0.comp +34 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q5_1.comp +35 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q5_k.comp +70 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q6_k.comp +33 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/dequant_q8_0.comp +31 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/diag_mask_inf.comp +34 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/div.comp +27 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn.comp +337 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_base.comp +162 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_cm1.comp +360 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_cm2.comp +267 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_split_k_reduce.comp +59 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/gelu.comp +25 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/gelu_quick.comp +23 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/generic_binary_head.comp +64 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/generic_head.comp +9 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/generic_unary_head.comp +76 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/get_rows.comp +33 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/get_rows_quant.comp +41 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/group_norm.comp +66 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/im2col.comp +100 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/l2_norm.comp +41 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/leaky_relu.comp +22 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul.comp +27 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_split_k_reduce.comp +48 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec.comp +169 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_base.comp +118 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq1_m.comp +82 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq1_s.comp +79 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq2_s.comp +90 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq2_xs.comp +87 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq2_xxs.comp +87 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq3_s.comp +90 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq3_xxs.comp +88 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_nc.comp +118 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_p021.comp +154 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q2_k.comp +130 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q3_k.comp +132 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q4_k.comp +136 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q5_k.comp +167 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_q6_k.comp +130 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mm.comp +868 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mm_cm2.comp +441 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq.comp +442 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq_funcs.comp +99 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/norm.comp +44 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/opt_step_adamw.comp +42 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/pad.comp +28 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/pool2d.comp +74 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/quantize_q8_1.comp +77 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/relu.comp +21 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/repeat.comp +26 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/repeat_back.comp +37 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/rms_norm.comp +52 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/rms_norm_back.comp +55 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/rope_head.comp +58 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/rope_multi.comp +60 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/rope_neox.comp +43 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/rope_norm.comp +43 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/rope_vision.comp +47 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/scale.comp +24 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/sigmoid.comp +20 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/silu.comp +22 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/silu_back.comp +26 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/sin.comp +17 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/soft_max.comp +173 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/soft_max_back.comp +50 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/square.comp +17 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/sub.comp +29 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/sum_rows.comp +37 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/tanh.comp +20 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/test_bfloat16_support.comp +7 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/test_coopmat2_support.comp +7 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/test_coopmat_support.comp +7 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/test_integer_dot_support.comp +7 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/timestep_embedding.comp +41 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/types.comp +1373 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/upscale.comp +36 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/vulkan-shaders-gen.cpp +753 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/wkv6.comp +87 -0
- package/vendor/whisper.cpp/ggml/src/ggml-vulkan/vulkan-shaders/wkv7.comp +91 -0
- package/vendor/whisper.cpp/ggml/src/ggml.c +6601 -0
- package/vendor/whisper.cpp/ggml/src/ggml.cpp +26 -0
- package/vendor/whisper.cpp/ggml/src/gguf.cpp +1347 -0
- package/vendor/whisper.cpp/include/whisper.h +738 -0
- package/vendor/whisper.cpp/src/CMakeLists.txt +145 -0
- package/vendor/whisper.cpp/src/coreml/whisper-compat.h +10 -0
- package/vendor/whisper.cpp/src/coreml/whisper-compat.m +35 -0
- package/vendor/whisper.cpp/src/coreml/whisper-decoder-impl.h +158 -0
- package/vendor/whisper.cpp/src/coreml/whisper-decoder-impl.m +227 -0
- package/vendor/whisper.cpp/src/coreml/whisper-encoder-impl.h +154 -0
- package/vendor/whisper.cpp/src/coreml/whisper-encoder-impl.m +223 -0
- package/vendor/whisper.cpp/src/coreml/whisper-encoder.h +26 -0
- package/vendor/whisper.cpp/src/coreml/whisper-encoder.mm +73 -0
- package/vendor/whisper.cpp/src/openvino/whisper-openvino-encoder.cpp +108 -0
- package/vendor/whisper.cpp/src/openvino/whisper-openvino-encoder.h +31 -0
- package/vendor/whisper.cpp/src/whisper-arch.h +197 -0
- package/vendor/whisper.cpp/src/whisper.cpp +8969 -0
|
@@ -0,0 +1,584 @@
|
|
|
1
|
+
function(ggml_add_cpu_backend_features cpu_name arch)
|
|
2
|
+
# The feature detection code is compiled as a separate target so that
|
|
3
|
+
# it can be built without the architecture flags
|
|
4
|
+
# Since multiple variants of the CPU backend may be included in the same
|
|
5
|
+
# build, using set_source_files_properties() to set the arch flags is not possible
|
|
6
|
+
set(GGML_CPU_FEATS_NAME ${cpu_name}-feats)
|
|
7
|
+
add_library(${GGML_CPU_FEATS_NAME} OBJECT ggml-cpu/arch/${arch}/cpu-feats.cpp)
|
|
8
|
+
target_include_directories(${GGML_CPU_FEATS_NAME} PRIVATE . .. ../include)
|
|
9
|
+
target_compile_definitions(${GGML_CPU_FEATS_NAME} PRIVATE ${ARGN})
|
|
10
|
+
target_compile_definitions(${GGML_CPU_FEATS_NAME} PRIVATE GGML_BACKEND_DL GGML_BACKEND_BUILD GGML_BACKEND_SHARED)
|
|
11
|
+
set_target_properties(${GGML_CPU_FEATS_NAME} PROPERTIES POSITION_INDEPENDENT_CODE ON)
|
|
12
|
+
target_link_libraries(${cpu_name} PRIVATE ${GGML_CPU_FEATS_NAME})
|
|
13
|
+
endfunction()
|
|
14
|
+
|
|
15
|
+
function(ggml_add_cpu_backend_variant_impl tag_name)
|
|
16
|
+
if (tag_name)
|
|
17
|
+
set(GGML_CPU_NAME ggml-cpu-${tag_name})
|
|
18
|
+
else()
|
|
19
|
+
set(GGML_CPU_NAME ggml-cpu)
|
|
20
|
+
endif()
|
|
21
|
+
|
|
22
|
+
ggml_add_backend_library(${GGML_CPU_NAME})
|
|
23
|
+
|
|
24
|
+
list (APPEND GGML_CPU_SOURCES
|
|
25
|
+
ggml-cpu/ggml-cpu.c
|
|
26
|
+
ggml-cpu/ggml-cpu.cpp
|
|
27
|
+
ggml-cpu/repack.cpp
|
|
28
|
+
ggml-cpu/repack.h
|
|
29
|
+
ggml-cpu/hbm.cpp
|
|
30
|
+
ggml-cpu/hbm.h
|
|
31
|
+
ggml-cpu/quants.c
|
|
32
|
+
ggml-cpu/quants.h
|
|
33
|
+
ggml-cpu/traits.cpp
|
|
34
|
+
ggml-cpu/traits.h
|
|
35
|
+
ggml-cpu/amx/amx.cpp
|
|
36
|
+
ggml-cpu/amx/amx.h
|
|
37
|
+
ggml-cpu/amx/mmq.cpp
|
|
38
|
+
ggml-cpu/amx/mmq.h
|
|
39
|
+
ggml-cpu/ggml-cpu-impl.h
|
|
40
|
+
ggml-cpu/common.h
|
|
41
|
+
ggml-cpu/binary-ops.h
|
|
42
|
+
ggml-cpu/binary-ops.cpp
|
|
43
|
+
ggml-cpu/unary-ops.h
|
|
44
|
+
ggml-cpu/unary-ops.cpp
|
|
45
|
+
ggml-cpu/simd-mappings.h
|
|
46
|
+
ggml-cpu/vec.h
|
|
47
|
+
ggml-cpu/vec.cpp
|
|
48
|
+
ggml-cpu/ops.h
|
|
49
|
+
ggml-cpu/ops.cpp
|
|
50
|
+
)
|
|
51
|
+
|
|
52
|
+
target_compile_features(${GGML_CPU_NAME} PRIVATE c_std_11 cxx_std_17)
|
|
53
|
+
target_include_directories(${GGML_CPU_NAME} PRIVATE . ggml-cpu)
|
|
54
|
+
|
|
55
|
+
if (APPLE AND GGML_ACCELERATE)
|
|
56
|
+
find_library(ACCELERATE_FRAMEWORK Accelerate)
|
|
57
|
+
if (ACCELERATE_FRAMEWORK)
|
|
58
|
+
message(STATUS "Accelerate framework found")
|
|
59
|
+
|
|
60
|
+
target_compile_definitions(${GGML_CPU_NAME} PRIVATE GGML_USE_ACCELERATE)
|
|
61
|
+
target_compile_definitions(${GGML_CPU_NAME} PRIVATE ACCELERATE_NEW_LAPACK)
|
|
62
|
+
target_compile_definitions(${GGML_CPU_NAME} PRIVATE ACCELERATE_LAPACK_ILP64)
|
|
63
|
+
|
|
64
|
+
target_link_libraries(${GGML_CPU_NAME} PRIVATE ${ACCELERATE_FRAMEWORK})
|
|
65
|
+
else()
|
|
66
|
+
message(WARNING "Accelerate framework not found")
|
|
67
|
+
endif()
|
|
68
|
+
endif()
|
|
69
|
+
|
|
70
|
+
if (GGML_OPENMP)
|
|
71
|
+
find_package(OpenMP)
|
|
72
|
+
if (OpenMP_FOUND)
|
|
73
|
+
target_compile_definitions(${GGML_CPU_NAME} PRIVATE GGML_USE_OPENMP)
|
|
74
|
+
|
|
75
|
+
target_link_libraries(${GGML_CPU_NAME} PRIVATE OpenMP::OpenMP_C OpenMP::OpenMP_CXX)
|
|
76
|
+
else()
|
|
77
|
+
message(WARNING "OpenMP not found")
|
|
78
|
+
endif()
|
|
79
|
+
endif()
|
|
80
|
+
|
|
81
|
+
if (GGML_LLAMAFILE)
|
|
82
|
+
target_compile_definitions(${GGML_CPU_NAME} PRIVATE GGML_USE_LLAMAFILE)
|
|
83
|
+
|
|
84
|
+
list(APPEND GGML_CPU_SOURCES
|
|
85
|
+
ggml-cpu/llamafile/sgemm.cpp
|
|
86
|
+
ggml-cpu/llamafile/sgemm.h)
|
|
87
|
+
endif()
|
|
88
|
+
|
|
89
|
+
if (GGML_CPU_HBM)
|
|
90
|
+
find_library(memkind memkind REQUIRED)
|
|
91
|
+
|
|
92
|
+
message(STATUS "Using memkind for CPU HBM")
|
|
93
|
+
|
|
94
|
+
target_compile_definitions(${GGML_CPU_NAME} PRIVATE GGML_USE_CPU_HBM)
|
|
95
|
+
|
|
96
|
+
target_link_libraries(${GGML_CPU_NAME} PUBLIC memkind)
|
|
97
|
+
endif()
|
|
98
|
+
|
|
99
|
+
if (GGML_SYSTEM_ARCH STREQUAL "ARM")
|
|
100
|
+
message(STATUS "ARM detected")
|
|
101
|
+
list(APPEND GGML_CPU_SOURCES
|
|
102
|
+
ggml-cpu/arch/arm/quants.c
|
|
103
|
+
ggml-cpu/arch/arm/repack.cpp
|
|
104
|
+
)
|
|
105
|
+
|
|
106
|
+
if (MSVC AND NOT CMAKE_C_COMPILER_ID STREQUAL "Clang")
|
|
107
|
+
message(FATAL_ERROR "MSVC is not supported for ARM, use clang")
|
|
108
|
+
else()
|
|
109
|
+
check_cxx_compiler_flag(-mfp16-format=ieee GGML_COMPILER_SUPPORTS_FP16_FORMAT_I3E)
|
|
110
|
+
if (NOT "${GGML_COMPILER_SUPPORTS_FP16_FORMAT_I3E}" STREQUAL "")
|
|
111
|
+
list(APPEND ARCH_FLAGS -mfp16-format=ieee)
|
|
112
|
+
endif()
|
|
113
|
+
|
|
114
|
+
if (GGML_NATIVE)
|
|
115
|
+
# -mcpu=native does not always enable all the features in some compilers,
|
|
116
|
+
# so we check for them manually and enable them if available
|
|
117
|
+
|
|
118
|
+
execute_process(
|
|
119
|
+
COMMAND ${CMAKE_C_COMPILER} -mcpu=native -E -v -
|
|
120
|
+
INPUT_FILE "/dev/null"
|
|
121
|
+
OUTPUT_QUIET
|
|
122
|
+
ERROR_VARIABLE ARM_MCPU
|
|
123
|
+
RESULT_VARIABLE ARM_MCPU_RESULT
|
|
124
|
+
)
|
|
125
|
+
if (NOT ARM_MCPU_RESULT)
|
|
126
|
+
string(REGEX MATCH "-mcpu=[^ ']+" ARM_MCPU_FLAG "${ARM_MCPU}")
|
|
127
|
+
endif()
|
|
128
|
+
if ("${ARM_MCPU_FLAG}" STREQUAL "")
|
|
129
|
+
set(ARM_MCPU_FLAG -mcpu=native)
|
|
130
|
+
message(STATUS "ARM -mcpu not found, -mcpu=native will be used")
|
|
131
|
+
endif()
|
|
132
|
+
|
|
133
|
+
include(CheckCXXSourceRuns)
|
|
134
|
+
|
|
135
|
+
function(check_arm_feature tag code)
|
|
136
|
+
set(CMAKE_REQUIRED_FLAGS_SAVE ${CMAKE_REQUIRED_FLAGS})
|
|
137
|
+
set(CMAKE_REQUIRED_FLAGS "${ARM_MCPU_FLAG}+${tag}")
|
|
138
|
+
check_cxx_source_runs("${code}" GGML_MACHINE_SUPPORTS_${tag})
|
|
139
|
+
if (GGML_MACHINE_SUPPORTS_${tag})
|
|
140
|
+
set(ARM_MCPU_FLAG_FIX "${ARM_MCPU_FLAG_FIX}+${tag}" PARENT_SCOPE)
|
|
141
|
+
else()
|
|
142
|
+
set(CMAKE_REQUIRED_FLAGS "${ARM_MCPU_FLAG}+no${tag}")
|
|
143
|
+
check_cxx_source_compiles("int main() { return 0; }" GGML_MACHINE_SUPPORTS_no${tag})
|
|
144
|
+
if (GGML_MACHINE_SUPPORTS_no${tag})
|
|
145
|
+
set(ARM_MCPU_FLAG_FIX "${ARM_MCPU_FLAG_FIX}+no${tag}" PARENT_SCOPE)
|
|
146
|
+
endif()
|
|
147
|
+
endif()
|
|
148
|
+
set(CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS_SAVE})
|
|
149
|
+
endfunction()
|
|
150
|
+
|
|
151
|
+
check_arm_feature(dotprod "#include <arm_neon.h>\nint main() { int8x16_t _a, _b; volatile int32x4_t _s = vdotq_s32(_s, _a, _b); return 0; }")
|
|
152
|
+
check_arm_feature(i8mm "#include <arm_neon.h>\nint main() { int8x16_t _a, _b; volatile int32x4_t _s = vmmlaq_s32(_s, _a, _b); return 0; }")
|
|
153
|
+
check_arm_feature(sve "#include <arm_sve.h>\nint main() { svfloat32_t _a, _b; volatile svfloat32_t _c = svadd_f32_z(svptrue_b8(), _a, _b); return 0; }")
|
|
154
|
+
check_arm_feature(sme "#include <arm_sme.h>\n__arm_locally_streaming int main() { __asm__ volatile(\"smstart; smstop;\"); return 0; }")
|
|
155
|
+
|
|
156
|
+
list(APPEND ARCH_FLAGS "${ARM_MCPU_FLAG}${ARM_MCPU_FLAG_FIX}")
|
|
157
|
+
else()
|
|
158
|
+
if (GGML_CPU_ARM_ARCH)
|
|
159
|
+
list(APPEND ARCH_FLAGS -march=${GGML_CPU_ARM_ARCH})
|
|
160
|
+
elseif(GGML_CPU_ALL_VARIANTS)
|
|
161
|
+
# Begin with the lowest baseline
|
|
162
|
+
set(ARM_MCPU "armv8-a")
|
|
163
|
+
set(ARCH_TAGS "")
|
|
164
|
+
set(ARCH_DEFINITIONS "")
|
|
165
|
+
|
|
166
|
+
# When a feature is selected, bump the MCPU to the first
|
|
167
|
+
# version that supported it
|
|
168
|
+
if (GGML_INTERNAL_DOTPROD)
|
|
169
|
+
set(ARM_MCPU "armv8.2-a")
|
|
170
|
+
set(ARCH_TAGS "${ARCH_TAGS}+dotprod")
|
|
171
|
+
list(APPEND ARCH_DEFINITIONS GGML_USE_DOTPROD)
|
|
172
|
+
endif()
|
|
173
|
+
if (GGML_INTERNAL_FP16_VECTOR_ARITHMETIC)
|
|
174
|
+
set(ARM_MCPU "armv8.2-a")
|
|
175
|
+
set(ARCH_TAGS "${ARCH_TAGS}+fp16")
|
|
176
|
+
list(APPEND ARCH_DEFINITIONS GGML_USE_FP16_VECTOR_ARITHMETIC)
|
|
177
|
+
endif()
|
|
178
|
+
if (GGML_INTERNAL_SVE)
|
|
179
|
+
set(ARM_MCPU "armv8.2-a")
|
|
180
|
+
set(ARCH_TAGS "${ARCH_TAGS}+sve")
|
|
181
|
+
list(APPEND ARCH_DEFINITIONS GGML_USE_SVE)
|
|
182
|
+
endif()
|
|
183
|
+
if (GGML_INTERNAL_MATMUL_INT8)
|
|
184
|
+
set(ARM_MCPU "armv8.6-a")
|
|
185
|
+
set(ARCH_TAGS "${ARCH_TAGS}+i8mm")
|
|
186
|
+
list(APPEND ARCH_DEFINITIONS GGML_USE_MATMUL_INT8)
|
|
187
|
+
endif()
|
|
188
|
+
if (GGML_INTERNAL_SVE2)
|
|
189
|
+
set(ARM_MCPU "armv8.6-a")
|
|
190
|
+
set(ARCH_TAGS "${ARCH_TAGS}+sve2")
|
|
191
|
+
list(APPEND ARCH_DEFINITIONS GGML_USE_SVE2)
|
|
192
|
+
endif()
|
|
193
|
+
if (GGML_INTERNAL_NOSVE)
|
|
194
|
+
set(ARCH_TAGS "${ARCH_TAGS}+nosve")
|
|
195
|
+
endif()
|
|
196
|
+
if (GGML_INTERNAL_SME)
|
|
197
|
+
set(ARM_MCPU "armv9.2-a")
|
|
198
|
+
set(ARCH_TAGS "${ARCH_TAGS}+sme")
|
|
199
|
+
list(APPEND ARCH_DEFINITIONS GGML_USE_SME)
|
|
200
|
+
endif()
|
|
201
|
+
list(APPEND ARCH_FLAGS "-march=${ARM_MCPU}${ARCH_TAGS}")
|
|
202
|
+
ggml_add_cpu_backend_features(${GGML_CPU_NAME} arm ${ARCH_DEFINITIONS})
|
|
203
|
+
endif()
|
|
204
|
+
endif()
|
|
205
|
+
|
|
206
|
+
# show enabled features
|
|
207
|
+
if (CMAKE_HOST_SYSTEM_NAME STREQUAL "Windows")
|
|
208
|
+
set(FEAT_INPUT_FILE "NUL")
|
|
209
|
+
else()
|
|
210
|
+
set(FEAT_INPUT_FILE "/dev/null")
|
|
211
|
+
endif()
|
|
212
|
+
|
|
213
|
+
execute_process(
|
|
214
|
+
COMMAND ${CMAKE_C_COMPILER} ${ARCH_FLAGS} -dM -E -
|
|
215
|
+
INPUT_FILE ${FEAT_INPUT_FILE}
|
|
216
|
+
OUTPUT_VARIABLE ARM_FEATURE
|
|
217
|
+
RESULT_VARIABLE ARM_FEATURE_RESULT
|
|
218
|
+
)
|
|
219
|
+
if (ARM_FEATURE_RESULT)
|
|
220
|
+
message(WARNING "Failed to get ARM features")
|
|
221
|
+
else()
|
|
222
|
+
foreach(feature DOTPROD SVE MATMUL_INT8 FMA FP16_VECTOR_ARITHMETIC SME)
|
|
223
|
+
string(FIND "${ARM_FEATURE}" "__ARM_FEATURE_${feature} 1" feature_pos)
|
|
224
|
+
if (NOT ${feature_pos} EQUAL -1)
|
|
225
|
+
message(STATUS "ARM feature ${feature} enabled")
|
|
226
|
+
endif()
|
|
227
|
+
endforeach()
|
|
228
|
+
endif()
|
|
229
|
+
endif()
|
|
230
|
+
elseif (GGML_SYSTEM_ARCH STREQUAL "x86")
|
|
231
|
+
message(STATUS "x86 detected")
|
|
232
|
+
list(APPEND GGML_CPU_SOURCES
|
|
233
|
+
ggml-cpu/arch/x86/quants.c
|
|
234
|
+
ggml-cpu/arch/x86/repack.cpp
|
|
235
|
+
)
|
|
236
|
+
|
|
237
|
+
if (MSVC)
|
|
238
|
+
# instruction set detection for MSVC only
|
|
239
|
+
if (GGML_NATIVE)
|
|
240
|
+
include(ggml-cpu/cmake/FindSIMD.cmake)
|
|
241
|
+
endif ()
|
|
242
|
+
if (GGML_AVX512)
|
|
243
|
+
list(APPEND ARCH_FLAGS /arch:AVX512)
|
|
244
|
+
# /arch:AVX512 includes: __AVX512F__, __AVX512CD__, __AVX512BW__, __AVX512DQ__, and __AVX512VL__
|
|
245
|
+
# MSVC has no compile-time flags enabling specific
|
|
246
|
+
# AVX512 extensions, neither it defines the
|
|
247
|
+
# macros corresponding to the extensions.
|
|
248
|
+
# Do it manually.
|
|
249
|
+
list(APPEND ARCH_DEFINITIONS GGML_AVX512)
|
|
250
|
+
if (GGML_AVX512_VBMI)
|
|
251
|
+
list(APPEND ARCH_DEFINITIONS __AVX512VBMI__)
|
|
252
|
+
if (CMAKE_C_COMPILER_ID STREQUAL "Clang")
|
|
253
|
+
list(APPEND ARCH_FLAGS -mavx512vbmi)
|
|
254
|
+
endif()
|
|
255
|
+
endif()
|
|
256
|
+
if (GGML_AVX512_VNNI)
|
|
257
|
+
list(APPEND ARCH_DEFINITIONS __AVX512VNNI__ GGML_AVX512_VNNI)
|
|
258
|
+
if (CMAKE_C_COMPILER_ID STREQUAL "Clang")
|
|
259
|
+
list(APPEND ARCH_FLAGS -mavx512vnni)
|
|
260
|
+
endif()
|
|
261
|
+
endif()
|
|
262
|
+
if (GGML_AVX512_BF16)
|
|
263
|
+
list(APPEND ARCH_DEFINITIONS __AVX512BF16__ GGML_AVX512_BF16)
|
|
264
|
+
if (CMAKE_C_COMPILER_ID STREQUAL "Clang")
|
|
265
|
+
list(APPEND ARCH_FLAGS -mavx512bf16)
|
|
266
|
+
endif()
|
|
267
|
+
endif()
|
|
268
|
+
if (GGML_AMX_TILE)
|
|
269
|
+
list(APPEND ARCH_DEFINITIONS __AMX_TILE__ GGML_AMX_TILE)
|
|
270
|
+
endif()
|
|
271
|
+
if (GGML_AMX_INT8)
|
|
272
|
+
list(APPEND ARCH_DEFINITIONS __AMX_INT8__ GGML_AMX_INT8)
|
|
273
|
+
endif()
|
|
274
|
+
if (GGML_AMX_BF16)
|
|
275
|
+
list(APPEND ARCH_DEFINITIONS __AMX_BF16__ GGML_AMX_BF16)
|
|
276
|
+
endif()
|
|
277
|
+
elseif (GGML_AVX2)
|
|
278
|
+
list(APPEND ARCH_FLAGS /arch:AVX2)
|
|
279
|
+
list(APPEND ARCH_DEFINITIONS GGML_AVX2 GGML_FMA GGML_F16C)
|
|
280
|
+
elseif (GGML_AVX)
|
|
281
|
+
list(APPEND ARCH_FLAGS /arch:AVX)
|
|
282
|
+
list(APPEND ARCH_DEFINITIONS GGML_AVX)
|
|
283
|
+
elseif (GGML_SSE42)
|
|
284
|
+
list(APPEND ARCH_FLAGS /arch:SSE4.2)
|
|
285
|
+
list(APPEND ARCH_DEFINITIONS GGML_SSE42)
|
|
286
|
+
endif()
|
|
287
|
+
if (GGML_AVX_VNNI)
|
|
288
|
+
list(APPEND ARCH_DEFINITIONS __AVXVNNI__ GGML_AVX_VNNI)
|
|
289
|
+
endif()
|
|
290
|
+
if (GGML_BMI2)
|
|
291
|
+
# MSVC does not define macro __BMI2__
|
|
292
|
+
list(APPEND ARCH_DEFINITIONS __BMI2__ GGML_BMI2)
|
|
293
|
+
endif()
|
|
294
|
+
else ()
|
|
295
|
+
if (GGML_NATIVE)
|
|
296
|
+
list(APPEND ARCH_FLAGS -march=native)
|
|
297
|
+
else ()
|
|
298
|
+
if (GGML_SSE42)
|
|
299
|
+
list(APPEND ARCH_FLAGS -msse4.2)
|
|
300
|
+
list(APPEND ARCH_DEFINITIONS GGML_SSE42)
|
|
301
|
+
endif()
|
|
302
|
+
if (GGML_F16C)
|
|
303
|
+
list(APPEND ARCH_FLAGS -mf16c)
|
|
304
|
+
list(APPEND ARCH_DEFINITIONS GGML_F16C)
|
|
305
|
+
endif()
|
|
306
|
+
if (GGML_FMA)
|
|
307
|
+
list(APPEND ARCH_FLAGS -mfma)
|
|
308
|
+
list(APPEND ARCH_DEFINITIONS GGML_FMA)
|
|
309
|
+
endif()
|
|
310
|
+
if (GGML_BMI2)
|
|
311
|
+
list(APPEND ARCH_FLAGS -mbmi2)
|
|
312
|
+
list(APPEND ARCH_DEFINITIONS GGML_BMI2)
|
|
313
|
+
endif()
|
|
314
|
+
if (GGML_AVX)
|
|
315
|
+
list(APPEND ARCH_FLAGS -mavx)
|
|
316
|
+
list(APPEND ARCH_DEFINITIONS GGML_AVX)
|
|
317
|
+
endif()
|
|
318
|
+
if (GGML_AVX2)
|
|
319
|
+
list(APPEND ARCH_FLAGS -mavx2)
|
|
320
|
+
list(APPEND ARCH_DEFINITIONS GGML_AVX2)
|
|
321
|
+
endif()
|
|
322
|
+
if (GGML_AVX_VNNI)
|
|
323
|
+
list(APPEND ARCH_FLAGS -mavxvnni)
|
|
324
|
+
list(APPEND ARCH_DEFINITIONS GGML_AVX_VNNI)
|
|
325
|
+
endif()
|
|
326
|
+
if (GGML_AVX512)
|
|
327
|
+
list(APPEND ARCH_FLAGS -mavx512f)
|
|
328
|
+
list(APPEND ARCH_FLAGS -mavx512cd)
|
|
329
|
+
list(APPEND ARCH_FLAGS -mavx512vl)
|
|
330
|
+
list(APPEND ARCH_FLAGS -mavx512dq)
|
|
331
|
+
list(APPEND ARCH_FLAGS -mavx512bw)
|
|
332
|
+
list(APPEND ARCH_DEFINITIONS GGML_AVX512)
|
|
333
|
+
endif()
|
|
334
|
+
if (GGML_AVX512_VBMI)
|
|
335
|
+
list(APPEND ARCH_FLAGS -mavx512vbmi)
|
|
336
|
+
list(APPEND ARCH_DEFINITIONS GGML_AVX512_VBMI)
|
|
337
|
+
endif()
|
|
338
|
+
if (GGML_AVX512_VNNI)
|
|
339
|
+
list(APPEND ARCH_FLAGS -mavx512vnni)
|
|
340
|
+
list(APPEND ARCH_DEFINITIONS GGML_AVX512_VNNI)
|
|
341
|
+
endif()
|
|
342
|
+
if (GGML_AVX512_BF16)
|
|
343
|
+
list(APPEND ARCH_FLAGS -mavx512bf16)
|
|
344
|
+
list(APPEND ARCH_DEFINITIONS GGML_AVX512_BF16)
|
|
345
|
+
endif()
|
|
346
|
+
if (GGML_AMX_TILE)
|
|
347
|
+
list(APPEND ARCH_FLAGS -mamx-tile)
|
|
348
|
+
list(APPEND ARCH_DEFINITIONS GGML_AMX_TILE)
|
|
349
|
+
endif()
|
|
350
|
+
if (GGML_AMX_INT8)
|
|
351
|
+
list(APPEND ARCH_FLAGS -mamx-int8)
|
|
352
|
+
list(APPEND ARCH_DEFINITIONS GGML_AMX_INT8)
|
|
353
|
+
endif()
|
|
354
|
+
if (GGML_AMX_BF16)
|
|
355
|
+
list(APPEND ARCH_FLAGS -mamx-bf16)
|
|
356
|
+
list(APPEND ARCH_DEFINITIONS GGML_AMX_BF16)
|
|
357
|
+
endif()
|
|
358
|
+
endif()
|
|
359
|
+
endif()
|
|
360
|
+
|
|
361
|
+
if (GGML_BACKEND_DL)
|
|
362
|
+
if (GGML_NATIVE)
|
|
363
|
+
# the feature check relies on ARCH_DEFINITIONS, but it is not set with GGML_NATIVE
|
|
364
|
+
message(FATAL_ERROR "GGML_NATIVE is not compatible with GGML_BACKEND_DL, consider using GGML_CPU_ALL_VARIANTS")
|
|
365
|
+
endif()
|
|
366
|
+
ggml_add_cpu_backend_features(${GGML_CPU_NAME} x86 ${ARCH_DEFINITIONS})
|
|
367
|
+
endif()
|
|
368
|
+
elseif (GGML_SYSTEM_ARCH STREQUAL "PowerPC")
|
|
369
|
+
message(STATUS "PowerPC detected")
|
|
370
|
+
list(APPEND GGML_CPU_SOURCES ggml-cpu/arch/powerpc/quants.c)
|
|
371
|
+
if (GGML_NATIVE)
|
|
372
|
+
if (${CMAKE_SYSTEM_PROCESSOR} MATCHES "ppc64")
|
|
373
|
+
file(READ "/proc/cpuinfo" POWER10_M)
|
|
374
|
+
elseif (${CMAKE_SYSTEM_PROCESSOR} MATCHES "powerpc")
|
|
375
|
+
execute_process(COMMAND bash -c "prtconf |grep 'Implementation' | head -n 1" OUTPUT_VARIABLE POWER10_M)
|
|
376
|
+
endif()
|
|
377
|
+
|
|
378
|
+
string(TOUPPER "${POWER10_M}" POWER10_M_UPPER)
|
|
379
|
+
string(REGEX MATCHALL "POWER *([0-9]+)" MATCHED_STRING "${POWER10_M_UPPER}")
|
|
380
|
+
string(REGEX REPLACE "POWER *([0-9]+)" "\\1" EXTRACTED_NUMBER "${MATCHED_STRING}")
|
|
381
|
+
|
|
382
|
+
if (EXTRACTED_NUMBER GREATER_EQUAL 10)
|
|
383
|
+
list(APPEND ARCH_FLAGS -mcpu=power10 -mpowerpc64)
|
|
384
|
+
elseif (EXTRACTED_NUMBER EQUAL 9)
|
|
385
|
+
list(APPEND ARCH_FLAGS -mcpu=power9 -mpowerpc64)
|
|
386
|
+
elseif (${CMAKE_SYSTEM_PROCESSOR} MATCHES "ppc64le")
|
|
387
|
+
list(APPEND ARCH_FLAGS -mcpu=powerpc64le -mtune=native)
|
|
388
|
+
else()
|
|
389
|
+
list(APPEND ARCH_FLAGS -mcpu=native -mtune=native -mpowerpc64)
|
|
390
|
+
endif()
|
|
391
|
+
elseif(GGML_CPU_ALL_VARIANTS)
|
|
392
|
+
# Begin with the lowest baseline
|
|
393
|
+
set(ARCH_DEFINITIONS "")
|
|
394
|
+
|
|
395
|
+
# When a feature is selected, bump the MCPU to the first
|
|
396
|
+
# version that supported it
|
|
397
|
+
foreach(PVER RANGE 7 11)
|
|
398
|
+
if(DEFINED GGML_INTERNAL_POWER${PVER})
|
|
399
|
+
set(POWERPC_MCPU "power${PVER}")
|
|
400
|
+
list(APPEND ARCH_DEFINITIONS GGML_USE_POWER${PVER})
|
|
401
|
+
endif()
|
|
402
|
+
endforeach()
|
|
403
|
+
if (GGML_INTERNAL_VSX)
|
|
404
|
+
list(APPEND ARCH_DEFINITIONS GGML_USE_VSX)
|
|
405
|
+
list(APPEND ARCH_FLAGS -mvsx)
|
|
406
|
+
endif()
|
|
407
|
+
|
|
408
|
+
if (DEFINED POWERPC_MCPU)
|
|
409
|
+
list(APPEND ARCH_FLAGS -mcpu=${POWERPC_MCPU})
|
|
410
|
+
endif()
|
|
411
|
+
ggml_add_cpu_backend_features(${GGML_CPU_NAME} powerpc ${ARCH_DEFINITIONS})
|
|
412
|
+
else()
|
|
413
|
+
if (GGML_CPU_POWERPC_CPUTYPE)
|
|
414
|
+
list(APPEND ARCH_FLAGS -mcpu=${GGML_CPU_POWERPC_CPUTYPE})
|
|
415
|
+
endif()
|
|
416
|
+
endif()
|
|
417
|
+
elseif (GGML_SYSTEM_ARCH STREQUAL "loongarch64")
|
|
418
|
+
message(STATUS "loongarch64 detected")
|
|
419
|
+
list(APPEND GGML_CPU_SOURCES ggml-cpu/arch/loongarch/quants.c)
|
|
420
|
+
|
|
421
|
+
list(APPEND ARCH_FLAGS -march=loongarch64)
|
|
422
|
+
if (GGML_LASX)
|
|
423
|
+
list(APPEND ARCH_FLAGS -mlasx)
|
|
424
|
+
endif()
|
|
425
|
+
if (GGML_LSX)
|
|
426
|
+
list(APPEND ARCH_FLAGS -mlsx)
|
|
427
|
+
endif()
|
|
428
|
+
elseif (GGML_SYSTEM_ARCH STREQUAL "riscv64")
|
|
429
|
+
message(STATUS "riscv64 detected")
|
|
430
|
+
list(APPEND GGML_CPU_SOURCES
|
|
431
|
+
ggml-cpu/arch/riscv/quants.c
|
|
432
|
+
ggml-cpu/arch/riscv/repack.cpp
|
|
433
|
+
)
|
|
434
|
+
if (GGML_RVV)
|
|
435
|
+
if (GGML_XTHEADVECTOR)
|
|
436
|
+
list(APPEND ARCH_FLAGS -march=rv64gc_xtheadvector -mabi=lp64d)
|
|
437
|
+
elseif (GGML_RV_ZFH)
|
|
438
|
+
list(APPEND ARCH_FLAGS -march=rv64gcv_zfhmin -mabi=lp64d)
|
|
439
|
+
else()
|
|
440
|
+
list(APPEND ARCH_FLAGS -march=rv64gcv -mabi=lp64d)
|
|
441
|
+
endif()
|
|
442
|
+
endif()
|
|
443
|
+
elseif (GGML_SYSTEM_ARCH STREQUAL "s390x")
|
|
444
|
+
message(STATUS "s390x detected")
|
|
445
|
+
list(APPEND GGML_CPU_SOURCES ggml-cpu/arch/s390/quants.c)
|
|
446
|
+
file(READ "/proc/cpuinfo" CPUINFO_CONTENTS)
|
|
447
|
+
string(REGEX REPLACE "machine[ \t\r\n]*=[ \t\r\n]*([0-9]+)" "\\1" S390X_M ${CPUINFO_CONTENTS})
|
|
448
|
+
|
|
449
|
+
# TODO: Separation to determine activation of VX/VXE/VXE2
|
|
450
|
+
if (${S390X_M} MATCHES "8561|8562")
|
|
451
|
+
message(STATUS "z15 target")
|
|
452
|
+
list(APPEND ARCH_FLAGS -march=z15)
|
|
453
|
+
elseif (${S390X_M} MATCHES "3931")
|
|
454
|
+
message(STATUS "z16 target")
|
|
455
|
+
list(APPEND ARCH_FLAGS -march=z16)
|
|
456
|
+
elseif (${S390X_M} MATCHES "9175|9176")
|
|
457
|
+
# NOTE: Only available from GCC 15.1.0 onwards. Any z17 machine with compile issues must first verify their GCC version.
|
|
458
|
+
message(STATUS "z17 target")
|
|
459
|
+
list(APPEND ARCH_FLAGS -march=z17)
|
|
460
|
+
else()
|
|
461
|
+
message(STATUS "Unknown target")
|
|
462
|
+
message(WARNING "Unknown target. If you are compiling for z14 and earlier, you might have to add -DGGML_VXE=OFF.")
|
|
463
|
+
list(APPEND ARCH_FLAGS -march=native -mtune=native)
|
|
464
|
+
endif()
|
|
465
|
+
|
|
466
|
+
if (GGML_VXE)
|
|
467
|
+
list(APPEND ARCH_FLAGS -mvx -mzvector)
|
|
468
|
+
endif()
|
|
469
|
+
elseif (CMAKE_SYSTEM_PROCESSOR MATCHES "wasm")
|
|
470
|
+
message(STATUS "Wasm detected")
|
|
471
|
+
list (APPEND GGML_CPU_SOURCES ggml-cpu/arch/wasm/quants.c)
|
|
472
|
+
else()
|
|
473
|
+
message(WARNING "Unknown CPU architecture. Falling back to generic implementations.")
|
|
474
|
+
list(APPEND ARCH_FLAGS -DGGML_CPU_GENERIC)
|
|
475
|
+
endif()
|
|
476
|
+
|
|
477
|
+
if (GGML_CPU_REPACK)
|
|
478
|
+
target_compile_definitions(${GGML_CPU_NAME} PRIVATE GGML_USE_CPU_REPACK)
|
|
479
|
+
endif()
|
|
480
|
+
|
|
481
|
+
if (GGML_CPU_KLEIDIAI)
|
|
482
|
+
message(STATUS "Using KleidiAI optimized kernels if applicable")
|
|
483
|
+
|
|
484
|
+
# Disable the KleidiAI tests
|
|
485
|
+
set(KLEIDIAI_BUILD_TESTS OFF)
|
|
486
|
+
|
|
487
|
+
# Fetch KleidiAI sources:
|
|
488
|
+
include(FetchContent)
|
|
489
|
+
set(KLEIDIAI_COMMIT_TAG "v1.9.0")
|
|
490
|
+
set(KLEIDIAI_DOWNLOAD_URL "https://github.com/ARM-software/kleidiai/archive/refs/tags/${KLEIDIAI_COMMIT_TAG}.tar.gz")
|
|
491
|
+
set(KLEIDIAI_ARCHIVE_MD5 "2a8e1bb55d201557553545536489a017")
|
|
492
|
+
|
|
493
|
+
if (POLICY CMP0135)
|
|
494
|
+
cmake_policy(SET CMP0135 NEW)
|
|
495
|
+
endif()
|
|
496
|
+
|
|
497
|
+
FetchContent_Declare(KleidiAI_Download
|
|
498
|
+
URL ${KLEIDIAI_DOWNLOAD_URL}
|
|
499
|
+
DOWNLOAD_EXTRACT_TIMESTAMP NEW
|
|
500
|
+
URL_HASH MD5=${KLEIDIAI_ARCHIVE_MD5})
|
|
501
|
+
|
|
502
|
+
FetchContent_MakeAvailable(KleidiAI_Download)
|
|
503
|
+
FetchContent_GetProperties(KleidiAI_Download
|
|
504
|
+
SOURCE_DIR KLEIDIAI_SRC
|
|
505
|
+
POPULATED KLEIDIAI_POPULATED)
|
|
506
|
+
|
|
507
|
+
if (NOT KLEIDIAI_POPULATED)
|
|
508
|
+
message(FATAL_ERROR "KleidiAI source downloaded failed.")
|
|
509
|
+
endif()
|
|
510
|
+
|
|
511
|
+
add_compile_definitions(GGML_USE_CPU_KLEIDIAI)
|
|
512
|
+
|
|
513
|
+
# Remove kleidiai target after fetching it
|
|
514
|
+
if (TARGET kleidiai)
|
|
515
|
+
set_target_properties(kleidiai PROPERTIES EXCLUDE_FROM_ALL TRUE)
|
|
516
|
+
endif()
|
|
517
|
+
|
|
518
|
+
list(APPEND GGML_CPU_SOURCES
|
|
519
|
+
ggml-cpu/kleidiai/kleidiai.cpp
|
|
520
|
+
ggml-cpu/kleidiai/kernels.cpp
|
|
521
|
+
ggml-cpu/kleidiai/kleidiai.h
|
|
522
|
+
ggml-cpu/kleidiai/kernels.h
|
|
523
|
+
)
|
|
524
|
+
|
|
525
|
+
# KleidiAI
|
|
526
|
+
include_directories(
|
|
527
|
+
${KLEIDIAI_SRC}/
|
|
528
|
+
${KLEIDIAI_SRC}/kai/
|
|
529
|
+
${KLEIDIAI_SRC}/kai/ukernels/
|
|
530
|
+
${KLEIDIAI_SRC}/kai/ukernels/matmul/
|
|
531
|
+
${KLEIDIAI_SRC}/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/
|
|
532
|
+
${KLEIDIAI_SRC}/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/
|
|
533
|
+
${KLEIDIAI_SRC}/kai/ukernels/matmul/pack/)
|
|
534
|
+
|
|
535
|
+
set(ARCH_FLAGS_TEMP "${ARCH_FLAGS}")
|
|
536
|
+
if (NOT ARCH_FLAGS_TEMP)
|
|
537
|
+
string(REGEX MATCH "-march=[^ ]+" ARCH_FLAGS_TEMP "${CMAKE_C_FLAGS}")
|
|
538
|
+
endif()
|
|
539
|
+
string(FIND "${ARCH_FLAGS_TEMP}" "+dotprod" DOTPROD_ENABLED)
|
|
540
|
+
string(FIND "${ARCH_FLAGS_TEMP}" "+i8mm" I8MM_ENABLED)
|
|
541
|
+
string(FIND "${ARCH_FLAGS_TEMP}" "+sme" SME_ENABLED)
|
|
542
|
+
|
|
543
|
+
set(PRIVATE_ARCH_FLAGS ${ARCH_FLAGS_TEMP})
|
|
544
|
+
|
|
545
|
+
list(APPEND GGML_KLEIDIAI_SOURCES
|
|
546
|
+
${KLEIDIAI_SRC}/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32.c
|
|
547
|
+
${KLEIDIAI_SRC}/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32ps1s0scalef16_qsu4c32s16s0_neon.c
|
|
548
|
+
${KLEIDIAI_SRC}/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32_neon.c
|
|
549
|
+
${KLEIDIAI_SRC}/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pscalef16_qsu4c32s16s0.c)
|
|
550
|
+
|
|
551
|
+
if (NOT DOTPROD_ENABLED MATCHES -1)
|
|
552
|
+
list(APPEND GGML_KLEIDIAI_SOURCES
|
|
553
|
+
${KLEIDIAI_SRC}/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qsi4c32p4x8_1x4x32_neon_dotprod.c
|
|
554
|
+
${KLEIDIAI_SRC}/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4x4_1x4_neon_dotprod.c
|
|
555
|
+
${KLEIDIAI_SRC}/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x4_qsi4c32p4x4_16x4_neon_dotprod.c)
|
|
556
|
+
endif()
|
|
557
|
+
|
|
558
|
+
if (NOT I8MM_ENABLED MATCHES -1)
|
|
559
|
+
list(APPEND GGML_KLEIDIAI_SOURCES ${KLEIDIAI_SRC}/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_16x4_neon_i8mm.c)
|
|
560
|
+
endif()
|
|
561
|
+
|
|
562
|
+
if (NOT SME_ENABLED MATCHES -1)
|
|
563
|
+
list(APPEND GGML_KLEIDIAI_SOURCES
|
|
564
|
+
${KLEIDIAI_SRC}/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1vlx4_qsi4c32p4vlx4_1vlx4vl_sme2_mopa.c
|
|
565
|
+
${KLEIDIAI_SRC}/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4vlx4_1x4vl_sme2_sdot.c
|
|
566
|
+
${KLEIDIAI_SRC}/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p2vlx2_bf16p2vlx2_2vlx2vl_sme2_mopa.c
|
|
567
|
+
${KLEIDIAI_SRC}/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p2vlx2_f32_sme.c
|
|
568
|
+
${KLEIDIAI_SRC}/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p2vlx2b_f32_x32_sme.c)
|
|
569
|
+
set(PRIVATE_ARCH_FLAGS "-fno-tree-vectorize;${PRIVATE_ARCH_FLAGS}+sve+sve2")
|
|
570
|
+
endif()
|
|
571
|
+
|
|
572
|
+
set_source_files_properties(${GGML_KLEIDIAI_SOURCES} PROPERTIES COMPILE_OPTIONS "${PRIVATE_ARCH_FLAGS}")
|
|
573
|
+
list(APPEND GGML_CPU_SOURCES ${GGML_KLEIDIAI_SOURCES})
|
|
574
|
+
endif()
|
|
575
|
+
|
|
576
|
+
message(STATUS "Adding CPU backend variant ${GGML_CPU_NAME}: ${ARCH_FLAGS} ${ARCH_DEFINITIONS}")
|
|
577
|
+
target_sources(${GGML_CPU_NAME} PRIVATE ${GGML_CPU_SOURCES})
|
|
578
|
+
target_compile_options(${GGML_CPU_NAME} PRIVATE ${ARCH_FLAGS})
|
|
579
|
+
target_compile_definitions(${GGML_CPU_NAME} PRIVATE ${ARCH_DEFINITIONS})
|
|
580
|
+
|
|
581
|
+
if (EMSCRIPTEN)
|
|
582
|
+
set_target_properties(${GGML_CPU_NAME} PROPERTIES COMPILE_FLAGS "-msimd128")
|
|
583
|
+
endif()
|
|
584
|
+
endfunction()
|