Fix controlnet issue.

This commit is contained in:
comfyanonymous 2023-08-31 15:16:58 -04:00
parent 57beace324
commit cfe1c54de8
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ class ControlNet(ControlBase):
self.cond_hint = broadcast_image_to(self.cond_hint, x_noisy.shape[0], batched_number)
context = torch.cat(cond['c_crossattn'], 1)
context = cond['c_crossattn']
y = cond.get('c_adm', None)
if y is not None:
y = y.to(self.control_model.dtype)