28 lines
720 B
Python
28 lines
720 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 cluster4npu_ui.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"
|
|
] |