Hunyuan refiner vae now works with tiled. (#9836)

This commit is contained in:
comfyanonymous
2025-09-12 16:46:46 -07:00
committed by GitHub
parent d7f40442f9
commit a3b04de700
2 changed files with 15 additions and 7 deletions

View File

@@ -185,7 +185,6 @@ class Encoder(nn.Module):
self.regul = comfy.ldm.models.autoencoder.DiagonalGaussianRegularizer()
def forward(self, x):
x = x.unsqueeze(2)
x = self.conv_in(x)
for stage in self.down: