Nodes/Deno Custom Nodes/(Deno) LTX High resolution Tiled Sampler
ComfyUI Node

(Deno) LTX High resolution Tiled Sampler

High-resolution LTX 2.3 second passes, tiled so your GPU doesn't tap out

By Deno2026·Created 5 months ago·Updated about 22 hours ago· 157
(Deno) LTX High resolution Tiled Sampler
  • noise
  • guider
  • sampler
  • sigmas
  • latent_image
  • output
  • denoised_output
horizontal_tiles2
vertical_tiles2
overlap8
audio_modefreeze
blend_modehann
aggressive_memory_cleanuptrue
debugfalse

This is the node for the moment LTX 2.3 gets good but too big. LTX 2.3 is a 22B model, and its whole selling point is synchronized video and audio in one latent. That's great until you want a second refinement pass at high resolution, at which point a single full-resolution sample step can demand more VRAM than you have. The (Deno) LTX High resolution Tiled Sampler splits the video half of the latent into overlapping spatial tiles, evaluates the model per tile, fuses the predictions back together, and only then lets the sampler update - one global trajectory, no tile-drift chaos.

How it works

The clever bit is that it's not just "tiled sampling." The node keeps a single global sampler trajectory while video predictions run through the tiles, and the full audio latent is passed to every video tile as context. That way the video gets denoised against the audio for sync, but the audio itself is never re-denoised - in audio_mode freeze (the only mode and the default) the sound comes back untouched. If you're doing a low-denoise refinement pass to add resolution and detail, you want your existing audio preserved exactly, so this is the right trade.

Guide-bearing LTX latents are handled too: the tiling keeps guide metadata intact, but the node is explicit that for those you should run LTXVSeparateAVLatent first, then apply LTXVCropGuides to the video latent before decode.

The inputs that matter

  • noise, guider, sampler, sigmas - these come from the standard ComfyUI sampler stack. The guider is BasicGuider or CFGGuider, and it should carry the LTX guide metadata from your upscaler/refinement path. sigmas is the low-denoise schedule for the second pass.
  • latent_image - the LTX AV nested latent containing video and audio.
  • horizontal_tiles / vertical_tiles - split counts. 2×2 is a sane start; push higher only if you're still OOMing.
  • overlap - overlap in latent tokens between tiles. Default 8; more overlap means smoother blending but more compute.
  • blend_mode - hann (default and recommended) is where you start.
  • aggressive_memory_cleanup - on by default. It runs extra cleanup between tile predictions; the tooltip is honest that this can be much slower, but it helps fragmented-memory cards.

Outputs are output (the refined AV latent, audio preserved) and denoised_output (the x0 callback latent), so you can pick the path your workflow needs.

Install and context

The node ships in the Deno pack - Manager search "Deno Custom Nodes" or:

cd ComfyUI/custom_nodes
git clone https://github.com/Deno2026/comfyui-deno-custom-nodes.git
# restart ComfyUI

It's a sampler that plugs into the official ComfyUI-LTXVideo workflow, so you need those LTX nodes (and their 2.3 models) installed as the base. If you don't have the LTX 2.3 setup already, the (Deno) LTX Model Loader and (Deno) Easy Model Download Helper in the same pack exist to get you there - the 2.3 GGUF starter set is the built-in preset for lower-VRAM rigs.

Two things trip people up. First, this node is for AV latents - if your latent is video-only, the (Deno) LTX Tiled Spatial Upscaler is the right sibling, and feeding a plain video latent here will complain. Second, don't expect speed; tiling is the price you pay to fit, and aggressive_memory_cleanup makes it slower still. Leave it on if you're on a 12–16GB card, and remember LTX 2.3's rebuilt VAE means previews are unreliable anyway - you're often working blind until decode, which is exactly when a node that fits without crashing earns its keep.

CategoryDeno/LTX

Inputs (12)

NameTypeDefaultDescription
noiseNOISENoise source used once for the global AV sampler trajectory.
guiderGUIDERBasicGuider or CFGGuider for the LTX AV second pass, including LTX guide metadata from upstream Sequencer/Add Guide nodes.
samplerSAMPLERComfyUI sampler object. The node keeps the sampler update global.
sigmasSIGMASSigma schedule for the low-denoise AV second-pass refinement.
latent_imageLATENTLTX AV nested latent containing video and audio. If guides are present, run LTXVSeparateAVLatent after this sampler, then apply LTXVCropGuides to the video latent before decode.
horizontal_tilesINT21–8Frame width split count. 2 means left and right tiles.
vertical_tilesINT21–8Frame height split count. 3 means top, middle, and bottom tiles.
overlapINT81–32Overlap in latent video tokens for each model-prediction tile, including guide-bearing video frames.
audio_modeoptCOMBOfreezeFreeze keeps audio unchanged while still using it as context for video denoising.
blend_modeoptCOMBOhannOverlap weighting curve. Hann is the recommended starting point.
aggressive_memory_cleanupoptBOOLEANtrueRun extra cleanup between AV tile predictions. This can be much slower, but may help fragmented VRAM or OOM cases.
debugoptBOOLEANfalsePrint AV hook calls, sigma labels, and tile diagnostics to the ComfyUI console.

Outputs (2)

NameTypeDescription
outputLATENTRefined AV latent. Video is tiled with guide metadata preserved and audio is preserved from the input.
denoised_outputLATENTDenoised AV latent from the callback x0. Video is x0 with guide metadata preserved and audio is preserved from the input.