Unverified Commit 9de72988 authored by catboxanon's avatar catboxanon Committed by GitHub
Browse files

Update processing.py

parent 234fa9a5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -640,7 +640,7 @@ def process_images_inner(p: StableDiffusionProcessing) -> Processed:
                    file.write(processed.infotext(p, 0))

            step_multiplier = 1
            if shared.opts.fix_second_order_samplers_schedule:
            if not shared.opts.dont_fix_second_order_samplers_schedule:
                try:
                    step_multiplier = 2 if sd_samplers.all_samplers_map.get(p.sampler_name).aliases[0] in ['k_dpmpp_2s_a', 'k_dpmpp_2s_a_ka', 'k_dpmpp_sde', 'k_dpmpp_sde_ka', 'k_dpm_2', 'k_dpm_2_a', 'k_heun'] else 1
                except: