diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-28 19:22:35 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-28 19:23:29 +0000 |
commit | c0f9821c35d54e00e3c193650f1fe5266299325d (patch) | |
tree | 582786c4f226a0ab4143815647324b4476f83daa /modules/processing.py | |
parent | 86708463f1767222262d4b970e01311fe54eb243 (diff) | |
download | stable-diffusion-webui-gfx803-c0f9821c35d54e00e3c193650f1fe5266299325d.tar.gz stable-diffusion-webui-gfx803-c0f9821c35d54e00e3c193650f1fe5266299325d.tar.bz2 stable-diffusion-webui-gfx803-c0f9821c35d54e00e3c193650f1fe5266299325d.zip |
always show NV as RNG source in infotext
Diffstat (limited to 'modules/processing.py')
-rw-r--r-- | modules/processing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/processing.py b/modules/processing.py index 7dc931ba..0138e5ac 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -689,7 +689,7 @@ def create_infotext(p, all_prompts, all_seeds, all_subseeds, comments=None, iter "Token merging ratio": None if token_merging_ratio == 0 else token_merging_ratio,
"Token merging ratio hr": None if not enable_hr or token_merging_ratio_hr == 0 else token_merging_ratio_hr,
"Init image hash": getattr(p, 'init_img_hash', None),
- "RNG": opts.randn_source if opts.randn_source != "GPU" and opts.randn_source != "NV" else None,
+ "RNG": opts.randn_source if opts.randn_source != "GPU" else None,
"NGMS": None if p.s_min_uncond == 0 else p.s_min_uncond,
"Tiling": "True" if p.tiling else None,
**p.extra_generation_params,
|