You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by le...@apache.org on 2022/04/19 10:50:25 UTC

[tvm] branch main updated (e2dd0f8251 -> 94f28b29c5)

This is an automated email from the ASF dual-hosted git repository.

leandron pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


    from e2dd0f8251 Let remote RPCModule get function recursively (#11053)
     add 94f28b29c5 [TVMC] Add `--config` argument for config files (#11012)

No new revisions were added by this update.

Summary of changes:
 configs/host/default.json                          |   7 +
 configs/test/compile_config_test.json              |   9 ++
 configs/test/tune_config_test.json                 |   6 +
 python/tvm/driver/tvmc/autotuner.py                |   5 +-
 python/tvm/driver/tvmc/compiler.py                 |   5 +-
 python/tvm/driver/tvmc/config_options.py           | 159 +++++++++++++++++++++
 python/tvm/driver/tvmc/main.py                     |  14 +-
 python/tvm/driver/tvmc/micro.py                    |   5 +-
 python/tvm/driver/tvmc/runner.py                   |   5 +-
 python/tvm/driver/tvmc/target.py                   |   2 +-
 tests/python/driver/tvmc/test_command_line.py      |  36 +++++
 tests/python/driver/tvmc/test_parse_config_file.py | 155 ++++++++++++++++++++
 12 files changed, 401 insertions(+), 7 deletions(-)
 create mode 100644 configs/host/default.json
 create mode 100644 configs/test/compile_config_test.json
 create mode 100644 configs/test/tune_config_test.json
 create mode 100644 python/tvm/driver/tvmc/config_options.py
 create mode 100644 tests/python/driver/tvmc/test_parse_config_file.py