sb_run.py 286 Bytes
Newer Older
1
2
3
4
5
6
7
8
#!/usr/bin/env python3

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

"""SuperBench sb run command."""


9
def main():
10
11
12
13
14
15
16
    """The main entrypoint for sb-run."""
    # runner = SuperBenchRunner(config)
    # runner.run()


if __name__ == '__main__':
    main()