2024-03-03 12:34:13 -08:00
# code adapted from https://github.com/exx8/differential-diffusion
2025-10-01 22:17:33 +03:00
from typing_extensions import override
2024-03-03 12:34:13 -08:00
import torch
2025-10-01 22:17:33 +03:00
from comfy_api . latest import ComfyExtension , io
class DifferentialDiffusion ( io . ComfyNode ) :
@classmethod
def define_schema ( cls ) :
return io . Schema (
node_id = " DifferentialDiffusion " ,
add search aliases to all nodes (#12035)
* feat: Add search_aliases field to node schema
Adds `search_aliases` field to improve node discoverability. Users can define alternative search terms for nodes (e.g., "text concat" → StringConcatenate).
Changes:
- Add `search_aliases: list[str]` to V3 Schema
- Add `SEARCH_ALIASES` support for V1 nodes
- Include field in `/object_info` response
- Add aliases to high-priority core nodes
V1 usage:
```python
class MyNode:
SEARCH_ALIASES = ["alt name", "synonym"]
```
V3 usage:
```python
io.Schema(
node_id="MyNode",
search_aliases=["alt name", "synonym"],
...
)
```
## Related PRs
- Frontend: Comfy-Org/ComfyUI_frontend#XXXX (draft - merge after this)
- Docs: Comfy-Org/docs#XXXX (draft - merge after stable)
* Propagate search_aliases through V3 Schema.get_v1_info to NodeInfoV1
* feat: add SEARCH_ALIASES for core nodes (#12016)
Add search aliases to 22 core nodes in nodes.py to improve node discoverability:
- Checkpoint/model loaders: CheckpointLoader, DiffusersLoader
- Conditioning nodes: ConditioningAverage, ConditioningSetArea, ConditioningSetMask, ConditioningZeroOut
- Style nodes: StyleModelApply
- Image nodes: LoadImageMask, LoadImageOutput, ImageBatch, ImageInvert, ImagePadForOutpaint
- Latent nodes: LoadLatent, SaveLatent, LatentBlend, LatentComposite, LatentCrop, LatentFlip, LatentFromBatch, LatentUpscale, LatentUpscaleBy, RepeatLatentBatch
* feat: add SEARCH_ALIASES for image, mask, and string nodes (#12017)
Add search aliases to nodes in comfy_extras for better discoverability:
- nodes_mask.py: mask manipulation nodes
- nodes_images.py: image processing nodes
- nodes_post_processing.py: post-processing effect nodes
- nodes_string.py: string manipulation nodes
- nodes_compositing.py: compositing nodes
- nodes_morphology.py: morphological operation nodes
- nodes_latent.py: latent space nodes
Uses search_aliases parameter in io.Schema() for v3 nodes.
* feat: add SEARCH_ALIASES for audio and video nodes (#12018)
Add search aliases to audio and video nodes for better discoverability:
- nodes_audio.py: audio loading, saving, and processing nodes
- nodes_video.py: video loading and processing nodes
- nodes_wan.py: WAN model nodes
Uses search_aliases parameter in io.Schema() for v3 nodes.
* feat: add SEARCH_ALIASES for model and misc nodes (#12019)
Add search aliases to model-related and miscellaneous nodes:
- Model nodes: nodes_model_merging.py, nodes_model_advanced.py, nodes_lora_extract.py
- Sampler nodes: nodes_custom_sampler.py, nodes_align_your_steps.py
- Control nodes: nodes_controlnet.py, nodes_attention_multiply.py, nodes_hooks.py
- Training nodes: nodes_train.py, nodes_dataset.py
- Utility nodes: nodes_logic.py, nodes_canny.py, nodes_differential_diffusion.py
- Architecture-specific: nodes_sd3.py, nodes_pixart.py, nodes_lumina2.py, nodes_kandinsky5.py, nodes_hidream.py, nodes_fresca.py, nodes_hunyuan3d.py
- Media nodes: nodes_load_3d.py, nodes_webcam.py, nodes_preview_any.py, nodes_wanmove.py
Uses search_aliases parameter in io.Schema() for v3 nodes, SEARCH_ALIASES class attribute for legacy nodes.
2026-01-22 18:36:58 -08:00
search_aliases = [ " inpaint gradient " , " variable denoise strength " ] ,
2025-10-01 22:17:33 +03:00
display_name = " Differential Diffusion " ,
category = " _for_testing " ,
2026-02-16 14:02:17 -08:00
description = " Enables per-pixel variable denoise strength using a mask, where mask intensity controls how much each region is denoised during sampling. " ,
short_description = " Per-pixel variable denoise strength via mask. " ,
2025-10-01 22:17:33 +03:00
inputs = [
io . Model . Input ( " model " ) ,
io . Float . Input (
" strength " ,
default = 1.0 ,
min = 0.0 ,
max = 1.0 ,
step = 0.01 ,
optional = True ,
) ,
] ,
outputs = [ io . Model . Output ( ) ] ,
is_experimental = True ,
)
2024-03-03 12:34:13 -08:00
@classmethod
2025-10-01 22:17:33 +03:00
def execute ( cls , model , strength = 1.0 ) - > io . NodeOutput :
2024-03-03 12:34:13 -08:00
model = model . clone ( )
2025-10-01 22:17:33 +03:00
model . set_model_denoise_mask_function ( lambda * args , * * kwargs : cls . forward ( * args , * * kwargs , strength = strength ) )
return io . NodeOutput ( model )
2024-03-03 12:34:13 -08:00
2025-10-01 22:17:33 +03:00
@classmethod
def forward ( cls , sigma : torch . Tensor , denoise_mask : torch . Tensor , extra_options : dict , strength : float ) :
2024-03-03 15:11:13 -05:00
model = extra_options [ " model " ]
step_sigmas = extra_options [ " sigmas " ]
sigma_to = model . inner_model . model_sampling . sigma_min
if step_sigmas [ - 1 ] > sigma_to :
sigma_to = step_sigmas [ - 1 ]
sigma_from = step_sigmas [ 0 ]
ts_from = model . inner_model . model_sampling . timestep ( sigma_from )
ts_to = model . inner_model . model_sampling . timestep ( sigma_to )
2024-03-04 00:43:09 -05:00
current_ts = model . inner_model . model_sampling . timestep ( sigma [ 0 ] )
2024-03-03 15:11:13 -05:00
threshold = ( current_ts - ts_to ) / ( ts_from - ts_to )
2025-09-20 18:10:39 -07:00
# Generate the binary mask based on the threshold
binary_mask = ( denoise_mask > = threshold ) . to ( denoise_mask . dtype )
# Blend binary mask with the original denoise_mask using strength
if strength and strength < 1 :
blended_mask = strength * binary_mask + ( 1 - strength ) * denoise_mask
return blended_mask
else :
return binary_mask
2024-03-03 12:34:13 -08:00
2025-10-01 22:17:33 +03:00
class DifferentialDiffusionExtension ( ComfyExtension ) :
@override
async def get_node_list ( self ) - > list [ type [ io . ComfyNode ] ] :
return [
DifferentialDiffusion ,
]
async def comfy_entrypoint ( ) - > DifferentialDiffusionExtension :
return DifferentialDiffusionExtension ( )