Commit 67be7eb8 authored by comfyanonymous's avatar comfyanonymous
Browse files

Nodes can now patch the unet function.

parent 12a6e931
...@@ -248,6 +248,9 @@ def sampling_function(model_function, x, timestep, uncond, cond, cond_scale, con ...@@ -248,6 +248,9 @@ def sampling_function(model_function, x, timestep, uncond, cond, cond_scale, con
c['transformer_options'] = transformer_options c['transformer_options'] = transformer_options
if 'model_function_wrapper' in model_options:
output = model_options['model_function_wrapper'](model_function, {"input": input_x, "timestep": timestep_, "c": c, "cond_or_uncond": cond_or_uncond}).chunk(batch_chunks)
else:
output = model_function(input_x, timestep_, **c).chunk(batch_chunks) output = model_function(input_x, timestep_, **c).chunk(batch_chunks)
del input_x del input_x
......
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