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

[tvm] branch last-successful updated (71067799ef -> 557fc6c107)

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

github-bot pushed a change to branch last-successful
in repository https://gitbox.apache.org/repos/asf/tvm.git


    from 71067799ef [TE][TIR] Enable CreatePrimFunc to properly handle 'layout_free_placeholder' (#11054)
     add fe948da88e Upgrad oneflow version (#11052)
     add e2dd0f8251 Let remote RPCModule get function recursively (#11053)
     add 94f28b29c5 [TVMC] Add `--config` argument for config files (#11012)
     add 81073962ef Revert "[OpenCL] Fix type casting error (#11021)" (#11035)
     add 312b552b11 Add FlattenAtrousConv transformation (#10996)
     add 557fc6c107 Hotfix CI (black check not caught by PR CI) (#11056)

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 +
 docker/install/ubuntu_install_oneflow.sh           |   4 +-
 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 +-
 python/tvm/relay/transform/transform.py            |  27 ++
 src/relay/qnn/utils.h                              |   6 +
 src/relay/transforms/flatten_atrous_conv.cc        | 195 ++++++++++
 src/runtime/rpc/rpc_module.cc                      |   2 +-
 src/target/source/codegen_opencl.cc                |  28 --
 src/target/source/codegen_opencl.h                 |   5 -
 tests/python/driver/tvmc/test_command_line.py      |  36 ++
 tests/python/driver/tvmc/test_parse_config_file.py | 155 ++++++++
 tests/python/frontend/oneflow/test_forward.py      |  22 +-
 .../python/relay/test_pass_flatten_atrous_conv.py  | 427 +++++++++++++++++++++
 .../python/unittest/test_target_codegen_opencl.py  |  37 --
 22 files changed, 1071 insertions(+), 90 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 src/relay/transforms/flatten_atrous_conv.cc
 create mode 100644 tests/python/driver/tvmc/test_parse_config_file.py
 create mode 100644 tests/python/relay/test_pass_flatten_atrous_conv.py