cluster4npu/utils/__init__.py
Mason 92f9d956af Remove cluster4npu_ui package prefix and remove export/analysis buttons
- Update all imports to use relative imports instead of cluster4npu_ui.* prefix
- Remove export configuration functionality from dashboard menu
- Remove performance analysis action from pipeline menu
- Update dependencies in pyproject.toml to include NodeGraphQt and PyQt5
- Maintain clean import structure across all modules

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-07 12:17:59 +08:00

28 lines
705 B
Python

"""
Utility functions and helper modules for the Cluster4NPU application.
This module provides various utility functions, helpers, and common operations
that are used throughout the application.
Available Utilities:
- file_utils: File operations and I/O helpers (future)
- ui_utils: UI-related utility functions (future)
Usage:
from utils import file_utils, ui_utils
# File operations
pipeline_data = file_utils.load_pipeline('path/to/file.mflow')
# UI helpers
ui_utils.show_error_dialog(parent, "Error message")
"""
# Import utilities as they are implemented
# from . import file_utils
# from . import ui_utils
__all__ = [
# "file_utils",
# "ui_utils"
]