CIRCT 23.0.0git
Loading...
Searching...
No Matches
__main__.py
Go to the documentation of this file.
1# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
2# See https://llvm.org/LICENSE.txt for license information.
3# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
4"""Entry point for `python -m esiaccel.codegen`."""
5
6import sys
7
8from . import run
9
10if __name__ == "__main__":
11 sys.exit(run())