diff options
author | papuSpartan <macabeg@icloud.com> | 2023-04-01 08:21:23 +0000 |
---|---|---|
committer | papuSpartan <macabeg@icloud.com> | 2023-04-01 08:21:23 +0000 |
commit | ef8c0440512f2fae9ceeb977b73f881c0afbb90a (patch) | |
tree | 0ae1f6d3e5d2b4efcb852c210669ccaa38179b58 | |
parent | 56680cd84ab68a283772cf697f8a72408a3f4167 (diff) | |
download | stable-diffusion-webui-gfx803-ef8c0440512f2fae9ceeb977b73f881c0afbb90a.tar.gz stable-diffusion-webui-gfx803-ef8c0440512f2fae9ceeb977b73f881c0afbb90a.tar.bz2 stable-diffusion-webui-gfx803-ef8c0440512f2fae9ceeb977b73f881c0afbb90a.zip |
forgot to add reinstall arg back earlier since args moved out of shared
-rw-r--r-- | modules/cmd_args.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/cmd_args.py b/modules/cmd_args.py index 4314f97b..80df9465 100644 --- a/modules/cmd_args.py +++ b/modules/cmd_args.py @@ -105,3 +105,4 @@ parser.add_argument("--no-download-sd-model", action='store_true', help="don't d # token merging / tomesd
parser.add_argument("--token-merging", action='store_true', help="Provides generation speedup by merging redundant tokens. (compatible with --xformers)", default=False)
parser.add_argument("--token-merging-ratio", type=float, help="Adjusts ratio of merged to untouched tokens. Range: (0.0-1.0], Defaults to 0.5", default=0.5)
+parser.add_argument("--reinstall-tomesd", action='store_true', help="Reinstalls tomesd", default=False)
|