mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-11 06:40:48 +08:00
Move the node into the package that gets scanned
This commit is contained in:
parent
7520691021
commit
fe4eaf0bd1
@ -17,7 +17,7 @@
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import torch
|
import torch
|
||||||
import nodes
|
import comfy.nodes.common
|
||||||
import comfy.utils
|
import comfy.utils
|
||||||
|
|
||||||
|
|
||||||
@ -28,8 +28,8 @@ class StableCascade_EmptyLatentImage:
|
|||||||
@classmethod
|
@classmethod
|
||||||
def INPUT_TYPES(s):
|
def INPUT_TYPES(s):
|
||||||
return {"required": {
|
return {"required": {
|
||||||
"width": ("INT", {"default": 1024, "min": 256, "max": nodes.MAX_RESOLUTION, "step": 8}),
|
"width": ("INT", {"default": 1024, "min": 256, "max": comfy.nodes.common.MAX_RESOLUTION, "step": 8}),
|
||||||
"height": ("INT", {"default": 1024, "min": 256, "max": nodes.MAX_RESOLUTION, "step": 8}),
|
"height": ("INT", {"default": 1024, "min": 256, "max": comfy.nodes.common.MAX_RESOLUTION, "step": 8}),
|
||||||
"compression": ("INT", {"default": 42, "min": 4, "max": 128, "step": 1}),
|
"compression": ("INT", {"default": 42, "min": 4, "max": 128, "step": 1}),
|
||||||
"batch_size": ("INT", {"default": 1, "min": 1, "max": 4096})
|
"batch_size": ("INT", {"default": 1, "min": 1, "max": 4096})
|
||||||
}}
|
}}
|
||||||
0
tests/compare/__init__.py
Normal file
0
tests/compare/__init__.py
Normal file
Loading…
Reference in New Issue
Block a user