Skip to content

Commit

Permalink
Merge pull request #534 from Kosinkadink/develop
Browse files Browse the repository at this point in the history
Fix RuntimeError: Float did not match Long when ComfyUI is outdated
  • Loading branch information
Kosinkadink authored Jan 31, 2025
2 parents 49e25ab + 88f5ad9 commit 94eb456
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion animatediff/utils_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

BIGMIN = -(2**53-1)
BIGMAX = (2**53-1)
BIGMAX_TENSOR = torch.tensor(BIGMAX)
BIGMAX_TENSOR = torch.tensor(9999999999.9)

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

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "comfyui-animatediff-evolved"
description = "Improved AnimateDiff integration for ComfyUI."
version = "1.4.3"
version = "1.4.4"
license = { file = "LICENSE" }
dependencies = []

Expand Down

0 comments on commit 94eb456

Please sign in to comment.