You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ju...@apache.org on 2021/11/10 16:42:45 UTC

[tvm] branch v0.8 updated (00b0a81 -> 86781e9)

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

junrushao pushed a change to branch v0.8
in repository https://gitbox.apache.org/repos/asf/tvm.git.


    from 00b0a81  [TIR] Add type hint for TIR  (#9432)
     add 6549f47  [AOT][Tests] Use pre-built libraries in Reference System tests (#9271)
     add 675f348  Better host handling in CompilationConfig & debug printing (#9460)
     add fc4069b  [microNPU] Replace ICHECK with diagnostic context in type inference (#9470)
     add 0fd83eb  [MicroTVM][PyTest] Explicitly skip MicroTVM unittests. (#9335)
     add 74accec  [CMSIS-NN] Assert correct amount of CMSIS-NN artifacts in MLF (#9480)
     add 86781e9  [ETHOSN] Streamline Ethos(TM)-N cross-compile rpc usage (#9477)

No new revisions were added by this update.

Summary of changes:
 cmake/modules/contrib/EthosN.cmake                 |   4 -
 include/tvm/target/target.h                        |   9 +
 src/parser/parser.cc                               |   3 +-
 src/printer/relay_text_printer.cc                  | 173 +++++++++----
 src/printer/text_printer.cc                        |   1 +
 src/printer/text_printer.h                         |  38 ++-
 src/printer/tir_text_printer.cc                    |   3 +
 src/relay/backend/interpreter.cc                   |  78 +++---
 src/relay/op/contrib/ethosu/convolution.cc         |  28 +-
 src/relay/op/contrib/ethosu/depthwise.cc           |  33 ++-
 src/target/compilation_config.cc                   |  76 +++---
 src/target/se_scope.cc                             |  10 +-
 src/target/target.cc                               |  43 ++++
 tests/cpp/target/compilation_config_test.cc        |  38 ++-
 tests/python/conftest.py                           |   3 -
 tests/python/contrib/test_ethosu/infra.py          |  12 +-
 .../contrib/test_ethosu/test_type_inference.py     |  55 ++++
 tests/python/driver/tvmc/test_compiler.py          |   2 +-
 tests/python/relay/aot/corstone300.mk              |  20 +-
 tests/python/relay/test_ir_text_printer.py         |   2 +-
 tests/python/unittest/test_crt.py                  |   4 +-
 tests/python/unittest/test_micro_project_api.py    | 137 ++++++----
 tests/python/unittest/test_micro_transport.py      | 282 ++++++++++++---------
 23 files changed, 707 insertions(+), 347 deletions(-)