Make fattn off the default due to vulkan issues
This commit is contained in:
parent
55be24b36f
commit
e3fb4761b0
2 changed files with 263 additions and 260 deletions
|
|
@ -29,6 +29,7 @@ MainWindow::MainWindow(QWidget *parent)
|
|||
isGeneratingNext(false)
|
||||
{
|
||||
aceStep->moveToThread(&aceThread);
|
||||
aceThread.setObjectName("AceStep Woker Thread");
|
||||
|
||||
ui->setupUi(this);
|
||||
|
||||
|
|
@ -110,6 +111,8 @@ MainWindow::MainWindow(QWidget *parent)
|
|||
MainWindow::~MainWindow()
|
||||
{
|
||||
aceStep->cancelGeneration();
|
||||
aceThread.quit();
|
||||
aceThread.wait();
|
||||
|
||||
autoSavePlaylist();
|
||||
saveSettings();
|
||||
|
|
@ -165,7 +168,7 @@ void MainWindow::loadSettings()
|
|||
aceStep->setLowVramMode(lowVram);
|
||||
|
||||
// Load flash attention setting
|
||||
bool flashAttention = settings.value("flashAttention", true).toBool();
|
||||
bool flashAttention = settings.value("flashAttention", false).toBool();
|
||||
aceStep->setFlashAttention(flashAttention);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue