Compare commits

...

5 Commits

Author SHA1 Message Date
sovahc
78db78ab28
Merge cb820f02492a8ecb866bb41eecacafc5c9ca7611 into 50e7dd34d3b6e6bbab1d41e8068e1ddd19bd4d1b 2025-12-03 10:11:17 -07:00
kijai
50e7dd34d3 Update model_optimization_nodes.py 2025-12-03 17:18:13 +02:00
kijai
37206374ef Add nodes to assist with CUDA memory use visualization 2025-12-03 17:13:44 +02:00
sovahc
cb820f0249
Description is fixed 2025-11-21 03:14:59 +02:00
sovahc
95bc77f855
Added step to ReplaceImagesInBatch
This is useful for VACE for interleaving frames
2025-11-21 02:17:20 +02:00
3 changed files with 131 additions and 11 deletions

View File

@ -212,6 +212,9 @@ NODE_CONFIG = {
"LatentInpaintTTM": {"class": LatentInpaintTTM, "name": "Latent Inpaint TTM"},
"NABLA_AttentionKJ": {"class": NABLA_AttentionKJ, "name": "NABLA Attention KJ"},
"TorchCompileModelAdvanced": {"class": TorchCompileModelAdvanced, "name": "TorchCompileModelAdvanced"},
"StartRecordCUDAMemoryHistory": {"class": StartRecordCUDAMemoryHistory, "name": "Start Recording CUDAMemory History"},
"EndRecordCUDAMemoryHistory": {"class": EndRecordCUDAMemoryHistory, "name": "End Recording CUDAMemory History"},
"VisualizeCUDAMemoryHistory": {"class": VisualizeCUDAMemoryHistory, "name": "Visualize CUDAMemory History"},
#instance diffusion
"CreateInstanceDiffusionTracking": {"class": CreateInstanceDiffusionTracking},

View File

@ -2156,8 +2156,8 @@ class ReplaceImagesInBatch:
FUNCTION = "replace"
CATEGORY = "KJNodes/image"
DESCRIPTION = """
Replaces the images in a batch, starting from the specified start index,
with the replacement images.
Replaces the images in a batch, starting from the specified start index with step stride,
using the replacement images.
"""
@classmethod
@ -2165,6 +2165,7 @@ with the replacement images.
return {
"required": {
"start_index": ("INT", {"default": 1,"min": 0, "max": 4096, "step": 1}),
"step": ("INT", {"default": 1,"min": 1, "max": 4096, "step": 1}),
},
"optional": {
"original_images": ("IMAGE",),
@ -2174,14 +2175,14 @@ with the replacement images.
}
}
def replace(self, original_images=None, replacement_images=None, start_index=1, original_masks=None, replacement_masks=None):
def replace(self, original_images=None, replacement_images=None, start_index=1, step=1, original_masks=None, replacement_masks=None):
images = None
masks = None
if original_images is not None and replacement_images is not None:
if start_index >= len(original_images):
raise ValueError("ReplaceImagesInBatch: Start index is out of range")
end_index = start_index + len(replacement_images)
end_index = start_index + len(replacement_images) * step
if end_index > len(original_images):
raise ValueError("ReplaceImagesInBatch: End index is out of range")
@ -2189,7 +2190,7 @@ with the replacement images.
if original_images_copy.shape[2] != replacement_images.shape[2] or original_images_copy.shape[3] != replacement_images.shape[3]:
replacement_images = common_upscale(replacement_images.movedim(-1, 1), original_images_copy.shape[1], original_images_copy.shape[2], "lanczos", "center").movedim(1, -1)
original_images_copy[start_index:end_index] = replacement_images
original_images_copy[start_index:end_index:step] = replacement_images
images = original_images_copy
else:
images = torch.zeros((1, 64, 64, 3))
@ -2197,7 +2198,7 @@ with the replacement images.
if original_masks is not None and replacement_masks is not None:
if start_index >= len(original_masks):
raise ValueError("ReplaceImagesInBatch: Start index is out of range")
end_index = start_index + len(replacement_masks)
end_index = start_index + len(replacement_masks) * step
if end_index > len(original_masks):
raise ValueError("ReplaceImagesInBatch: End index is out of range")
@ -2205,7 +2206,7 @@ with the replacement images.
if original_masks_copy.shape[1] != replacement_masks.shape[1] or original_masks_copy.shape[2] != replacement_masks.shape[2]:
replacement_masks = common_upscale(replacement_masks.unsqueeze(1), original_masks_copy.shape[1], original_masks_copy.shape[2], "nearest-exact", "center").squeeze(0)
original_masks_copy[start_index:end_index] = replacement_masks
original_masks_copy[start_index:end_index:step] = replacement_masks
masks = original_masks_copy
else:
masks = torch.zeros((1, 64, 64))

View File

@ -4,6 +4,7 @@ import logging
import torch
import importlib
import math
import datetime
import folder_paths
import comfy.model_management as mm
@ -2103,7 +2104,7 @@ class NABLA_AttentionKJ():
def attention_override_nabla(func, *args, **kwargs):
return nabla_attention(*args, **kwargs)
if torch_compile:
attention_override_nabla = torch.compile(attention_override_nabla, mode="max-autotune-no-cudagraphs", dynamic=True)
@ -2146,7 +2147,7 @@ class NABLA_Attention():
kv_nb = mask.sum(-1).to(torch.int32)
kv_inds = mask.argsort(dim=-1, descending=True).to(torch.int32)
return BlockMask.from_kv_blocks(torch.zeros_like(kv_nb), kv_inds, kv_nb, kv_inds, BLOCK_SIZE=BLOCK_SIZE, mask_mod=None)
def fast_sta_nabla(T, H, W, wT=3, wH=3, wW=3):
l = torch.Tensor([T, H, W]).amax()
r = torch.arange(0, l, 1, dtype=torch.int16, device=mm.get_torch_device())
@ -2166,7 +2167,7 @@ def fast_sta_nabla(T, H, W, wT=3, wH=3, wW=3):
def get_sparse_params(x, wT, wH, wW, sparsity=0.9):
B, C, T, H, W = x.shape
print("x shape:", x.shape)
#print("x shape:", x.shape)
patch_size = (1, 2, 2)
T, H, W = (
T // patch_size[0],
@ -2186,4 +2187,119 @@ def get_sparse_params(x, wT, wH, wW, sparsity=0.9):
"method": "topcdf",
}
return sparse_params
return sparse_params
from comfy.comfy_types.node_typing import IO
class StartRecordCUDAMemoryHistory():
# @classmethod
# def IS_CHANGED(s):
# return True
@classmethod
def INPUT_TYPES(s):
return {
"required": {
"input": (IO.ANY,),
"enabled": (["all", "state", "None"], {"default": "all", "tooltip": "None: disable, 'state': keep info for allocated memory, 'all': keep history of all alloc/free calls"}),
"context": (["all", "state", "alloc", "None"], {"default": "all", "tooltip": "None: no tracebacks, 'state': tracebacks for allocated memory, 'alloc': for alloc calls, 'all': for free calls"}),
"stacks": (["python", "all"], {"default": "all", "tooltip": "'python': Python/TorchScript/inductor frames, 'all': also C++ frames"}),
"max_entries": ("INT", {"default": 100000, "min": 1000, "max": 10000000, "tooltip": "Maximum number of entries to record"}),
},
}
RETURN_TYPES = (IO.ANY, )
RETURN_NAMES = ("input", "output_path",)
FUNCTION = "start"
CATEGORY = "KJNodes/experimental"
DESCRIPTION = "THIS NODE ALWAYS RUNS. Starts recording CUDA memory allocation history, can be ended and saved with EndRecordCUDAMemoryHistory. "
def start(self, input, enabled, context, stacks, max_entries):
mm.soft_empty_cache()
torch.cuda.reset_peak_memory_stats(mm.get_torch_device())
torch.cuda.memory._record_memory_history(
max_entries=max_entries,
enabled=enabled if enabled != "None" else None,
context=context if context != "None" else None,
stacks=stacks
)
return input,
class EndRecordCUDAMemoryHistory():
@classmethod
def INPUT_TYPES(s):
return {"required": {
"input": (IO.ANY,),
"output_path": ("STRING", {"default": "comfy_cuda_memory_history"}, "Base path for saving the CUDA memory history file, timestamp and .pt extension will be added"),
},
}
RETURN_TYPES = (IO.ANY, "STRING",)
RETURN_NAMES = ("input", "output_path",)
FUNCTION = "end"
CATEGORY = "KJNodes/experimental"
DESCRIPTION = "Records CUDA memory allocation history between start and end, saves to a file that can be analyzed here: https://docs.pytorch.org/memory_viz or with VisualizeCUDAMemoryHistory node"
def end(self, input, output_path):
mm.soft_empty_cache()
time = datetime.datetime.now().strftime("%Y%m%d_%H%M%S")
output_path = f"{output_path}{time}.pt"
torch.cuda.memory._dump_snapshot(output_path)
torch.cuda.memory._record_memory_history(enabled=None)
return input, output_path
try:
from server import PromptServer
except:
PromptServer = None
class VisualizeCUDAMemoryHistory():
@classmethod
def INPUT_TYPES(s):
return {"required": {
"snapshot_path": ("STRING", ),
},
"hidden": {
"unique_id": "UNIQUE_ID",
},
}
RETURN_TYPES = ("STRING",)
RETURN_NAMES = ("output_path",)
FUNCTION = "visualize"
CATEGORY = "KJNodes/experimental"
DESCRIPTION = "Visualizes a CUDA memory allocation history file, opens in browser"
OUTPUT_NODE = True
def visualize(self, snapshot_path, unique_id):
import pickle
from torch.cuda import _memory_viz
import uuid
from folder_paths import get_output_directory
output_dir = get_output_directory()
with open(snapshot_path, "rb") as f:
snapshot = pickle.load(f)
html = _memory_viz.trace_plot(snapshot)
html_filename = f"cuda_memory_history_{uuid.uuid4().hex}.html"
output_path = os.path.join(output_dir, "memory_history", html_filename)
os.makedirs(os.path.dirname(output_path), exist_ok=True)
with open(output_path, "w", encoding="utf-8") as f:
f.write(html)
api_url = f"http://localhost:8188/api/view?type=output&filename={html_filename}&subfolder=memory_history"
# Progress UI
if unique_id and PromptServer is not None:
try:
PromptServer.instance.send_progress_text(
api_url,
unique_id
)
except:
pass
return api_url,