Skip to content

Commit e2faeda

Browse files
committed
Release v2.5.14 - MPS device fix, VRAM swap detection, enforce physical VRAM limit
1 parent 5775ff0 commit e2faeda

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

README.md

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

3737
## 🚀 Updates
3838

39+
**2025.12.01 - Version 2.5.14**
40+
41+
- **🍎 Fix: MPS device comparison** - Normalize device strings to prevent unnecessary tensor movements
42+
- **📊 Memory: VRAM swap detection** - Peak stats now show GPU+swap breakdown when overflow occurs, with warning when swap detected
43+
- **🛡️ Memory: Enforce physical VRAM limit** - PyTorch now OOMs instead of silently swapping to shared memory (prevents extreme slowdowns on Windows)
44+
3945
**2025.11.30 - Version 2.5.13**
4046

4147
- **🔧 Fix: PyTorch 2.7+ triton import error** - Resolved installation crash caused by triton.ops import chain on newer triton versions

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.13"
4+
version = "2.5.14"
55
authors = [
66
{name = "numz"},
77
{name = "adrientoupet"}

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.13"
7+
__version__ = "2.5.14"
88

99
import os
1010
import warnings

0 commit comments

Comments
 (0)