__init__.py 366 Bytes
Newer Older
1
2
3
4
5
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

"""Exposes the interface of SuperBench common utilities."""

Yifan Xiong's avatar
Yifan Xiong committed
6
from superbench.common.utils.logging import SuperBenchLogger, logger
7
from superbench.common.utils.file_handler import create_output_dir, get_sb_config
8

Yifan Xiong's avatar
Yifan Xiong committed
9
__all__ = ['SuperBenchLogger', 'logger', 'create_output_dir', 'get_sb_config']