Spaces:
Running
Running
Update README.md
Browse files- examples/bench/README.md +5 -1
examples/bench/README.md
CHANGED
|
@@ -4,7 +4,11 @@ A very basic tool for benchmarking the inference performance on your device. The
|
|
| 4 |
|
| 5 |
Benchmark results are tracked in the following Github issue: https://github.com/ggerganov/whisper.cpp/issues/89
|
| 6 |
|
| 7 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
$ ./bench -m ./models/ggml-small.en.bin -t 4
|
| 9 |
|
| 10 |
whisper_model_load: loading model from './models/ggml-small.en.bin'
|
|
|
|
| 4 |
|
| 5 |
Benchmark results are tracked in the following Github issue: https://github.com/ggerganov/whisper.cpp/issues/89
|
| 6 |
|
| 7 |
+
```bash
|
| 8 |
+
# build the bench tool
|
| 9 |
+
$ make bench
|
| 10 |
+
|
| 11 |
+
# run it on the small.en model using 4 threads
|
| 12 |
$ ./bench -m ./models/ggml-small.en.bin -t 4
|
| 13 |
|
| 14 |
whisper_model_load: loading model from './models/ggml-small.en.bin'
|