mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-02 09:40:42 +00:00
Don't crash right out of the installer ;)
This commit is contained in:
parent
4cf7e122a9
commit
a02b0c14ca
2
llm.cpp
2
llm.cpp
@ -101,7 +101,7 @@ bool LLMObject::loadModelPrivate(const QString &modelName)
|
||||
}
|
||||
|
||||
void LLMObject::setThreadCount(int32_t n_threads) {
|
||||
if (m_llmodel->threadCount() != n_threads) {
|
||||
if (m_llmodel && m_llmodel->threadCount() != n_threads) {
|
||||
m_llmodel->setThreadCount(n_threads);
|
||||
emit threadCountChanged();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user