Move mochi latent node to: latent/video.

This commit is contained in:
comfyanonymous 2024-11-08 08:33:44 -05:00
parent 2865f913f7
commit 75a818c720
1 changed files with 2 additions and 5 deletions

View File

@ -3,9 +3,6 @@ import torch
import comfy.model_management import comfy.model_management
class EmptyMochiLatentVideo: class EmptyMochiLatentVideo:
def __init__(self):
self.device = comfy.model_management.intermediate_device()
@classmethod @classmethod
def INPUT_TYPES(s): def INPUT_TYPES(s):
return {"required": { "width": ("INT", {"default": 848, "min": 16, "max": nodes.MAX_RESOLUTION, "step": 16}), return {"required": { "width": ("INT", {"default": 848, "min": 16, "max": nodes.MAX_RESOLUTION, "step": 16}),
@ -15,10 +12,10 @@ class EmptyMochiLatentVideo:
RETURN_TYPES = ("LATENT",) RETURN_TYPES = ("LATENT",)
FUNCTION = "generate" FUNCTION = "generate"
CATEGORY = "latent/mochi" CATEGORY = "latent/video"
def generate(self, width, height, length, batch_size=1): def generate(self, width, height, length, batch_size=1):
latent = torch.zeros([batch_size, 12, ((length - 1) // 6) + 1, height // 8, width // 8], device=self.device) latent = torch.zeros([batch_size, 12, ((length - 1) // 6) + 1, height // 8, width // 8], device=comfy.model_management.intermediate_device())
return ({"samples":latent}, ) return ({"samples":latent}, )
NODE_CLASS_MAPPINGS = { NODE_CLASS_MAPPINGS = {