You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ma...@apache.org on 2021/12/18 01:33:21 UTC

[tvm] branch main updated (e1255c9 -> 89b1676)

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

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


    from e1255c9  [MetaSchedule] Random Feature Extractor (#9760)
     add 89b1676  [Relay] Fix invalid shape function for "copy" operator (#9749)

No new revisions were added by this update.

Summary of changes:
 include/tvm/runtime/debug.h                      |  54 ++++++++++
 python/tvm/relay/op/tensor.py                    |  19 +++-
 src/relay/backend/te_compiler.cc                 |   2 +-
 src/relay/backend/te_compiler_cache.cc           |  31 +++---
 src/runtime/debug.cc                             | 128 +++++++++++++++++++++++
 src/runtime/vm/executable.cc                     |  19 +---
 src/runtime/vm/vm.cc                             |  62 ++++++-----
 src/target/compilation_config.cc                 |  50 ++++-----
 tests/python/relay/dyn/test_dynamic_op_level3.py |  66 +++++++++++-
 tests/python/relay/test_vm.py                    |  46 ++++----
 10 files changed, 364 insertions(+), 113 deletions(-)
 create mode 100644 include/tvm/runtime/debug.h
 create mode 100644 src/runtime/debug.cc