From b3839ca722d9953cf138a4b84da3797803cf7aed Mon Sep 17 00:00:00 2001 From: Yousef Rafat <81116377+yousef-rafat@users.noreply.github.com> Date: Sat, 5 Jul 2025 21:05:53 +0300 Subject: [PATCH] Added Pipeline, Conditioner, Diffusion, Scheduler, and Image Processor --- comfy/ldm/hunyuan3d/{model => model_}/conditioner.py | 0 comfy/ldm/hunyuan3d/{model => model_}/dinov2.py | 0 comfy/ldm/hunyuan3d/{model => model_}/hunyuandit.py | 0 comfy/ldm/hunyuan3d/{model => model_}/image_processor.py | 0 comfy/ldm/hunyuan3d/{model => model_}/moe.py | 2 +- comfy/ldm/hunyuan3d/{model => model_}/pipeline.py | 0 comfy/ldm/hunyuan3d/{model => model_}/scheduler.py | 0 7 files changed, 1 insertion(+), 1 deletion(-) rename comfy/ldm/hunyuan3d/{model => model_}/conditioner.py (100%) rename comfy/ldm/hunyuan3d/{model => model_}/dinov2.py (100%) rename comfy/ldm/hunyuan3d/{model => model_}/hunyuandit.py (100%) rename comfy/ldm/hunyuan3d/{model => model_}/image_processor.py (100%) rename comfy/ldm/hunyuan3d/{model => model_}/moe.py (99%) rename comfy/ldm/hunyuan3d/{model => model_}/pipeline.py (100%) rename comfy/ldm/hunyuan3d/{model => model_}/scheduler.py (100%) diff --git a/comfy/ldm/hunyuan3d/model/conditioner.py b/comfy/ldm/hunyuan3d/model_/conditioner.py similarity index 100% rename from comfy/ldm/hunyuan3d/model/conditioner.py rename to comfy/ldm/hunyuan3d/model_/conditioner.py diff --git a/comfy/ldm/hunyuan3d/model/dinov2.py b/comfy/ldm/hunyuan3d/model_/dinov2.py similarity index 100% rename from comfy/ldm/hunyuan3d/model/dinov2.py rename to comfy/ldm/hunyuan3d/model_/dinov2.py diff --git a/comfy/ldm/hunyuan3d/model/hunyuandit.py b/comfy/ldm/hunyuan3d/model_/hunyuandit.py similarity index 100% rename from comfy/ldm/hunyuan3d/model/hunyuandit.py rename to comfy/ldm/hunyuan3d/model_/hunyuandit.py diff --git a/comfy/ldm/hunyuan3d/model/image_processor.py b/comfy/ldm/hunyuan3d/model_/image_processor.py similarity index 100% rename from comfy/ldm/hunyuan3d/model/image_processor.py rename to comfy/ldm/hunyuan3d/model_/image_processor.py diff --git a/comfy/ldm/hunyuan3d/model/moe.py b/comfy/ldm/hunyuan3d/model_/moe.py similarity index 99% rename from comfy/ldm/hunyuan3d/model/moe.py rename to comfy/ldm/hunyuan3d/model_/moe.py index f631a2019..d09499714 100644 --- a/comfy/ldm/hunyuan3d/model/moe.py +++ b/comfy/ldm/hunyuan3d/model_/moe.py @@ -200,4 +200,4 @@ def test_moe(): print(timing) if __name__ == "__main__": - test_moe() + test_moe() \ No newline at end of file diff --git a/comfy/ldm/hunyuan3d/model/pipeline.py b/comfy/ldm/hunyuan3d/model_/pipeline.py similarity index 100% rename from comfy/ldm/hunyuan3d/model/pipeline.py rename to comfy/ldm/hunyuan3d/model_/pipeline.py diff --git a/comfy/ldm/hunyuan3d/model/scheduler.py b/comfy/ldm/hunyuan3d/model_/scheduler.py similarity index 100% rename from comfy/ldm/hunyuan3d/model/scheduler.py rename to comfy/ldm/hunyuan3d/model_/scheduler.py