Skip to content

Commit 94eb456

Browse files
authored
Merge pull request #534 from Kosinkadink/develop
Fix RuntimeError: Float did not match Long when ComfyUI is outdated
2 parents 49e25ab + 88f5ad9 commit 94eb456

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

animatediff/utils_model.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
BIGMIN = -(2**53-1)
2525
BIGMAX = (2**53-1)
26-
BIGMAX_TENSOR = torch.tensor(BIGMAX)
26+
BIGMAX_TENSOR = torch.tensor(9999999999.9)
2727

2828
MAX_RESOLUTION = 16384 # mirrors ComfyUI's nodes.py MAX_RESOLUTION
2929

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "comfyui-animatediff-evolved"
33
description = "Improved AnimateDiff integration for ComfyUI."
4-
version = "1.4.3"
4+
version = "1.4.4"
55
license = { file = "LICENSE" }
66
dependencies = []
77

0 commit comments

Comments
 (0)