You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by zh...@apache.org on 2020/07/21 17:10:27 UTC

[incubator-tvm] branch master updated (d8c9bb1 -> 526b5a5)

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

zhic pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git.


    from d8c9bb1  [BYOC][Contrib] Arm Compute Library integration (#5915)
     add 526b5a5  [Relay][VM] Add ReshapeTensor instruction in the VM to replace the reshape op (#6089)

No new revisions were added by this update.

Summary of changes:
 include/tvm/relay/attrs/vm.h               | 11 ++++
 include/tvm/runtime/vm.h                   | 14 ++++++
 python/tvm/relay/backend/compile_engine.py |  4 +-
 python/tvm/relay/backend/vm.py             |  4 +-
 python/tvm/relay/build_module.py           |  2 +-
 python/tvm/relay/op/vm/vm.py               | 17 +++++++
 python/tvm/relay/transform/memory_alloc.py | 80 +++++++++++++++++++++++-------
 python/tvm/relay/ty.py                     |  4 +-
 src/relay/analysis/util.cc                 |  2 +-
 src/relay/backend/vm/compiler.cc           | 10 ++++
 src/relay/op/tensor/transform.cc           |  2 +
 src/relay/op/vm/vm.cc                      | 37 ++++++++++++++
 src/runtime/vm/executable.cc               | 10 ++++
 src/runtime/vm/vm.cc                       | 54 +++++++++++++++++---
 tests/python/relay/test_vm.py              | 51 +++++++++++++++++++
 15 files changed, 270 insertions(+), 32 deletions(-)