"Cache.cach" did not exist on "4c4cad8bd53251b355e26de01c7cd3ce43ffd2f1"
Commit fbf5c51c authored by comfyanonymous's avatar comfyanonymous
Browse files

Merge branch 'fix_batch_timesteps' of https://github.com/asagi4/ComfyUI

parents 68be24ee 1ea4d846
......@@ -19,11 +19,11 @@ def sampling_function(model_function, x, timestep, uncond, cond, cond_scale, con
strength = 1.0
if 'timestep_start' in cond[1]:
timestep_start = cond[1]['timestep_start']
if timestep_in > timestep_start:
if timestep_in[0] > timestep_start:
return None
if 'timestep_end' in cond[1]:
timestep_end = cond[1]['timestep_end']
if timestep_in < timestep_end:
if timestep_in[0] < timestep_end:
return None
if 'area' in cond[1]:
area = cond[1]['area']
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment