diff options
author | Kohaku-Blueleaf <59680068+KohakuBlueleaf@users.noreply.github.com> | 2023-12-16 07:08:08 +0000 |
---|---|---|
committer | Kohaku-Blueleaf <59680068+KohakuBlueleaf@users.noreply.github.com> | 2023-12-16 07:08:08 +0000 |
commit | ea272152e0b50dbb2bd675ec020607f3d50c37d0 (patch) | |
tree | 05fed620cbdd60d489716bf05a15893ff4ab62c7 /modules/processing.py | |
parent | 0fb34b57b80b368f76a368c50569371c10382e12 (diff) | |
download | stable-diffusion-webui-gfx803-ea272152e0b50dbb2bd675ec020607f3d50c37d0.tar.gz stable-diffusion-webui-gfx803-ea272152e0b50dbb2bd675ec020607f3d50c37d0.tar.bz2 stable-diffusion-webui-gfx803-ea272152e0b50dbb2bd675ec020607f3d50c37d0.zip |
Add FP8 settings into PNG info
Diffstat (limited to 'modules/processing.py')
-rw-r--r-- | modules/processing.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/processing.py b/modules/processing.py index bea01ec6..179f2c0f 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -688,6 +688,8 @@ def create_infotext(p, all_prompts, all_seeds, all_subseeds, comments=None, iter "Size": f"{p.width}x{p.height}",
"Model hash": p.sd_model_hash if opts.add_model_hash_to_info else None,
"Model": p.sd_model_name if opts.add_model_name_to_info else None,
+ "FP8 weight": opts.fp8_storage if devices.fp8 else None,
+ "Cache FP16 weight for LoRA": opts.cache_fp16_weight if devices.fp8 else None,
"VAE hash": p.sd_vae_hash if opts.add_vae_hash_to_info else None,
"VAE": p.sd_vae_name if opts.add_vae_name_to_info else None,
"Variation seed": (None if p.subseed_strength == 0 else (p.all_subseeds[0] if use_main_prompt else all_subseeds[index])),
|