sb_exec.py 295 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 exec command."""


9
def main():
10
11
12
13
14
15
16
    """The main entrypoint for sb-exec."""
    # executor = SuperBenchExecutor(config)
    # executor.exec()


if __name__ == '__main__':
    main()