sb_exec.py 443 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python3

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

"""SuperBench sb exec command."""

import hydra

from superbench.common.utils import logger


@hydra.main(config_path='../config', config_name='default')
def main(config):
    """The main entrypoint for sb-exec."""
    logger.info(config)
    # executor = SuperBenchExecutor(config)
    # executor.exec()


if __name__ == '__main__':
    main()