forked from neo-ai/tvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TVMC - a command line driver for TVM (apache#6112)
* Introduce a command line driver to compile, run and tune models, using TVM graph runtime * Include tvmc tests and integrate tvmc with linting, testing and CI * RFC: https://discuss.tvm.ai/t/rfc-a-tvm-command-line-interface/5165 Co-authored-by: Marcus Shawcroft <marcus.shawcroft@arm.com> Co-authored-by: Matthew Barrett <Matthew.Barrett@arm.com> Co-authored-by: Dmitriy Smirnov <dmitriy.smirnov@arm.com> Co-authored-by: Luke Hutton <luke.hutton@arm.com> Co-authored-by: Giuseppe Rossini <giuseppe.rossini@arm.com> Co-authored-by: Matthew Barrett <matthew.barrett@arm.com> Co-authored-by: Elen Kalda <elen.kalda@arm.com> Co-authored-by: Ramana Radhakrishnan <ramana.radhakrishnan@arm.com> Co-authored-by: Jeremy Johnson <jeremy.johnson@arm.com> Co-authored-by: Ina Dobreva <Ina.Dobreva@arm.com> Co-authored-by: Marcus Shawcroft <marcus.shawcroft@arm.com> Co-authored-by: Matthew Barrett <Matthew.Barrett@arm.com> Co-authored-by: Dmitriy Smirnov <dmitriy.smirnov@arm.com> Co-authored-by: Luke Hutton <luke.hutton@arm.com> Co-authored-by: Giuseppe Rossini <giuseppe.rossini@arm.com> Co-authored-by: Elen Kalda <elen.kalda@arm.com> Co-authored-by: Ramana Radhakrishnan <ramana.radhakrishnan@arm.com> Co-authored-by: Jeremy Johnson <jeremy.johnson@arm.com> Co-authored-by: Ina Dobreva <Ina.Dobreva@arm.com>
- Loading branch information
1 parent
4c2767f
commit 9eec77b
Showing
5 changed files
with
161 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
""" | ||
TVMC - TVM driver command-line interface | ||
""" | ||
|
||
from .main import main | ||
|
||
if __name__ == "__main__": | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
""" | ||
Common utility functions shared by TVMC modules. | ||
""" | ||
|
||
class TVMCException(Exception): | ||
"""TVMC Exception""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
#!/usr/bin/env python | ||
|
||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
""" | ||
TVMC - TVM driver command-line interface | ||
""" | ||
import argparse | ||
import logging | ||
import sys | ||
|
||
import pkg_resources | ||
|
||
from tvm.driver.tvmc.common import TVMCException | ||
|
||
|
||
REGISTERED_PARSER = [] | ||
|
||
|
||
def register_parser(make_subparser): | ||
""" | ||
Utility function to register a subparser for tvmc. | ||
Functions decorated with `tvm.driver.tvmc.main.register_parser` will be invoked | ||
with a parameter containing the subparser instance they need to add itself to, | ||
as a parser. | ||
Example | ||
------- | ||
@register_parser | ||
def _example_parser(main_subparser): | ||
subparser = main_subparser.add_parser('example', help='...') | ||
... | ||
""" | ||
REGISTERED_PARSER.append(make_subparser) | ||
return make_subparser | ||
|
||
|
||
def _main(argv): | ||
""" TVM command line interface. """ | ||
|
||
parser = argparse.ArgumentParser( | ||
prog='tvmc', | ||
formatter_class=argparse.RawDescriptionHelpFormatter, | ||
description="TVM compiler driver", | ||
epilog=__doc__, | ||
) | ||
parser.add_argument( | ||
"-v", "--verbose", action="count", default=0, help="increase verbosity" | ||
) | ||
parser.add_argument( | ||
"--version", action="store_true", help="print the version and exit" | ||
) | ||
|
||
subparser = parser.add_subparsers(title="commands") | ||
for make_subparser in REGISTERED_PARSER: | ||
make_subparser(subparser) | ||
|
||
args = parser.parse_args(argv) | ||
if args.verbose > 4: | ||
args.verbose = 4 | ||
|
||
logging.getLogger().setLevel(40 - args.verbose * 10) | ||
|
||
if args.version: | ||
version = pkg_resources.get_distribution("tvm").version | ||
sys.stdout.write("%s\n" % version) | ||
return 0 | ||
|
||
assert hasattr(args, "func"), "Error: missing 'func' attribute for subcommand {0}".format(argv) | ||
|
||
try: | ||
return args.func(args) | ||
except TVMCException as err: | ||
sys.stderr.write("Error: %s\n" % err) | ||
return 4 | ||
|
||
def main(): | ||
sys.exit(_main(sys.argv[1:])) | ||
|
||
if __name__ == "__main__": | ||
main() |