Add VAE tiled decode node for audio. (#12299)

This commit is contained in:
comfyanonymous
2026-02-04 22:12:04 -08:00
committed by GitHub
parent a246cc02b2
commit 35183543e0
2 changed files with 38 additions and 7 deletions

View File

@@ -976,7 +976,7 @@ class VAE:
if overlap is not None:
args["overlap"] = overlap
if dims == 1:
if dims == 1 or self.extra_1d_channel is not None:
args.pop("tile_y")
output = self.decode_tiled_1d(samples, **args)
elif dims == 2: