Initial support for RamTorch. Still a WIP

This commit is contained in:
Jaret Burkett
2025-10-05 13:03:26 -06:00
parent c6edd71a5b
commit 4e5707854f
8 changed files with 687 additions and 120 deletions

View File

@@ -70,7 +70,6 @@ from typing import TYPE_CHECKING
from toolkit.print import print_acc
from diffusers import FluxFillPipeline
from transformers import AutoModel, AutoTokenizer, Gemma2Model, Qwen2Model, LlamaModel
from toolkit.memory_management import MemoryManager
if TYPE_CHECKING:
from toolkit.lora_special import LoRASpecialNetwork
@@ -225,8 +224,6 @@ class StableDiffusion:
# do not resize control images
self.use_raw_control_images = False
self.memory_manager = MemoryManager(self)
# properties for old arch for backwards compatibility
@property
def is_xl(self):