-
i know everyone here uses gpu-s but i only have an intel 4400, besides i find the performance of the tiny model adequate enough on the cpu, however it only uses 2 cpu cores out of 4. is there a simple setting somewhere i could set to use all the cores? i'm running version 20230314. thanks for the amazing software; it's truly unbelievable. bonus question: where does whisper store it's config file? i'm on linux but it's not in .config |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
if u dont have powerful hardware u may want try https://github.com/ggerganov/whisper.cpp also there's no config file whatsoever |
Beta Was this translation helpful? Give feedback.
-
On a typical Intel processor, you might have 2 physical CPU cores that are divided into 4 virtual cores (hyperthreading). By default I believe whisper only counts the physical cores, so it appears like you don't have full utilization, but you may or may not get better performance using hyperthreading. You can try setting |
Beta Was this translation helpful? Give feedback.
On a typical Intel processor, you might have 2 physical CPU cores that are divided into 4 virtual cores (hyperthreading). By default I believe whisper only counts the physical cores, so it appears like you don't have full utilization, but you may or may not get better performance using hyperthreading.
You can try setting
--threads 4
from the command line to see if you get better performance; seewhisper --help
.