From 634d182afee1d0a83c21d06fb45d64c9913a67f5 Mon Sep 17 00:00:00 2001 From: Bel LaPointe Date: Fri, 31 Mar 2023 10:33:10 -0600 Subject: [PATCH] rust is faster though less configurable --- whisper-cpp-2023/{main => c-whisper} | 0 whisper-cpp-2023/compare.sh | 1 + 2 files changed, 1 insertion(+) rename whisper-cpp-2023/{main => c-whisper} (100%) create mode 100644 whisper-cpp-2023/compare.sh diff --git a/whisper-cpp-2023/main b/whisper-cpp-2023/c-whisper similarity index 100% rename from whisper-cpp-2023/main rename to whisper-cpp-2023/c-whisper diff --git a/whisper-cpp-2023/compare.sh b/whisper-cpp-2023/compare.sh new file mode 100644 index 0000000..37ddbbb --- /dev/null +++ b/whisper-cpp-2023/compare.sh @@ -0,0 +1 @@ +m=models/ggml-tiny.en.bin; f=git.d/samples/jfk.wav; time MODEL=$m WAV=$f rust-whisper 2>&1 | tail; time ./c-whisper -m $m -f $f -t 4 2>&1 | tail