chansung's picture
Upload folder using huggingface_hub
155d75d verified
raw
history blame contribute delete
321 Bytes
"""
Hardware detection and analysis components.
This module provides hardware detection capabilities and memory
requirement analysis for diffusion models.
"""
from .detector import HardwareDetector
from .memory_calculator import SimpleMemoryCalculator
__all__ = [
"HardwareDetector",
"SimpleMemoryCalculator"
]