You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ar...@apache.org on 2022/06/30 17:27:27 UTC

[tvm] branch main updated (265030eea4 -> 985680ee1a)

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

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


    from 265030eea4 [ETHOSN] Use partition_for_ function when running tests (#11945)
     add 985680ee1a [BYOC] Handle constants in IRModule-at-a-time external codegen (#11770)

No new revisions were added by this update.

Summary of changes:
 cmake/modules/contrib/CODEGENC.cmake               |   2 +-
 include/tvm/ir/module.h                            |  30 ++-
 include/tvm/tir/stmt.h                             |   6 +-
 python/tvm/relay/backend/interpreter.py            |   2 +-
 python/tvm/relay/backend/vm.py                     |   5 +-
 python/tvm/relay/build_module.py                   |  41 +--
 python/tvm/relay/transform/transform.py            |   4 +-
 python/tvm/tir/stmt.py                             |   2 +-
 src/relay/backend/aot_executor_codegen.cc          |  39 ++-
 src/relay/backend/build_module.cc                  |  12 +-
 .../backend/contrib/arm_compute_lib/codegen.cc     |   9 +-
 src/relay/backend/contrib/bnns/codegen.cc          |   8 +-
 src/relay/backend/contrib/codegen_c/codegen.cc     | 281 ++++++++++++++-------
 src/relay/backend/contrib/codegen_c/codegen_c.h    |  13 +-
 .../{example_target_hooks => codegen_c}/target.cc  |  28 +-
 .../backend/contrib/codegen_json/codegen_json.h    |  46 +++-
 src/relay/backend/contrib/cutlass/codegen.cc       |  34 ++-
 src/relay/backend/contrib/dnnl/codegen.cc          |   8 +-
 .../backend/contrib/example_target_hooks/target.cc |   1 -
 src/relay/backend/contrib/tensorrt/codegen.cc      |   9 +-
 src/relay/backend/contrib/verilator/codegen.cc     |   9 +-
 src/relay/backend/graph_executor_codegen.cc        |  39 +--
 src/relay/backend/te_compiler.cc                   |   4 +-
 src/relay/backend/utils.h                          |   8 +-
 src/relay/backend/vm/compiler.cc                   |  28 +-
 src/relay/transforms/compiler_function_utils.cc    |  34 ++-
 src/relay/transforms/compiler_function_utils.h     |  13 +-
 src/relay/transforms/target_hooks.cc               |   7 +-
 src/target/metadata_module.cc                      |   2 +
 src/tir/transforms/extract_constants.cc            |   6 +-
 tests/python/relay/test_external_codegen.py        |  40 ++-
 .../transform/test_compiler_function_utils.py      |  40 +++
 tests/python/unittest/test_custom_datatypes.py     |   3 +-
 .../test_tir_transform_extract_constants.py        |   5 +-
 34 files changed, 543 insertions(+), 275 deletions(-)
 copy src/relay/backend/contrib/{example_target_hooks => codegen_c}/target.cc (62%)