mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2025-07-21 18:41:59 +00:00
Default to true for compat hardware.
This commit is contained in:
parent
8afae10808
commit
45d7967438
1
llm.cpp
1
llm.cpp
@ -22,6 +22,7 @@ LLM::LLM()
|
|||||||
: QObject{nullptr}
|
: QObject{nullptr}
|
||||||
, m_chatListModel(new ChatListModel(this))
|
, m_chatListModel(new ChatListModel(this))
|
||||||
, m_threadCount(std::min(4, (int32_t) std::thread::hardware_concurrency()))
|
, m_threadCount(std::min(4, (int32_t) std::thread::hardware_concurrency()))
|
||||||
|
, m_compatHardware(true)
|
||||||
{
|
{
|
||||||
connect(QCoreApplication::instance(), &QCoreApplication::aboutToQuit,
|
connect(QCoreApplication::instance(), &QCoreApplication::aboutToQuit,
|
||||||
this, &LLM::aboutToQuit);
|
this, &LLM::aboutToQuit);
|
||||||
|
Loading…
Reference in New Issue
Block a user