From 45d796743801d6e3f4d4e516655d99fa69226b72 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);