Spaces:
Sleeping
Sleeping
File size: 321 Bytes
155d75d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | """
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"
] |