Commit Graph

118 Commits

Author SHA1 Message Date
layerdiffusion
b09c24ef51 add fp16_fix 2024-08-14 17:10:03 -07:00
layerdiffusion
9001968898 Change default combination to a relatively safe one 2024-08-11 14:26:34 -07:00
layerdiffusion
86ee2d9462 improve hints 2024-08-11 02:00:53 -07:00
lllyasviel
cfa5242a75 forge 2.0.0
see also discussions
2024-08-10 19:24:19 -07:00
lllyasviel
a07c758658 intergrate k-diffusion 2024-08-07 15:05:42 -07:00
lllyasviel
14a759b5ca revise kernel 2024-08-07 13:28:12 -07:00
layerdiffusion
b57573c8da Implement many kernels from scratch 2024-08-06 20:19:03 -07:00
layerdiffusion
4c8331b806 Update launch_utils.py 2024-08-06 18:08:59 -07:00
layerdiffusion
bccf9fb23a Free WebUI from its Prison
Congratulations WebUI. Say Hello to freedom.
2024-08-05 04:21:35 -07:00
layerdiffusion
aafe11b14c Revert "Free WebUI from its Prison"
This reverts commit 62c11fdc71.
2024-08-05 03:52:44 -07:00
layerdiffusion
62c11fdc71 Free WebUI from its Prison
Congratulations WebUI. Say Hello to freedom.
2024-08-05 03:39:54 -07:00
layerdiffusion
0863765173 rework sd1.5 and sdxl from scratch 2024-08-05 03:08:17 -07:00
layerdiffusion
fb3052350b rework model loader 2024-08-03 17:01:40 -07:00
layerdiffusion
907d883e49 add huggingface_guess repo 2024-08-03 12:40:11 -07:00
layerdiffusion
e26abf87ec Gradio 4 + WebUI 1.10 2024-07-26 12:02:46 -07:00
lllyasviel
7a2aca6fed Merge branch 'main' into tdd 2024-02-17 07:40:16 -08:00
RedDeltas
18ec22bffe Added core.filemode=false so doesn't track changes in file permissions in more restrictive environments 2024-02-15 12:26:14 +00:00
Yuki Shindo
2616c20687 fix embeddings path (#237) 2024-02-13 19:48:06 -05:00
Chenlei Hu
9c5038c766 Add --forge-ref-a1111-home cmd arg to reference existing A1111 checkout (#203)
* Add --forge-ref-a1111-home cmd arg to reference existing A1111 checkout

* nit
2024-02-11 21:22:31 -05:00
lllyasviel
f06ba8e60b Significantly reduce thread abuse for faster model moving
This will move all major gradio calls into the main thread rather than random gradio threads.
This ensures that all torch.module.to() are performed in main thread to completely possible avoid GPU fragments.
In my test now model moving is 0.7 ~ 1.2 seconds faster, which means all 6GB/8GB VRAM users will get 0.7 ~ 1.2 seconds faster per image on SDXL.
2024-02-08 10:13:59 -08:00
lllyasviel
1b72a56472 i 2024-01-31 15:18:02 -08:00
lllyasviel
cf47ec85f0 fix 2024-01-31 14:57:17 -08:00
lllyasviel
2040649f2a disable extension 2024-01-31 14:53:53 -08:00
lllyasviel
fd75f4f101 Merge branch 'main' into dev 2024-01-31 13:19:08 -08:00
wangshuai09
cc3f604310 Update 2024-01-31 12:29:58 +08:00
lllyasviel
7b14cb3f9f fix many problems 2024-01-29 09:28:38 -08:00
lllyasviel
4b0729d1d5 Merge pull request #15 from lllyasviel/dev
Dev
2024-01-26 09:58:17 -08:00
w-e-w
47cf92039b minor fix to #14525 2024-01-26 17:16:53 +09:00
lllyasviel
d564bb7f28 i 2024-01-25 10:54:38 -08:00
AUTOMATIC1111
2f98a35fc4 add assets repo; serve fonts locally rather than from google's servers 2024-01-07 09:21:21 +03:00
Aarni Koskela
9805f35c6f Ensure GRADIO_ANALYTICS_ENABLED is set early enough 2024-01-04 19:13:47 +02:00
AUTOMATIC1111
1e7a8ce5e4 Merge pull request #14525 from AUTOMATIC1111/handle-config.json-failed-to-load
handle config.json failed to load
2024-01-04 11:16:37 +03:00
Aarni Koskela
d9034b48a5 Avoid unnecessary isfile/exists calls 2024-01-04 00:26:30 +02:00
w-e-w
50158a1fc9 handle config.json failed to load 2024-01-04 06:30:52 +09:00
Aarni Koskela
b0f5934234 Use Spandrel for upscaling and face restoration architectures (aside from GFPGAN and LDSR) 2023-12-30 16:24:01 +02:00
AUTOMATIC1111
7745db6fc0 torch 2.1.2 2023-12-16 10:15:08 +03:00
AUTOMATIC1111
e9c6325fc6 Merge branch 'dev' into torch210 2023-12-16 10:05:10 +03:00
AUTOMATIC1111
208760f348 Merge pull request #14192 from illtellyoulater/patch-1
Update launch_utils.py - fixes repetead package reinstalls
2023-12-04 08:14:40 +03:00
missionfloyd
06725af40b Lint 2023-12-03 21:26:12 -07:00
illtellyoulater
639ccf254b Update launch_utils.py to fix wrong dep. checks and reinstalls
Fixes failing dependency checks for extensions having a different package name and import name (for example ffmpeg-python / ffmpeg), which currently is causing the unneeded reinstall of packages at runtime.

In fact with current code, the same string is used when installing a package and when checking for its presence, as you can see in the following example:

> launch_utils.run_pip("install ffmpeg-python", "required package")
[ Installing required package: "ffmpeg-python" ... ]
[ Installed ]

> launch_utils.is_installed("ffmpeg-python")
False

... which would actually return true with:

> launch_utils.is_installed("ffmpeg")
True
2023-12-04 02:35:35 +00:00
Nuullll
96871e4f74 Remove webui-ipex-user.bat 2023-12-02 17:11:31 +08:00
AUTOMATIC1111
29f04149b6 update torch to 2.1.0 2023-11-26 12:07:33 +03:00
w-e-w
6d337bf23d save sysinfo as .json
GitHub now allows uploading of .json files in issues
2023-11-20 01:38:31 +09:00
w-e-w
6fb2194d9c fetch version info when webui_dir is not work_dir 2023-09-12 16:50:56 +09:00
AUTOMATIC1111
d0026da483 add --dump-sysinfo, a cmd arg to dump limited sysinfo file at startup 2023-08-30 19:48:47 +03:00
AUTOMATIC1111
323dcadea2 Merge pull request #12855 from dhwz/dev
don't print empty lines
2023-08-30 08:23:40 +03:00
AUTOMATIC1111
00e393ce10 Merge pull request #12833 from catboxanon/fix/dont-print-blank-stdout
Don't print blank stdout in extension installers
2023-08-29 09:02:11 +03:00
AUTOMATIC1111
0c9282b84d Merge pull request #12832 from catboxanon/fix/skip-install-extensions
Honor `--skip-install` for extension installers
2023-08-29 08:58:10 +03:00
AUTOMATIC1111
8a7a4275a8 Merge pull request #12842 from dhwz/dev
remove xformers Python version check
2023-08-29 08:44:11 +03:00
AUTOMATIC1111
f084e6bbd0 revert xformers back to 0.0.20 2023-08-19 08:22:12 +03:00