Skip to content

Commit 112275d

Browse files
authored
Merge pull request #333 from AInVFX/main
release: v2.5.12 - Regression fix
2 parents 6f784b1 + 16508d3 commit 112275d

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ We're actively working on improvements and new features. To stay informed:
3636

3737
## 🚀 Updates
3838

39+
**2025.11.28 - Version 2.5.12**
40+
41+
- **🐛 Fix: Color artifacts regression** - Reverted in-place tensor operations in video transform pipeline that caused color artifacts on some images
42+
3943
**2025.11.28 - Version 2.5.11**
4044

4145
- **⚡ Feature: CUDNN attention backend** - Added support for PyTorch 2.3+ CUDNN_ATTENTION backend with automatic fallback for older versions (thanks @eadwu)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "seedvr2_videoupscaler"
33
description = "SeedVR2 official ComfyUI integration: ByteDance-Seed's one-step diffusion-based video/image upscaling with memory-efficient inference"
4-
version = "2.5.11"
4+
version = "2.5.12"
55
authors = [
66
{name = "numz"},
77
{name = "adrientoupet"}

src/core/generation_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ def prepare_video_transforms(resolution: int, max_resolution: int = 0, debug: Op
7777
downsample_only=False,
7878
max_resolution=max_resolution,
7979
),
80-
Lambda(lambda x: x.clamp_(0.0, 1.0)),
80+
Lambda(lambda x: torch.clamp(x, 0.0, 1.0)),
8181
DivisiblePad((16, 16)),
82-
Normalize(0.5, 0.5, inplace=True),
82+
Normalize(0.5, 0.5),
8383
Lambda(lambda x: x.permute(1, 0, 2, 3)), # t c h w -> c t h w (faster than Rearrange)
8484
])
8585

src/utils/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"""
55

66
# Version information
7-
__version__ = "2.5.11"
7+
__version__ = "2.5.12"
88

99
import os
1010
import warnings

0 commit comments

Comments
 (0)