From 2adf43274c1f6e26176151647015c0ab548a18e0 Mon Sep 17 00:00:00 2001
From: cmdr2
Date: Thu, 3 Aug 2023 21:01:21 +0530
Subject: [PATCH 1/9] Fix regression with new installations not being able to
start ED
---
ui/main.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/ui/main.py b/ui/main.py
index f5998622..8647b9ff 100644
--- a/ui/main.py
+++ b/ui/main.py
@@ -1,11 +1,12 @@
from easydiffusion import model_manager, app, server
from easydiffusion.server import server_api # required for uvicorn
+app.init()
+
server.init()
# Init the app
model_manager.init()
-app.init()
app.init_render_threads()
# start the browser ui
From 91fb82e9b67674daecd6e5dfb65d66725888c4f5 Mon Sep 17 00:00:00 2001
From: JeLuF
Date: Mon, 14 Aug 2023 14:57:14 +0200
Subject: [PATCH 2/9] Mention minimum CUDA HW level (#1472)
---
README.md | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 8acafd76..3266b10a 100644
--- a/README.md
+++ b/README.md
@@ -17,12 +17,15 @@ Click the download button for your operating system:
**Hardware requirements:**
-- **Windows:** NVIDIA graphics card (minimum 2 GB RAM), or run on your CPU.
-- **Linux:** NVIDIA or AMD graphics card (minimum 2 GB RAM), or run on your CPU.
+- **Windows:** NVIDIA graphics card¹ (minimum 2 GB RAM), or run on your CPU.
+- **Linux:** NVIDIA¹ or AMD² graphics card (minimum 2 GB RAM), or run on your CPU.
- **Mac:** M1 or M2, or run on your CPU.
- Minimum 8 GB of system RAM.
- Atleast 25 GB of space on the hard disk.
+¹) [CUDA Compute capability](https://en.wikipedia.org/wiki/CUDA#GPUs_supported) level of 3.7 or higher required.
+
+²) ROCm 5.2 support required.
The installer will take care of whatever is needed. If you face any problems, you can join the friendly [Discord community](https://discord.com/invite/u9yhsFmEkB) and ask for assistance.
From 796c12bc4c7e841c6874e6cbc41b0365276e3858 Mon Sep 17 00:00:00 2001
From: cmdr2
Date: Wed, 23 Aug 2023 13:21:10 +0530
Subject: [PATCH 3/9] Update index.html
---
ui/index.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ui/index.html b/ui/index.html
index 7cedc0e5..a95fa04f 100644
--- a/ui/index.html
+++ b/ui/index.html
@@ -721,7 +721,7 @@