aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-11-30Close popups with escape keymissionfloyd
2023-12-01add max-heigh/width to global-popup-innerw-e-w
prevent the pop-up from being too big as to making exiting the pop-up impossible
2023-11-30Initial IPEX supportNuullll
2023-11-29Fix the Ruff error about unused importhidenorly
2023-11-29Add FP32 fallback support on torch.nn.functional.interpolatehidenorly
This tries to execute interpolate with FP32 if it failed. Background is that on some environment such as Mx chip MacOS devices, we get error as follows: ``` "torch/nn/functional.py", line 3931, in interpolate return torch._C._nn.upsample_nearest2d(input, output_size, scale_factors) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ RuntimeError: "upsample_nearest2d_channels_last" not implemented for 'Half' ``` In this case, ```--no-half``` doesn't help to solve. Therefore this commits add the FP32 fallback execution to solve it. Note that the ```upsample_nearest2d``` is called from ```torch.nn.functional.interpolate```. And the fallback for torch.nn.functional.interpolate is necessary at ```modules/sd_vae_approx.py``` 's ```VAEApprox.forward``` ```repositories/stable-diffusion-stability-ai/ldm/modules/diffusionmodules/openaimodel.py``` 's ```Upsample.forward```
2023-11-29Revert "Add FP32 fallback support on sd_vae_approx"hidenorly
This reverts commit 58c19545c83fa6925c9ce2216ee64964eb5129ce. Since the modification is expected to move to mac_specific.py (https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14046#issuecomment-1826731532)
2023-11-28reformat file with uniform indentationw-e-w
2023-11-28fix Auto focal point crop for opencv >= 4.8.xw-e-w
autocrop.download_and_cache_models in opencv >= 4.8 the face detection model was updated download the base on opencv version returns the model path or raise exception
2023-11-27Update devices.pyobsol
fixes issue where "--use-cpu" all properly makes SD run on CPU but leaves ControlNet (and other extensions, I presume) pointed at GPU, causing a crash in ControlNet caused by a mismatch between devices between SD and CN https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/14097
2023-11-27hypertile_xyz: we don't need isnumeric check for AxisOptionaria1th
2023-11-27fix ruff - set comprehensionaria1th
2023-11-27fix ruff in hypertile_xyz.pyaria1th
2023-11-27cache divisors / fix ruffaria1th
2023-11-27Merge branch 'dev' of https://github.com/cjj1977/stable-diffusion-webui into devCharlie Joynt
2023-11-27Support XYZ scripts / split hires path from unetaria1th
2023-11-27Allow use of mutiple styles csv filesCharlie Joynt
* https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/14122 Fix edge case where style text has multiple {prompt} placeholders * https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/14005
2023-11-27bugfix for warning message (#6)MisterSeajay
* bugfix for warning message * bugfix error message
2023-11-27bugfix for warning message (#6)MisterSeajay
2023-11-27Allow use of mutiple styles csv filesCharlie Joynt
2023-11-27catch uncaught exception with ui creation scriptsw-e-w
prevent total webui crash
2023-11-27add Block component creation callbackw-e-w
2023-11-26also consider extension urlJabasukuriputo Wang
2023-11-26add categories to settingsAUTOMATIC1111
2023-11-26Merge pull request #14108 from AUTOMATIC1111/json.dump(ensure_ascii=False)AUTOMATIC1111
json.dump(ensure_ascii=False)
2023-11-26json.dump(ensure_ascii=False)w-e-w
improve json readability
2023-11-26compact prompt layout: preserve scroll when switching between lora tabsAUTOMATIC1111
2023-11-26Merge pull request #13936 from cabelo/compatibilityAUTOMATIC1111
Compatibility
2023-11-26Merge pull request #14059 from akx/upruffAUTOMATIC1111
Update Ruff to 0.1.6
2023-11-26fix linter errorsAUTOMATIC1111
2023-11-26do not save HTML explanations from options page to configAUTOMATIC1111
2023-11-26Merge pull request #14084 from wfjsw/move-from-sysinfo-to-errorsAUTOMATIC1111
Move exception_records related methods to errors.py
2023-11-26Merge branch 'hypertile-in-sample' into devAUTOMATIC1111
2023-11-26Merge pull request #13948 from aria1th/hypertile-in-sampleAUTOMATIC1111
support HyperTile optimization
2023-11-26rework hypertile into a built-in extensionAUTOMATIC1111
2023-11-26move fileAUTOMATIC1111
2023-11-24remove traceback in sysinfoJabasukuriputo Wang
2023-11-24Move exception_records related methods to errors.pyJabasukuriputo Wang
2023-11-22use extension name for determining an extension is installed in the indexwfjsw
2023-11-22Simplify restart_sampler (suggested by ruff)Aarni Koskela
2023-11-22Update ruff to 0.1.6Aarni Koskela
2023-11-21fix [Bug]: (Dev Branch) Placing "Dimensions" first in "ui_reorder_list" ↵AUTOMATIC1111
prevents start #14047
2023-11-21Add FP32 fallback support on sd_vae_approxhidenorly
This tries to execute interpolate with FP32 if it failed. Background is that on some environment such as Mx chip MacOS devices, we get error as follows: ``` "torch/nn/functional.py", line 3931, in interpolate return torch._C._nn.upsample_nearest2d(input, output_size, scale_factors) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ RuntimeError: "upsample_nearest2d_channels_last" not implemented for 'Half' ``` In this case, ```--no-half``` doesn't help to solve. Therefore this commits add the FP32 fallback execution to solve it. Note that the submodule may require additional modifications. The following is the example modification on the other submodule. ```repositories/stable-diffusion-stability-ai/ldm/modules/diffusionmodules/openaimodel.py class Upsample(nn.Module): ..snip.. def forward(self, x): assert x.shape[1] == self.channels if self.dims == 3: x = F.interpolate( x, (x.shape[2], x.shape[3] * 2, x.shape[4] * 2), mode="nearest" ) else: try: x = F.interpolate(x, scale_factor=2, mode="nearest") except: x = F.interpolate(x.to(th.float32), scale_factor=2, mode="nearest").to(x.dtype) if self.use_conv: x = self.conv(x) return x ..snip.. ``` You can see the FP32 fallback execution as same as sd_vae_approx.py.
2023-11-20added option for default behavior of dir buttonsTom Haelbich
2023-11-20Merge pull request #14009 from ↵AUTOMATIC1111
AUTOMATIC1111/Option-to-show-batch-img2img-results-in-UI Option to show batch img2img results in UI
2023-11-20Merge branch 'dag' into devAUTOMATIC1111
2023-11-20Merge pull request #13944 from wfjsw/dagAUTOMATIC1111
implementing script metadata and DAG sorting mechanism
2023-11-20rework extensions metadata: use custom sorter that doesn't mess the order as ↵AUTOMATIC1111
much and ignores cyclic errors, use classes with named fields instead of dictionaries, eliminate some duplicated code
2023-11-20Merge pull request #14035 from AUTOMATIC1111/sysinfo-jsonAUTOMATIC1111
save sysinfo as .json
2023-11-20save sysinfo as .jsonw-e-w
GitHub now allows uploading of .json files in issues
2023-11-19Option to show batch img2img results in UIw-e-w
shared.opts.img2img_batch_show_results_limit limit the number of images return to the UI for batch img2img default limit 32 0 no images are shown -1 unlimited, all images are shown