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

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

from .logging import logger
7
from superbench.common.utils.file_handler import create_output_dir, get_sb_config
8

9
__all__ = ['logger', 'create_output_dir', 'get_sb_config']