Spaces:
Running
Running
| """ | |
| 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" | |
| ] |