Skip to content

Commit a8cc5ca

Browse files
committed
Fix function call that we forgot to update in #6606
1 parent 930ff55 commit a8cc5ca

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)