-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MM-59980] Upgrade to whisper.cpp v1.7.1 (#33)
* Avoid AV512 CPU extensions * Upgrade to whisper.cpp v1.7.1 * Go is not really needed in CI * Fix condition * Update opus * Fix expression
- Loading branch information
1 parent
a4131b6
commit 81a9db5
Showing
9 changed files
with
48 additions
and
36 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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
diff --git a/Makefile b/Makefile | ||
index 32b7cbb..9ac28a4 100644 | ||
--- a/Makefile | ||
+++ b/Makefile | ||
@@ -361,12 +361,12 @@ ifndef RISCV | ||
|
||
ifeq ($(UNAME_M),$(filter $(UNAME_M),x86_64 i686 amd64)) | ||
# Use all CPU extensions that are available: | ||
- MK_CFLAGS += -march=native -mtune=native | ||
- HOST_CXXFLAGS += -march=native -mtune=native | ||
+ #MK_CFLAGS += -march=native -mtune=native | ||
+ #HOST_CXXFLAGS += -march=native -mtune=native | ||
|
||
# Usage AVX-only | ||
- #MK_CFLAGS += -mfma -mf16c -mavx | ||
- #MK_CXXFLAGS += -mfma -mf16c -mavx | ||
+ MK_CFLAGS += -mfma -mf16c -mavx | ||
+ MK_CXXFLAGS += -mfma -mf16c -mavx | ||
|
||
# Usage SSSE3-only (Not is SSE3!) | ||
#MK_CFLAGS += -mssse3 |
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