Skip to content

Commit f9c61f1

Browse files
authored
Fix function call that we forgot to update in #6606 (#6636)
## Summary Fix function call that we forgot to update in #6606 ## QA Instructions Run a TiledMultiDiffusionDenoiseLatents invocation and make sure it doesn't crash. ## Checklist - [x] _The PR has a short but descriptive title, suitable for a changelog_ - [x] _Tests added / updated (if applicable)_ - [x] _Documentation added / updated (if applicable)_
2 parents 930ff55 + a8cc5ca commit f9c61f1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

invokeai/app/invocations/tiled_multi_diffusion_denoise_latents.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,8 @@ def _lora_loader() -> Iterator[Tuple[LoRAModelRaw, float]]:
222222
context=context,
223223
positive_conditioning_field=self.positive_conditioning,
224224
negative_conditioning_field=self.negative_conditioning,
225-
unet=unet,
225+
device=unet.device,
226+
dtype=unet.dtype,
226227
latent_height=latent_tile_height,
227228
latent_width=latent_tile_width,
228229
cfg_scale=self.cfg_scale,

0 commit comments

Comments
 (0)