From c8e9259bd1cfd6a3ef2c710ab53fbda41658e744 Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Tue, 9 May 2023 23:17:21 -0400 Subject: [PATCH] Default to true for compat hardware. --- llm.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/llm.cpp b/llm.cpp index 22ac24ac..e94c461b 100644 --- a/llm.cpp +++ b/llm.cpp @@ -22,6 +22,7 @@ LLM::LLM() : QObject{nullptr} , m_chatListModel(new ChatListModel(this)) , m_threadCount(std::min(4, (int32_t) std::thread::hardware_concurrency())) + , m_compatHardware(true) { connect(QCoreApplication::instance(), &QCoreApplication::aboutToQuit, this, &LLM::aboutToQuit);