Bring the vulkan backend to the GUI.

dupe-gpu-name-fix
Adam Treat 1 year ago
parent f0735efa7d
commit 8f99dca70f

@ -1 +1 @@
Subproject commit 9bee309a7c8db77ca53fab49c2d896d486905617 Subproject commit 2f7732b667b5c7786da0fa59fd612cc87b04b325

@ -81,6 +81,7 @@ ChatLLM::ChatLLM(Chat *parent, bool isServer)
connect(parent, &Chat::idChanged, this, &ChatLLM::handleChatIdChanged); connect(parent, &Chat::idChanged, this, &ChatLLM::handleChatIdChanged);
connect(&m_llmThread, &QThread::started, this, &ChatLLM::handleThreadStarted); connect(&m_llmThread, &QThread::started, this, &ChatLLM::handleThreadStarted);
connect(MySettings::globalInstance(), &MySettings::forceMetalChanged, this, &ChatLLM::handleForceMetalChanged); connect(MySettings::globalInstance(), &MySettings::forceMetalChanged, this, &ChatLLM::handleForceMetalChanged);
connect(MySettings::globalInstance(), &MySettings::deviceChanged, this, &ChatLLM::handleDeviceChanged);
// The following are blocking operations and will block the llm thread // The following are blocking operations and will block the llm thread
connect(this, &ChatLLM::requestRetrieveFromDB, LocalDocs::globalInstance()->database(), &Database::retrieveFromDB, connect(this, &ChatLLM::requestRetrieveFromDB, LocalDocs::globalInstance()->database(), &Database::retrieveFromDB,
@ -124,6 +125,16 @@ void ChatLLM::handleForceMetalChanged(bool forceMetal)
#endif #endif
} }
void ChatLLM::handleDeviceChanged()
{
if (isModelLoaded() && m_shouldBeLoaded) {
m_reloadingToChangeVariant = true;
unloadModel();
reloadModel();
m_reloadingToChangeVariant = false;
}
}
bool ChatLLM::loadDefaultModel() bool ChatLLM::loadDefaultModel()
{ {
ModelInfo defaultModel = ModelList::globalInstance()->defaultModelInfo(); ModelInfo defaultModel = ModelList::globalInstance()->defaultModelInfo();
@ -250,7 +261,30 @@ bool ChatLLM::loadModel(const ModelInfo &modelInfo)
#endif #endif
if (m_llModelInfo.model) { if (m_llModelInfo.model) {
// Update the settings that a model is being loaded and update the device list
MySettings::globalInstance()->setAttemptModelLoad(filePath); MySettings::globalInstance()->setAttemptModelLoad(filePath);
std::vector<LLModel::GPUDevice> devices = m_llModelInfo.model->availableGPUDevices(0);
QVector<QString> deviceList{ "Auto" };
for (LLModel::GPUDevice &d : devices)
deviceList << QString::fromStdString(d.name);
deviceList << "CPU";
MySettings::globalInstance()->setDeviceList(deviceList);
// Pick the best match for the device
const QString requestedDevice = MySettings::globalInstance()->device();
if (requestedDevice != "CPU") {
const size_t requiredMemory = m_llModelInfo.model->requiredMem(filePath.toStdString());
std::vector<LLModel::GPUDevice> availableDevices = m_llModelInfo.model->availableGPUDevices(requiredMemory);
if (!availableDevices.empty() && requestedDevice == "Auto") {
m_llModelInfo.model->initializeGPUDevice(devices.front());
} else {
for (LLModel::GPUDevice &d : availableDevices) {
if (QString::fromStdString(d.name) == requestedDevice)
m_llModelInfo.model->initializeGPUDevice(d);
}
}
}
bool success = m_llModelInfo.model->loadModel(filePath.toStdString()); bool success = m_llModelInfo.model->loadModel(filePath.toStdString());
MySettings::globalInstance()->setAttemptModelLoad(QString()); MySettings::globalInstance()->setAttemptModelLoad(QString());
if (!success) { if (!success) {

@ -111,6 +111,7 @@ public Q_SLOTS:
void handleShouldBeLoadedChanged(); void handleShouldBeLoadedChanged();
void handleThreadStarted(); void handleThreadStarted();
void handleForceMetalChanged(bool forceMetal); void handleForceMetalChanged(bool forceMetal);
void handleDeviceChanged();
void processSystemPrompt(); void processSystemPrompt();
Q_SIGNALS: Q_SIGNALS:

@ -23,6 +23,7 @@ static bool default_localDocsShowReferences = true;
static QString default_networkAttribution = ""; static QString default_networkAttribution = "";
static bool default_networkIsActive = false; static bool default_networkIsActive = false;
static bool default_networkUsageStatsActive = false; static bool default_networkUsageStatsActive = false;
static QString default_device = "Auto";
static QString defaultLocalModelsPath() static QString defaultLocalModelsPath()
{ {
@ -64,6 +65,17 @@ MySettings::MySettings()
QSettings::setDefaultFormat(QSettings::IniFormat); QSettings::setDefaultFormat(QSettings::IniFormat);
} }
Q_INVOKABLE QVector<QString> MySettings::deviceList() const
{
return m_deviceList;
}
void MySettings::setDeviceList(const QVector<QString> &deviceList)
{
m_deviceList = deviceList;
emit deviceListChanged();
}
void MySettings::restoreModelDefaults(const ModelInfo &model) void MySettings::restoreModelDefaults(const ModelInfo &model)
{ {
setModelTemperature(model, model.m_temperature); setModelTemperature(model, model.m_temperature);
@ -79,6 +91,9 @@ void MySettings::restoreModelDefaults(const ModelInfo &model)
void MySettings::restoreApplicationDefaults() void MySettings::restoreApplicationDefaults()
{ {
setChatTheme(default_chatTheme);
setFontSize(default_fontSize);
setDevice(default_device);
setThreadCount(default_threadCount); setThreadCount(default_threadCount);
setSaveChats(default_saveChats); setSaveChats(default_saveChats);
setSaveChatGPTChats(default_saveChatGPTChats); setSaveChatGPTChats(default_saveChatGPTChats);
@ -485,7 +500,7 @@ QString MySettings::chatTheme() const
void MySettings::setChatTheme(const QString &u) void MySettings::setChatTheme(const QString &u)
{ {
if(chatTheme() == u) if (chatTheme() == u)
return; return;
QSettings setting; QSettings setting;
@ -503,7 +518,7 @@ QString MySettings::fontSize() const
void MySettings::setFontSize(const QString &u) void MySettings::setFontSize(const QString &u)
{ {
if(fontSize() == u) if (fontSize() == u)
return; return;
QSettings setting; QSettings setting;
@ -512,6 +527,24 @@ void MySettings::setFontSize(const QString &u)
emit fontSizeChanged(); emit fontSizeChanged();
} }
QString MySettings::device() const
{
QSettings setting;
setting.sync();
return setting.value("device", default_device).toString();
}
void MySettings::setDevice(const QString &u)
{
if (device() == u)
return;
QSettings setting;
setting.setValue("device", u);
setting.sync();
emit deviceChanged();
}
bool MySettings::forceMetal() const bool MySettings::forceMetal() const
{ {
return m_forceMetal; return m_forceMetal;

@ -25,6 +25,8 @@ class MySettings : public QObject
Q_PROPERTY(QString networkAttribution READ networkAttribution WRITE setNetworkAttribution NOTIFY networkAttributionChanged) Q_PROPERTY(QString networkAttribution READ networkAttribution WRITE setNetworkAttribution NOTIFY networkAttributionChanged)
Q_PROPERTY(bool networkIsActive READ networkIsActive WRITE setNetworkIsActive NOTIFY networkIsActiveChanged) Q_PROPERTY(bool networkIsActive READ networkIsActive WRITE setNetworkIsActive NOTIFY networkIsActiveChanged)
Q_PROPERTY(bool networkUsageStatsActive READ networkUsageStatsActive WRITE setNetworkUsageStatsActive NOTIFY networkUsageStatsActiveChanged) Q_PROPERTY(bool networkUsageStatsActive READ networkUsageStatsActive WRITE setNetworkUsageStatsActive NOTIFY networkUsageStatsActiveChanged)
Q_PROPERTY(QString device READ device WRITE setDevice NOTIFY deviceChanged)
Q_PROPERTY(QVector<QString> deviceList READ deviceList NOTIFY deviceListChanged)
public: public:
static MySettings *globalInstance(); static MySettings *globalInstance();
@ -78,6 +80,8 @@ public:
void setFontSize(const QString &u); void setFontSize(const QString &u);
bool forceMetal() const; bool forceMetal() const;
void setForceMetal(bool b); void setForceMetal(bool b);
QString device() const;
void setDevice(const QString &u);
// Release/Download settings // Release/Download settings
QString lastVersionStarted() const; QString lastVersionStarted() const;
@ -102,6 +106,9 @@ public:
QString attemptModelLoad() const; QString attemptModelLoad() const;
void setAttemptModelLoad(const QString &modelFile); void setAttemptModelLoad(const QString &modelFile);
QVector<QString> deviceList() const;
void setDeviceList(const QVector<QString> &deviceList);
Q_SIGNALS: Q_SIGNALS:
void nameChanged(const ModelInfo &model); void nameChanged(const ModelInfo &model);
void filenameChanged(const ModelInfo &model); void filenameChanged(const ModelInfo &model);
@ -131,9 +138,12 @@ Q_SIGNALS:
void networkIsActiveChanged(); void networkIsActiveChanged();
void networkUsageStatsActiveChanged(); void networkUsageStatsActiveChanged();
void attemptModelLoadChanged(); void attemptModelLoadChanged();
void deviceChanged();
void deviceListChanged();
private: private:
bool m_forceMetal; bool m_forceMetal;
QVector<QString> m_deviceList;
private: private:
explicit MySettings(); explicit MySettings();

@ -88,17 +88,55 @@ MySettingsTab {
MySettings.fontSize = fontBox.currentText MySettings.fontSize = fontBox.currentText
} }
} }
Label {
id: deviceLabel
text: qsTr("Device:")
color: theme.textColor
font.pixelSize: theme.fontSizeLarge
Layout.row: 3
Layout.column: 0
}
MyComboBox {
id: deviceBox
Layout.row: 3
Layout.column: 1
Layout.columnSpan: 1
Layout.minimumWidth: 350
Layout.fillWidth: false
model: MySettings.deviceList
Accessible.role: Accessible.ComboBox
Accessible.name: qsTr("ComboBox for displaying/picking the device")
Accessible.description: qsTr("Use this for picking the device of the chat client")
function updateModel() {
deviceBox.currentIndex = deviceBox.indexOfValue(MySettings.device);
}
Component.onCompleted: {
deviceBox.updateModel()
}
Connections {
target: MySettings
function onDeviceChanged() {
deviceBox.updateModel()
}
function onDeviceListChanged() {
deviceBox.updateModel()
}
}
onActivated: {
MySettings.device = deviceBox.currentText
}
}
Label { Label {
id: defaultModelLabel id: defaultModelLabel
text: qsTr("Default model:") text: qsTr("Default model:")
color: theme.textColor color: theme.textColor
font.pixelSize: theme.fontSizeLarge font.pixelSize: theme.fontSizeLarge
Layout.row: 3 Layout.row: 4
Layout.column: 0 Layout.column: 0
} }
MyComboBox { MyComboBox {
id: comboBox id: comboBox
Layout.row: 3 Layout.row: 4
Layout.column: 1 Layout.column: 1
Layout.columnSpan: 2 Layout.columnSpan: 2
Layout.minimumWidth: 350 Layout.minimumWidth: 350
@ -128,7 +166,7 @@ MySettingsTab {
text: qsTr("Download path:") text: qsTr("Download path:")
color: theme.textColor color: theme.textColor
font.pixelSize: theme.fontSizeLarge font.pixelSize: theme.fontSizeLarge
Layout.row: 4 Layout.row: 5
Layout.column: 0 Layout.column: 0
} }
MyDirectoryField { MyDirectoryField {
@ -136,7 +174,7 @@ MySettingsTab {
text: MySettings.modelPath text: MySettings.modelPath
font.pixelSize: theme.fontSizeLarge font.pixelSize: theme.fontSizeLarge
implicitWidth: 300 implicitWidth: 300
Layout.row: 4 Layout.row: 5
Layout.column: 1 Layout.column: 1
Layout.fillWidth: true Layout.fillWidth: true
ToolTip.text: qsTr("Path where model files will be downloaded to") ToolTip.text: qsTr("Path where model files will be downloaded to")
@ -153,7 +191,7 @@ MySettingsTab {
} }
} }
MyButton { MyButton {
Layout.row: 4 Layout.row: 5
Layout.column: 2 Layout.column: 2
text: qsTr("Browse") text: qsTr("Browse")
Accessible.description: qsTr("Opens a folder picker dialog to choose where to save model files") Accessible.description: qsTr("Opens a folder picker dialog to choose where to save model files")
@ -168,7 +206,7 @@ MySettingsTab {
text: qsTr("CPU Threads:") text: qsTr("CPU Threads:")
color: theme.textColor color: theme.textColor
font.pixelSize: theme.fontSizeLarge font.pixelSize: theme.fontSizeLarge
Layout.row: 5 Layout.row: 6
Layout.column: 0 Layout.column: 0
} }
MyTextField { MyTextField {
@ -177,7 +215,7 @@ MySettingsTab {
font.pixelSize: theme.fontSizeLarge font.pixelSize: theme.fontSizeLarge
ToolTip.text: qsTr("Amount of processing threads to use bounded by 1 and number of logical processors") ToolTip.text: qsTr("Amount of processing threads to use bounded by 1 and number of logical processors")
ToolTip.visible: hovered ToolTip.visible: hovered
Layout.row: 5 Layout.row: 6
Layout.column: 1 Layout.column: 1
validator: IntValidator { validator: IntValidator {
bottom: 1 bottom: 1
@ -200,12 +238,12 @@ MySettingsTab {
text: qsTr("Save chats to disk:") text: qsTr("Save chats to disk:")
color: theme.textColor color: theme.textColor
font.pixelSize: theme.fontSizeLarge font.pixelSize: theme.fontSizeLarge
Layout.row: 6 Layout.row: 7
Layout.column: 0 Layout.column: 0
} }
MyCheckBox { MyCheckBox {
id: saveChatsBox id: saveChatsBox
Layout.row: 6 Layout.row: 7
Layout.column: 1 Layout.column: 1
checked: MySettings.saveChats checked: MySettings.saveChats
onClicked: { onClicked: {
@ -220,12 +258,12 @@ MySettingsTab {
text: qsTr("Save ChatGPT chats to disk:") text: qsTr("Save ChatGPT chats to disk:")
color: theme.textColor color: theme.textColor
font.pixelSize: theme.fontSizeLarge font.pixelSize: theme.fontSizeLarge
Layout.row: 7 Layout.row: 8
Layout.column: 0 Layout.column: 0
} }
MyCheckBox { MyCheckBox {
id: saveChatGPTChatsBox id: saveChatGPTChatsBox
Layout.row: 7 Layout.row: 8
Layout.column: 1 Layout.column: 1
checked: MySettings.saveChatGPTChats checked: MySettings.saveChatGPTChats
onClicked: { onClicked: {
@ -237,12 +275,12 @@ MySettingsTab {
text: qsTr("Enable API server:") text: qsTr("Enable API server:")
color: theme.textColor color: theme.textColor
font.pixelSize: theme.fontSizeLarge font.pixelSize: theme.fontSizeLarge
Layout.row: 8 Layout.row: 9
Layout.column: 0 Layout.column: 0
} }
MyCheckBox { MyCheckBox {
id: serverChatBox id: serverChatBox
Layout.row: 8 Layout.row: 9
Layout.column: 1 Layout.column: 1
checked: MySettings.serverChat checked: MySettings.serverChat
onClicked: { onClicked: {
@ -252,7 +290,7 @@ MySettingsTab {
ToolTip.visible: hovered ToolTip.visible: hovered
} }
Rectangle { Rectangle {
Layout.row: 9 Layout.row: 10
Layout.column: 0 Layout.column: 0
Layout.columnSpan: 3 Layout.columnSpan: 3
Layout.fillWidth: true Layout.fillWidth: true

Loading…
Cancel
Save