diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-12-16 11:59:35 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-16 11:59:35 +0000 |
commit | 7428ce52ab14575815cd539b76c85f40aae648f6 (patch) | |
tree | 36073d20ce403e0304b51e9e47326a9448d09392 /modules/processing.py | |
parent | 4f5281a92e1e85546f055d9b63410b207db33b33 (diff) | |
parent | a97832033427096072d5ea914adac3662cda4fd1 (diff) | |
download | stable-diffusion-webui-gfx803-7428ce52ab14575815cd539b76c85f40aae648f6.tar.gz stable-diffusion-webui-gfx803-7428ce52ab14575815cd539b76c85f40aae648f6.tar.bz2 stable-diffusion-webui-gfx803-7428ce52ab14575815cd539b76c85f40aae648f6.zip |
Merge pull request #14327 from AUTOMATIC1111/fp8-cond-cache-fix
Fix FP8 non-reproducible problem
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 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):
|