├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── llamafile ├── .clang-format ├── BUILD.mk ├── addnl.c ├── ansiblas.h ├── bench.h ├── bincompare.c ├── check_cpu.c ├── compcap.cu ├── copy.sh ├── cuda.bat ├── cuda.c ├── cuda.h ├── cuda.sh ├── cudaprops.cu ├── debug.cpp ├── debug.h ├── explain_a_warp_kernel.cpp ├── extract.c ├── flags.cpp ├── float.h ├── fp16.h ├── gemm.h ├── get_app_dir.c ├── get_tmp_dir.c ├── gpu.c ├── half.h ├── has.c ├── help.c ├── iqk_mul_mat.inc ├── iqk_mul_mat_amd_avx2.cpp ├── iqk_mul_mat_amd_zen4.cpp ├── is_file_newer_than.c ├── launch_browser.c ├── llamafile-250x250.png ├── llamafile-640x640.png ├── llamafile.c ├── llamafile.h ├── llamafile.svg ├── log.c ├── log.h ├── macros.h ├── metal.c ├── micros.h ├── naive.h ├── numba.h ├── pick_a_warp_kernel.c ├── rocm.bat ├── rocm.sh ├── schlep.c ├── security.c ├── sgemm.cpp ├── sgemm.h ├── sgemm_matmul_test.cpp ├── sgemm_sss_test.cpp ├── sgemm_vecdot_test.cpp ├── slicehf.c ├── tester.cu ├── tester.h ├── tinyblas.cu ├── tinyblas.h ├── tinyblas_cpu.h ├── tinyblas_cpu_mixmul.inc ├── tinyblas_cpu_mixmul_amd_avx.cpp ├── tinyblas_cpu_mixmul_amd_avx2.cpp ├── tinyblas_cpu_mixmul_amd_avx512f.cpp ├── tinyblas_cpu_mixmul_amd_avxvnni.cpp ├── tinyblas_cpu_mixmul_amd_fma.cpp ├── tinyblas_cpu_mixmul_amd_zen4.cpp ├── tinyblas_cpu_mixmul_arm80.cpp ├── tinyblas_cpu_mixmul_arm82.cpp ├── tinyblas_cpu_sgemm.inc ├── tinyblas_cpu_sgemm_amd_avx.cpp ├── tinyblas_cpu_sgemm_amd_avx2.cpp ├── tinyblas_cpu_sgemm_amd_avx512f.cpp ├── tinyblas_cpu_sgemm_amd_avxvnni.cpp ├── tinyblas_cpu_sgemm_amd_fma.cpp ├── tinyblas_cpu_sgemm_amd_zen4.cpp ├── tinyblas_cpu_sgemm_arm80.cpp ├── tinyblas_cpu_sgemm_arm82.cpp ├── tinyblas_cpu_unsupported.cpp ├── tinyblas_mnpack.py ├── tinyblas_test.cu ├── version.h ├── x.c ├── x.h ├── zip.c ├── zip.h ├── zipalign.1 ├── zipalign.1.asc ├── zipalign.c └── zipcheck.c └── whisper.cpp ├── .gitignore ├── .gitmodules ├── AUTHORS ├── BUILD.mk ├── CMakeLists.txt ├── LICENSE ├── Package.swift ├── README.md ├── README_sycl.md ├── common.cpp ├── common.h ├── dr_wav.h ├── ggml-alloc.c ├── ggml-alloc.h ├── ggml-backend-impl.h ├── ggml-backend.c ├── ggml-backend.h ├── ggml-common.h ├── ggml-cuda.cu ├── ggml-cuda.h ├── ggml-impl.h ├── ggml-metal.h ├── ggml-metal.m ├── ggml-metal.metal ├── ggml-quants-amd-avx.c ├── ggml-quants-amd-avx2.c ├── ggml-quants-amd-avx512.c ├── ggml-quants-arm80.c ├── ggml-quants.c ├── ggml-quants.cpp ├── ggml-quants.h ├── ggml-quants.inc ├── ggml-quants.py ├── ggml-rpc.cpp ├── ggml-rpc.h ├── ggml-vector-amd-avx.c ├── ggml-vector-amd-avx2.c ├── ggml-vector-amd-avx512.c ├── ggml-vector-amd-avx512bf16.c ├── ggml-vector-amd-f16c.c ├── ggml-vector-amd-fma.c ├── ggml-vector-arm80.c ├── ggml-vector-arm82.c ├── ggml-vector.cpp ├── ggml-vector.h ├── ggml-vector.inc ├── ggml-vector.py ├── ggml.c ├── ggml.h ├── json-schema-to-grammar.h ├── json.h ├── json.hpp ├── llamafile.h ├── server ├── BUILD.mk ├── CMakeLists.txt ├── README.md ├── httplib.h └── server.cpp ├── whisper.cpp └── whisper.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/README.md -------------------------------------------------------------------------------- /llamafile/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/.clang-format -------------------------------------------------------------------------------- /llamafile/BUILD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/BUILD.mk -------------------------------------------------------------------------------- /llamafile/addnl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/addnl.c -------------------------------------------------------------------------------- /llamafile/ansiblas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/ansiblas.h -------------------------------------------------------------------------------- /llamafile/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/bench.h -------------------------------------------------------------------------------- /llamafile/bincompare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/bincompare.c -------------------------------------------------------------------------------- /llamafile/check_cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/check_cpu.c -------------------------------------------------------------------------------- /llamafile/compcap.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/compcap.cu -------------------------------------------------------------------------------- /llamafile/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/copy.sh -------------------------------------------------------------------------------- /llamafile/cuda.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/cuda.bat -------------------------------------------------------------------------------- /llamafile/cuda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/cuda.c -------------------------------------------------------------------------------- /llamafile/cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/cuda.h -------------------------------------------------------------------------------- /llamafile/cuda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/cuda.sh -------------------------------------------------------------------------------- /llamafile/cudaprops.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/cudaprops.cu -------------------------------------------------------------------------------- /llamafile/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/debug.cpp -------------------------------------------------------------------------------- /llamafile/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/debug.h -------------------------------------------------------------------------------- /llamafile/explain_a_warp_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/explain_a_warp_kernel.cpp -------------------------------------------------------------------------------- /llamafile/extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/extract.c -------------------------------------------------------------------------------- /llamafile/flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/flags.cpp -------------------------------------------------------------------------------- /llamafile/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/float.h -------------------------------------------------------------------------------- /llamafile/fp16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/fp16.h -------------------------------------------------------------------------------- /llamafile/gemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/gemm.h -------------------------------------------------------------------------------- /llamafile/get_app_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/get_app_dir.c -------------------------------------------------------------------------------- /llamafile/get_tmp_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/get_tmp_dir.c -------------------------------------------------------------------------------- /llamafile/gpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/gpu.c -------------------------------------------------------------------------------- /llamafile/half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/half.h -------------------------------------------------------------------------------- /llamafile/has.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/has.c -------------------------------------------------------------------------------- /llamafile/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/help.c -------------------------------------------------------------------------------- /llamafile/iqk_mul_mat.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/iqk_mul_mat.inc -------------------------------------------------------------------------------- /llamafile/iqk_mul_mat_amd_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/iqk_mul_mat_amd_avx2.cpp -------------------------------------------------------------------------------- /llamafile/iqk_mul_mat_amd_zen4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/iqk_mul_mat_amd_zen4.cpp -------------------------------------------------------------------------------- /llamafile/is_file_newer_than.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/is_file_newer_than.c -------------------------------------------------------------------------------- /llamafile/launch_browser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/launch_browser.c -------------------------------------------------------------------------------- /llamafile/llamafile-250x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/llamafile-250x250.png -------------------------------------------------------------------------------- /llamafile/llamafile-640x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/llamafile-640x640.png -------------------------------------------------------------------------------- /llamafile/llamafile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/llamafile.c -------------------------------------------------------------------------------- /llamafile/llamafile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/llamafile.h -------------------------------------------------------------------------------- /llamafile/llamafile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/llamafile.svg -------------------------------------------------------------------------------- /llamafile/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/log.c -------------------------------------------------------------------------------- /llamafile/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/log.h -------------------------------------------------------------------------------- /llamafile/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/macros.h -------------------------------------------------------------------------------- /llamafile/metal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/metal.c -------------------------------------------------------------------------------- /llamafile/micros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/micros.h -------------------------------------------------------------------------------- /llamafile/naive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/naive.h -------------------------------------------------------------------------------- /llamafile/numba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/numba.h -------------------------------------------------------------------------------- /llamafile/pick_a_warp_kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/pick_a_warp_kernel.c -------------------------------------------------------------------------------- /llamafile/rocm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/rocm.bat -------------------------------------------------------------------------------- /llamafile/rocm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/rocm.sh -------------------------------------------------------------------------------- /llamafile/schlep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/schlep.c -------------------------------------------------------------------------------- /llamafile/security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/security.c -------------------------------------------------------------------------------- /llamafile/sgemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/sgemm.cpp -------------------------------------------------------------------------------- /llamafile/sgemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/sgemm.h -------------------------------------------------------------------------------- /llamafile/sgemm_matmul_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/sgemm_matmul_test.cpp -------------------------------------------------------------------------------- /llamafile/sgemm_sss_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/sgemm_sss_test.cpp -------------------------------------------------------------------------------- /llamafile/sgemm_vecdot_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/sgemm_vecdot_test.cpp -------------------------------------------------------------------------------- /llamafile/slicehf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/slicehf.c -------------------------------------------------------------------------------- /llamafile/tester.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tester.cu -------------------------------------------------------------------------------- /llamafile/tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tester.h -------------------------------------------------------------------------------- /llamafile/tinyblas.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas.cu -------------------------------------------------------------------------------- /llamafile/tinyblas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas.h -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas_cpu.h -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_mixmul.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas_cpu_mixmul.inc -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_mixmul_amd_avx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas_cpu_mixmul_amd_avx.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_mixmul_amd_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas_cpu_mixmul_amd_avx2.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_mixmul_amd_avx512f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas_cpu_mixmul_amd_avx512f.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_mixmul_amd_avxvnni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas_cpu_mixmul_amd_avxvnni.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_mixmul_amd_fma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas_cpu_mixmul_amd_fma.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_mixmul_amd_zen4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas_cpu_mixmul_amd_zen4.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_mixmul_arm80.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas_cpu_mixmul_arm80.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_mixmul_arm82.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas_cpu_mixmul_arm82.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_sgemm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas_cpu_sgemm.inc -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_sgemm_amd_avx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas_cpu_sgemm_amd_avx.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_sgemm_amd_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas_cpu_sgemm_amd_avx2.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_sgemm_amd_avx512f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas_cpu_sgemm_amd_avx512f.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_sgemm_amd_avxvnni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas_cpu_sgemm_amd_avxvnni.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_sgemm_amd_fma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas_cpu_sgemm_amd_fma.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_sgemm_amd_zen4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas_cpu_sgemm_amd_zen4.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_sgemm_arm80.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas_cpu_sgemm_arm80.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_sgemm_arm82.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas_cpu_sgemm_arm82.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_unsupported.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas_cpu_unsupported.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_mnpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas_mnpack.py -------------------------------------------------------------------------------- /llamafile/tinyblas_test.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/tinyblas_test.cu -------------------------------------------------------------------------------- /llamafile/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/version.h -------------------------------------------------------------------------------- /llamafile/x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/x.c -------------------------------------------------------------------------------- /llamafile/x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/x.h -------------------------------------------------------------------------------- /llamafile/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/zip.c -------------------------------------------------------------------------------- /llamafile/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/zip.h -------------------------------------------------------------------------------- /llamafile/zipalign.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/zipalign.1 -------------------------------------------------------------------------------- /llamafile/zipalign.1.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/zipalign.1.asc -------------------------------------------------------------------------------- /llamafile/zipalign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/zipalign.c -------------------------------------------------------------------------------- /llamafile/zipcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/llamafile/zipcheck.c -------------------------------------------------------------------------------- /whisper.cpp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/.gitignore -------------------------------------------------------------------------------- /whisper.cpp/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/.gitmodules -------------------------------------------------------------------------------- /whisper.cpp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/AUTHORS -------------------------------------------------------------------------------- /whisper.cpp/BUILD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/BUILD.mk -------------------------------------------------------------------------------- /whisper.cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/CMakeLists.txt -------------------------------------------------------------------------------- /whisper.cpp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/LICENSE -------------------------------------------------------------------------------- /whisper.cpp/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/Package.swift -------------------------------------------------------------------------------- /whisper.cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/README.md -------------------------------------------------------------------------------- /whisper.cpp/README_sycl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/README_sycl.md -------------------------------------------------------------------------------- /whisper.cpp/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/common.cpp -------------------------------------------------------------------------------- /whisper.cpp/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/common.h -------------------------------------------------------------------------------- /whisper.cpp/dr_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/dr_wav.h -------------------------------------------------------------------------------- /whisper.cpp/ggml-alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-alloc.c -------------------------------------------------------------------------------- /whisper.cpp/ggml-alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-alloc.h -------------------------------------------------------------------------------- /whisper.cpp/ggml-backend-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-backend-impl.h -------------------------------------------------------------------------------- /whisper.cpp/ggml-backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-backend.c -------------------------------------------------------------------------------- /whisper.cpp/ggml-backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-backend.h -------------------------------------------------------------------------------- /whisper.cpp/ggml-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-common.h -------------------------------------------------------------------------------- /whisper.cpp/ggml-cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-cuda.cu -------------------------------------------------------------------------------- /whisper.cpp/ggml-cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-cuda.h -------------------------------------------------------------------------------- /whisper.cpp/ggml-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-impl.h -------------------------------------------------------------------------------- /whisper.cpp/ggml-metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-metal.h -------------------------------------------------------------------------------- /whisper.cpp/ggml-metal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-metal.m -------------------------------------------------------------------------------- /whisper.cpp/ggml-metal.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-metal.metal -------------------------------------------------------------------------------- /whisper.cpp/ggml-quants-amd-avx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-quants-amd-avx.c -------------------------------------------------------------------------------- /whisper.cpp/ggml-quants-amd-avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-quants-amd-avx2.c -------------------------------------------------------------------------------- /whisper.cpp/ggml-quants-amd-avx512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-quants-amd-avx512.c -------------------------------------------------------------------------------- /whisper.cpp/ggml-quants-arm80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-quants-arm80.c -------------------------------------------------------------------------------- /whisper.cpp/ggml-quants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-quants.c -------------------------------------------------------------------------------- /whisper.cpp/ggml-quants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-quants.cpp -------------------------------------------------------------------------------- /whisper.cpp/ggml-quants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-quants.h -------------------------------------------------------------------------------- /whisper.cpp/ggml-quants.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-quants.inc -------------------------------------------------------------------------------- /whisper.cpp/ggml-quants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-quants.py -------------------------------------------------------------------------------- /whisper.cpp/ggml-rpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-rpc.cpp -------------------------------------------------------------------------------- /whisper.cpp/ggml-rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-rpc.h -------------------------------------------------------------------------------- /whisper.cpp/ggml-vector-amd-avx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-vector-amd-avx.c -------------------------------------------------------------------------------- /whisper.cpp/ggml-vector-amd-avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-vector-amd-avx2.c -------------------------------------------------------------------------------- /whisper.cpp/ggml-vector-amd-avx512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-vector-amd-avx512.c -------------------------------------------------------------------------------- /whisper.cpp/ggml-vector-amd-avx512bf16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-vector-amd-avx512bf16.c -------------------------------------------------------------------------------- /whisper.cpp/ggml-vector-amd-f16c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-vector-amd-f16c.c -------------------------------------------------------------------------------- /whisper.cpp/ggml-vector-amd-fma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-vector-amd-fma.c -------------------------------------------------------------------------------- /whisper.cpp/ggml-vector-arm80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-vector-arm80.c -------------------------------------------------------------------------------- /whisper.cpp/ggml-vector-arm82.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-vector-arm82.c -------------------------------------------------------------------------------- /whisper.cpp/ggml-vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-vector.cpp -------------------------------------------------------------------------------- /whisper.cpp/ggml-vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-vector.h -------------------------------------------------------------------------------- /whisper.cpp/ggml-vector.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-vector.inc -------------------------------------------------------------------------------- /whisper.cpp/ggml-vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml-vector.py -------------------------------------------------------------------------------- /whisper.cpp/ggml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml.c -------------------------------------------------------------------------------- /whisper.cpp/ggml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/ggml.h -------------------------------------------------------------------------------- /whisper.cpp/json-schema-to-grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/json-schema-to-grammar.h -------------------------------------------------------------------------------- /whisper.cpp/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/json.h -------------------------------------------------------------------------------- /whisper.cpp/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/json.hpp -------------------------------------------------------------------------------- /whisper.cpp/llamafile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/llamafile.h -------------------------------------------------------------------------------- /whisper.cpp/server/BUILD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/server/BUILD.mk -------------------------------------------------------------------------------- /whisper.cpp/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/server/CMakeLists.txt -------------------------------------------------------------------------------- /whisper.cpp/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/server/README.md -------------------------------------------------------------------------------- /whisper.cpp/server/httplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/server/httplib.h -------------------------------------------------------------------------------- /whisper.cpp/server/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/server/server.cpp -------------------------------------------------------------------------------- /whisper.cpp/whisper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/whisper.cpp -------------------------------------------------------------------------------- /whisper.cpp/whisper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjpais/whisperfile/HEAD/whisper.cpp/whisper.h --------------------------------------------------------------------------------