Skip to content

Commit 65c1c1b

Browse files
committed
Release v2.5.15: MPS fixes, autocast device type, accurate VRAM tracking, triton 3.0 compatibility
1 parent b40f261 commit 65c1c1b

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

README.md

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

3737
## 🚀 Updates
3838

39+
**2025.12.03 - Version 2.5.15**
40+
41+
- **🍎 Fix: MPS compatibility** - Disable antialias for MPS tensors and fix bfloat16 arange issues
42+
- **⚡ Fix: Autocast device type** - Use proper device type attribute to prevent autocast errors
43+
- **📊 Memory: Accurate VRAM tracking** - Use max_memory_reserved for more precise peak reporting
44+
- **🔧 Fix: Triton compatibility** - Add shim for bitsandbytes 0.45+ / triton 3.0+ (fixes PyTorch 2.7 installation errors)
45+
3946
**2025.12.01 - Version 2.5.14**
4047

4148
- **🍎 Fix: MPS device comparison** - Normalize device strings to prevent unnecessary tensor movements

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.14"
4+
version = "2.5.15"
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.14"
7+
__version__ = "2.5.15"
88

99
import os
1010
import warnings

0 commit comments

Comments
 (0)