aboutsummaryrefslogtreecommitdiffstats
path: root/modules/shared.py
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2022-09-05 00:25:37 +0000
committerAUTOMATIC <16777216c@gmail.com>2022-09-05 00:25:37 +0000
commita8a58dbac7b205ae90664c3b249d60e4baa2855c (patch)
tree68d8912439be31cb6445250319d6133050cbba79 /modules/shared.py
parentf91d0c3d19ac2b849cd15a519f711f9281e782cd (diff)
downloadstable-diffusion-webui-gfx803-a8a58dbac7b205ae90664c3b249d60e4baa2855c.tar.gz
stable-diffusion-webui-gfx803-a8a58dbac7b205ae90664c3b249d60e4baa2855c.tar.bz2
stable-diffusion-webui-gfx803-a8a58dbac7b205ae90664c3b249d60e4baa2855c.zip
re-integrated tiling option as a UI element
Diffstat (limited to 'modules/shared.py')
-rw-r--r--modules/shared.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/shared.py b/modules/shared.py
index 0722185d..9e744f6c 100644
--- a/modules/shared.py
+++ b/modules/shared.py
@@ -30,8 +30,6 @@ parser.add_argument("--precision", type=str, help="evaluate at this precision",
parser.add_argument("--share", action='store_true', help="use share=True for gradio and make the UI accessible through their site (doesn't work for me but you might have better luck)")
parser.add_argument("--esrgan-models-path", type=str, help="path to directory with ESRGAN models", default=os.path.join(script_path, 'ESRGAN'))
parser.add_argument("--opt-split-attention", action='store_true', help="enable optimization that reduced vram usage by a lot for about 10% decrease in performance")
-parser.add_argument("--tiling", action='store_true', help="causes the model to generate images that can be tiled")
-
cmd_opts = parser.parse_args()
cpu = torch.device("cpu")