Skip to content

Commit

Permalink
hotfix for vae decode overlap
Browse files Browse the repository at this point in the history
  • Loading branch information
MaraScott committed Nov 8, 2024
1 parent eb2ccd9 commit 2403b0b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion py/nodes/UpscalerRefiner/McBoaty_v5.py
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ def refine(self, image, iteration):
if len(self.PARAMS.tiles_to_process) == 0 or index in self.PARAMS.tiles_to_process:
if self.KSAMPLER.tiled:
log(f"tile {index + 1}/{total}", None, None, f"Node {self.INFO.id} - VAEDecodingTiled {iteration}")
output = (nodes.VAEDecodeTiled().decode(self.KSAMPLER.vae, latent_output, self.KSAMPLER.tile_size_vae)[0].unsqueeze(0))[0]
output = (nodes.VAEDecodeTiled().decode(self.KSAMPLER.vae, latent_output, self.KSAMPLER.tile_size_vae, 0)[0].unsqueeze(0))[0]
else:
log(f"tile {index + 1}/{total}", None, None, f"Node {self.INFO.id} - VAEDecoding {iteration}")
output = (nodes.VAEDecode().decode(self.KSAMPLER.vae, latent_output)[0].unsqueeze(0))[0]
Expand Down
2 changes: 1 addition & 1 deletion py/utils/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
#
###

VERSION = "5.6.1"
VERSION = "5.6.2"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "comfyui_marascott_nodes"
description = "A set of nodes including a universal bus, an Inpainting By Mask and a large Upscaler/Refiner"
version = "5.6.1"
version = "5.6.2"
license = { file = "LICENSE" }
dependencies = ["blend_modes", "numba", "color-matcher", "groq", "opencv-python"]

Expand Down

0 comments on commit 2403b0b

Please sign in to comment.