-
-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
48 changed files
with
40 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+100 KB
(120%)
Whisper.net.Runtime.Clblast/win-x64/whisper.dll
100644 → 100755
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+156 KB
(130%)
Whisper.net.Runtime.Cublas/win-x64/whisper.dll
100644 → 100755
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,5 +60,5 @@ function BuildWasm() { | |
} | ||
|
||
BuildWasm | ||
#BuildOsxArm64 | ||
#BuildOsxX64 | ||
BuildOsxArm64 | ||
BuildOsxX64 |
Submodule whisper.cpp
updated
33 files
+1 −1 | CMakeLists.txt | |
+13 −6 | Makefile | |
+3 −1 | README.md | |
+1 −1 | bindings/go/Makefile | |
+14 −6 | bindings/go/pkg/whisper/context.go | |
+5 −1 | bindings/go/pkg/whisper/interface.go | |
+53 −1 | bindings/go/whisper.go | |
+1 −1 | bindings/go/whisper_test.go | |
+11 −0 | examples/common-ggml.cpp | |
+252 −40 | examples/common.cpp | |
+32 −2 | examples/common.h | |
+154 −81 | examples/main/main.cpp | |
+18 −16 | examples/quantize/quantize.cpp | |
+2 −2 | examples/talk-llama/llama-util.h | |
+3 −3 | examples/talk-llama/llama.cpp | |
+1 −1 | examples/whisper.nvim/whisper.nvim | |
+36 −24 | extra/quantize-all.sh | |
+4 −1 | extra/sync-ggml.sh | |
+2,738 −613 | ggml-cuda.cu | |
+15 −2 | ggml-cuda.h | |
+67 −0 | ggml-metal.h | |
+980 −0 | ggml-metal.m | |
+1,829 −0 | ggml-metal.metal | |
+0 −361 | ggml-opencl.c | |
+1,861 −0 | ggml-opencl.cpp | |
+11 −10 | ggml-opencl.h | |
+4,641 −1,608 | ggml.c | |
+427 −25 | ggml.h | |
+28 −7 | models/convert-pt-to-ggml.py | |
+1 −1 | models/download-ggml-model.cmd | |
+1 −1 | models/download-ggml-model.sh | |
+109 −0 | models/ggml_to_pt.py | |
+8 −32 | whisper.cpp |