mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2024-10-01 01:06:10 -04:00
Fix default thread setting.
This commit is contained in:
parent
6630bf2f13
commit
18dbfddcb3
@ -350,6 +350,10 @@ int MySettings::threadCount() const
|
|||||||
QSettings setting;
|
QSettings setting;
|
||||||
setting.sync();
|
setting.sync();
|
||||||
int c = setting.value("threadCount", default_threadCount).toInt();
|
int c = setting.value("threadCount", default_threadCount).toInt();
|
||||||
|
// The old thread setting likely left many people with 0 in settings config file, which means
|
||||||
|
// we should reset it to the default going forward
|
||||||
|
if (c <= 0)
|
||||||
|
c = default_threadCount;
|
||||||
c = std::max(c, 1);
|
c = std::max(c, 1);
|
||||||
c = std::min(c, QThread::idealThreadCount());
|
c = std::min(c, QThread::idealThreadCount());
|
||||||
return c;
|
return c;
|
||||||
|
Loading…
Reference in New Issue
Block a user