File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -287,8 +287,8 @@ speed-up - more than x3 faster compared with CPU-only execution. Here are the in
287
287
WHISPER_COREML=1 make -j
288
288
289
289
# using CMake
290
- cd build
291
- cmake -DWHISPER_COREML=1 ..
290
+ cmake -B build -DWHISPER_COREML=1
291
+ cmake --build build -j --config Release
292
292
```
293
293
294
294
- Run the examples as usual. For example:
@@ -366,8 +366,8 @@ This can result in significant speedup in encoder performance. Here are the inst
366
366
367
367
And then build the project using cmake:
368
368
```bash
369
- cd build
370
- cmake -DWHISPER_OPENVINO=1 ..
369
+ cmake -B build -DWHISPER_OPENVINO=1
370
+ cmake --build build -j --config Release
371
371
```
372
372
373
373
- Run the examples as usual. For example:
@@ -418,11 +418,9 @@ make clean
418
418
WHISPER_CLBLAST=1 make -j
419
419
420
420
CMake:
421
- cd whisper.cpp ; mkdir build ; cd build
422
- cmake -DWHISPER_CLBLAST=ON ..
423
- make clean
424
- make -j
425
- cp bin/* ../
421
+ cd whisper.cpp
422
+ cmake -B build -DWHISPER_CLBLAST=ON
423
+ cmake --build build -j --config Release
426
424
```
427
425
428
426
You can’t perform that action at this time.
0 commit comments