diff options
author | Kohaku-Blueleaf <59680068+KohakuBlueleaf@users.noreply.github.com> | 2023-12-16 11:39:43 +0000 |
---|---|---|
committer | Kohaku-Blueleaf <59680068+KohakuBlueleaf@users.noreply.github.com> | 2023-12-16 11:39:43 +0000 |
commit | a97832033427096072d5ea914adac3662cda4fd1 (patch) | |
tree | 36073d20ce403e0304b51e9e47326a9448d09392 | |
parent | 4f5281a92e1e85546f055d9b63410b207db33b33 (diff) | |
download | stable-diffusion-webui-gfx803-a97832033427096072d5ea914adac3662cda4fd1.tar.gz stable-diffusion-webui-gfx803-a97832033427096072d5ea914adac3662cda4fd1.tar.bz2 stable-diffusion-webui-gfx803-a97832033427096072d5ea914adac3662cda4fd1.zip |
Let fp8-related settings to invalidate cond_cache
-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 dd97b4ee..9351e3fb 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -431,6 +431,8 @@ class StableDiffusionProcessing: opts.sdxl_crop_top,
self.width,
self.height,
+ opts.fp8_storage,
+ opts.cache_fp16_weight,
)
def get_conds_with_caching(self, function, required_prompts, steps, caches, extra_network_data, hires_steps=None):
|