You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by mo...@apache.org on 2022/12/07 11:49:29 UTC

[tvm] branch main updated (5a58c581f5 -> eda84e7804)

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

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


    from 5a58c581f5 Added macro generation in MLF export (#12789)
     add eda84e7804 [CodegenC] Explicit forward function declarations (#13522)

No new revisions were added by this update.

Summary of changes:
 python/tvm/relay/testing/tflite.py                 |  10 +
 .../backend/contrib/cmsisnn/tir_to_runtime.cc      |   7 +-
 .../contrib/example_target_hooks/tir_to_runtime.cc |   3 +-
 src/relay/backend/contrib/uma/tir_to_runtime.cc    |   7 +-
 src/target/source/codegen_c.cc                     |   5 +-
 src/target/source/codegen_c.h                      |  13 +-
 src/target/source/codegen_c_host.cc                |  57 ++++-
 src/target/source/codegen_c_host.h                 |  11 +-
 src/target/source/codegen_cuda.cc                  |   2 +-
 src/target/source/codegen_cuda.h                   |   2 +-
 src/target/source/codegen_opencl.cc                |   2 +-
 src/target/source/codegen_opencl.h                 |   2 +-
 src/target/source/codegen_source_base.h            |   2 +
 src/target/source/codegen_vhls.cc                  |   2 +-
 src/target/source/codegen_vhls.h                   |   2 +-
 tests/python/relay/aot/corstone300.mk              |   2 +-
 .../relay/aot/test_crt_forward_declarations.py     | 275 +++++++++++++++++++++
 17 files changed, 372 insertions(+), 32 deletions(-)
 create mode 100644 tests/python/relay/aot/test_crt_forward_declarations.py