You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ju...@apache.org on 2021/03/31 17:47:23 UTC

[tvm] branch main updated (6eedad1 -> 0bd1536)

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

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


    from 6eedad1  [crt] fix shift out of type bounds (#7733)
     add 0bd1536  [Target] Add support for target object with host field compatible with previous api (#7534)

No new revisions were added by this update.

Summary of changes:
 include/tvm/target/target.h                        | 37 +++++++++++-
 python/tvm/auto_scheduler/measure.py               | 13 ++--
 python/tvm/auto_scheduler/relay_integration.py     |  8 +--
 python/tvm/auto_scheduler/search_task.py           | 14 +++--
 python/tvm/autotvm/graph_tuner/base_graph_tuner.py |  7 ++-
 .../autotvm/graph_tuner/utils/traverse_graph.py    |  2 +-
 python/tvm/autotvm/measure/measure_methods.py      |  3 +
 python/tvm/autotvm/task/relay_integration.py       |  9 ++-
 python/tvm/autotvm/task/task.py                    | 14 +++--
 python/tvm/contrib/peak.py                         | 13 +++-
 python/tvm/driver/build_module.py                  | 13 +++-
 python/tvm/driver/tvmc/autotuner.py                | 11 ++--
 python/tvm/driver/tvmc/compiler.py                 | 12 ++--
 python/tvm/exec/measure_peak.py                    |  4 ++
 python/tvm/relay/backend/_backend.py               |  7 ++-
 python/tvm/relay/backend/vm.py                     | 17 +++++-
 python/tvm/relay/build_module.py                   | 15 +++--
 python/tvm/target/target.py                        | 62 ++++++++++++++-----
 src/auto_scheduler/feature.cc                      | 18 ++++--
 src/auto_scheduler/measure_record.cc               |  8 ++-
 src/auto_scheduler/search_task.cc                  |  3 +
 src/driver/driver_api.cc                           | 47 ++++++++++-----
 src/relay/backend/build_module.cc                  | 17 ++++--
 src/relay/backend/vm/compiler.cc                   | 10 +++-
 src/relay/transforms/memory_alloc.cc               |  2 +
 src/target/target.cc                               | 57 +++++++++++++++---
 tests/micro/zephyr/test_zephyr.py                  |  3 +-
 tests/python/contrib/test_cudnn.py                 |  8 +--
 tests/python/contrib/test_dlpack.py                |  4 +-
 tests/python/contrib/test_miopen.py                |  4 +-
 tests/python/driver/tvmc/test_compiler.py          |  3 +-
 tests/python/frontend/tensorflow/test_forward.py   |  3 +-
 tests/python/integration/test_reduce.py            |  4 +-
 tests/python/integration/test_tuning.py            |  7 +--
 tests/python/relay/test_vm.py                      |  5 +-
 .../python/unittest/test_auto_scheduler_measure.py |  6 +-
 .../unittest/test_auto_scheduler_search_task.py    | 16 ++---
 tests/python/unittest/test_crt.py                  |  3 +-
 .../python/unittest/test_runtime_heterogeneous.py  |  6 +-
 tests/python/unittest/test_runtime_rpc.py          |  2 +-
 tests/python/unittest/test_target_codegen_blob.py  |  2 +-
 .../python/unittest/test_target_codegen_device.py  |  2 +-
 .../python/unittest/test_target_codegen_hexagon.py |  6 +-
 tests/python/unittest/test_target_target.py        | 69 ++++++++++++++++++----
 ...test_tir_transform_instrument_bound_checkers.py | 13 ++--
 tutorials/auto_scheduler/tune_network_mali.py      | 11 ++--
 tutorials/autotvm/tune_relay_mobile_gpu.py         | 10 +---
 tutorials/frontend/deploy_model_on_android.py      | 14 ++---
 tutorials/frontend/from_darknet.py                 |  5 +-
 tutorials/frontend/from_pytorch.py                 |  5 +-
 tutorials/frontend/from_tensorflow.py              |  8 +--
 tutorials/get_started/cross_compilation_and_rpc.py |  4 +-
 tutorials/get_started/tensor_expr_get_started.py   | 27 ++++-----
 53 files changed, 463 insertions(+), 210 deletions(-)