You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by gi...@apache.org on 2023/01/24 05:02:39 UTC

[tvm] branch nightly updated (cc7def073b -> b738d31b87)

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

github-bot pushed a change to branch nightly
in repository https://gitbox.apache.org/repos/asf/tvm.git


    from cc7def073b [Bugfix][TIR] Fix version conflict with typing for different Python versions (3.8.0-3.10.0) (#13820)
     add b77d24c384 [microTVM][CRT]Separate CRT template project from standalone CRT build (#13812)
     add 35a66f69e1 [MetaSchedule] add fp16-16-32 TensorCores rule to default settings (#13822)
     add 1bc6dd40c2 [TVMScript] Add ObjectPath to LiteralDoc (#13821)
     add e79fac6300 [Metaschedule] get_top_k should not return not built records (#13824)
     add b738d31b87 [Hexagon][Metaschedule] Add timeout_sec arg to get_hexagon_local_builder (#13828)

No new revisions were added by this update.

Summary of changes:
 CMakeLists.txt                                     |  2 +
 ci/jenkins/generated/arm_jenkinsfile.groovy        |  4 +-
 ci/jenkins/generated/cpu_jenkinsfile.groovy        |  4 +-
 ci/jenkins/generated/i386_jenkinsfile.groovy       |  4 +-
 ci/jenkins/generated/minimal_jenkinsfile.groovy    |  4 +-
 ci/jenkins/templates/arm_jenkinsfile.groovy.j2     |  2 +-
 ci/jenkins/templates/cpu_jenkinsfile.groovy.j2     |  2 +-
 ci/jenkins/templates/i386_jenkinsfile.groovy.j2    |  2 +-
 ci/jenkins/templates/minimal_jenkinsfile.groovy.j2 |  2 +-
 ci/scripts/jenkins/s3.py                           |  3 ++
 cmake/modules/{Arduino.cmake => CRT.cmake}         | 31 +++++------
 cmake/modules/StandaloneCrt.cmake                  |  4 --
 include/tvm/script/printer/doc.h                   | 34 ++++++++----
 include/tvm/script/printer/ir_docsifier.h          |  9 ++--
 python/tvm/contrib/hexagon/meta_schedule.py        | 11 ++--
 python/tvm/micro/build.py                          |  3 --
 python/tvm/script/printer/doc.py                   | 32 ++++++++---
 python/tvm/testing/aot.py                          |  4 +-
 src/meta_schedule/database/json_database.cc        |  9 +++-
 src/meta_schedule/database/memory_database.cc      | 44 +++++++--------
 src/meta_schedule/schedule_rule/schedule_rule.cc   | 17 ++++++
 src/runtime/crt/host/microtvm_api_server.py        |  5 +-
 src/script/printer/doc.cc                          | 26 ++++-----
 src/script/printer/ir/ir.cc                        | 18 +++----
 src/script/printer/ir/misc.cc                      |  2 +-
 src/script/printer/legacy_repr.cc                  |  1 -
 src/script/printer/tir/block.cc                    | 18 ++++---
 src/script/printer/tir/buffer.cc                   | 15 +++---
 src/script/printer/tir/expr.cc                     | 44 +++++++--------
 src/script/printer/tir/for_loop.cc                 | 21 ++++----
 src/script/printer/tir/ir.cc                       | 28 +++++-----
 src/script/printer/tir/stmt.cc                     | 63 ++++++++++++----------
 src/tir/analysis/control_flow_graph.cc             |  1 -
 tests/python/unittest/test_crt.py                  |  2 +-
 tests/python/unittest/test_link_params.py          |  2 +-
 .../python/unittest/test_meta_schedule_database.py | 16 ++++--
 36 files changed, 278 insertions(+), 211 deletions(-)
 copy cmake/modules/{Arduino.cmake => CRT.cmake} (62%)