You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by an...@apache.org on 2022/06/01 18:51:41 UTC

[tvm] branch main updated (62e449cb85 -> 89c02358a1)

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

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


    from 62e449cb85 [microTVM][ARM]Add tests for arm schedules (#11472)
     add 89c02358a1 [Relay] Plumb external codegen target via Target.current() (#11432)

No new revisions were added by this update.

Summary of changes:
 include/tvm/relay/transform.h                      |  43 ++++-
 include/tvm/target/target_kind.h                   |  10 ++
 src/relay/backend/aot_executor_codegen.cc          |   2 +-
 src/relay/backend/contrib/cmsisnn/target.cc        |   2 +-
 src/relay/backend/contrib/codegen_c/codegen.cc     |  12 ++
 src/relay/backend/contrib/ethosu/codegen.cc        |   2 +-
 .../contrib/example_target_hooks/relay_to_tir.cc   | 200 +++++++++++++++------
 .../backend/contrib/example_target_hooks/target.cc |   5 +-
 src/relay/backend/graph_executor_codegen.cc        |   2 +-
 src/relay/backend/interpreter.cc                   |   8 +-
 src/relay/backend/te_compiler.cc                   |  57 +++---
 src/relay/backend/te_compiler.h                    |  11 +-
 src/relay/backend/vm/compiler.cc                   |  34 ++--
 src/relay/backend/vm/compiler.h                    |   4 +-
 src/relay/transforms/dead_code.cc                  |   2 +
 src/relay/transforms/inline.cc                     |   1 +
 src/relay/transforms/target_hooks.cc               | 150 ++++++++++++----
 src/target/target.cc                               |   8 +-
 tests/cpp/target_test.cc                           |   6 +
 tests/python/frontend/onnx/test_forward.py         |   2 +-
 tests/python/relay/dyn/test_dynamic_op_level2.py   |   4 +-
 tests/python/relay/test_external_codegen.py        |  54 ++++++
 tests/python/relay/test_target_hooks.py            |  53 +++++-
 tests/python/relay/utils/external_codegen.py       |   2 +-
 24 files changed, 512 insertions(+), 162 deletions(-)