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

areusch pushed a change to branch add-riscv-image
in repository https://gitbox.apache.org/repos/asf/tvm.git


 discard 41fd385fe6 Add ci_riscv image, update all to 20220810-060142-fae79bbc3.
     add 1a3d36a28d [ci] Test pytest-forked boxing (#12312)
     add f5f5a75ae9 [TVMScript] Text underlining in DocPrinter based on Doc's 
source_paths (#12344)
     add ecfd9692a0 Unify name mangling in TVM (#12066)
     add 52152e0be6 Build and test TVM under minimal configuration (#12178)
     add 48354ded38 [Hexagon] Add skip option for RPC server initialization 
(#12368)
     add 7e1444111e [skip ci][ci] Fix Jenkinsfile (#12387)
     add b4567cba67 Add ci_riscv image, update all to 20220810-060142-fae79bbc3.

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (41fd385fe6)
            \
             N -- N -- N   refs/heads/add-riscv-image (b4567cba67)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 CMakeLists.txt                                     |   2 +
 Jenkinsfile                                        | 142 +++++++-
 ci/jenkins/Build.groovy.j2                         |  19 +-
 ci/jenkins/Test.groovy.j2                          |  16 +
 ci/jenkins/generate.py                             |   4 +
 ci/jenkins/macros.j2                               |  23 ++
 cmake/utils/Summary.cmake                          |   7 +
 .../{Dockerfile.ci_i386 => Dockerfile.ci_minimal}  |  39 +--
 ...ibxsmm.sh => ubuntu1804_manual_install_llvm.sh} |  22 +-
 include/tvm/driver/driver_api.h                    |  12 +-
 include/tvm/ir/global_var_supply.h                 | 125 +++++++
 include/tvm/ir/module.h                            |  17 +-
 include/tvm/ir/name_supply.h                       | 123 +++++++
 include/tvm/script/printer/doc_printer.h           |  11 +-
 python/tvm/contrib/hexagon/pytest_plugin.py        |  21 +-
 python/tvm/ir/supply.py                            | 141 ++++++++
 python/tvm/script/printer/doc_printer.py           |  22 +-
 src/auto_scheduler/feature.cc                      |   4 +-
 src/contrib/hybrid/codegen_hybrid.cc               | 106 +++---
 src/contrib/hybrid/codegen_hybrid.h                |  10 +-
 src/driver/driver_api.cc                           |  22 +-
 src/ir/global_var_supply.cc                        | 115 +++++++
 src/ir/module.cc                                   |  23 +-
 src/ir/name_supply.cc                              | 108 ++++++
 src/relay/backend/graph_executor_codegen.cc        |  22 +-
 src/relay/backend/task_extraction.cc               |   4 +-
 src/relay/backend/te_compiler.cc                   |  74 ++---
 src/relay/backend/te_compiler.h                    |   4 +-
 src/relay/backend/te_compiler_cache.cc             |  71 +---
 src/relay/backend/te_compiler_cache.h              |   8 +-
 src/relay/ir/dataflow_matcher.cc                   |  12 +-
 .../transforms/auto_scheduler_layout_rewrite.cc    |   3 +-
 .../transforms/meta_schedule_layout_rewrite.cc     |   3 +-
 src/relay/transforms/partition_graph.cc            |   7 +-
 src/script/printer/base_doc_printer.cc             | 261 ++++++++++++++-
 src/script/printer/base_doc_printer.h              |  64 +++-
 src/script/printer/python_doc_printer.cc           |  16 +-
 src/target/source/codegen_c.cc                     |  54 +--
 src/target/source/codegen_c_host.cc                |  14 +-
 src/target/source/codegen_cuda.cc                  |  14 +-
 src/target/source/codegen_metal.cc                 |   8 +-
 src/target/source/codegen_source_base.cc           |  28 +-
 src/target/source/codegen_source_base.h            |  11 +-
 src/te/operation/create_primfunc.cc                |  23 +-
 src/tir/transforms/split_host_device.cc            |  12 +-
 tests/cpp/build_module_test.cc                     |   7 +-
 tests/cpp/c_codegen_test.cc                        |   6 +-
 tests/cpp/name_supply_test.cc                      | 129 ++++++++
 tests/python/ci/test_ci.py                         |   1 +
 tests/python/relay/backend/test_pass_lower_te.py   |  10 +-
 tests/python/relay/test_name_supply.py             |  72 ++++
 .../unittest/test_meta_schedule_task_scheduler.py  |   1 +
 .../unittest/test_tvmscript_printer_underlining.py | 361 +++++++++++++++++++++
 tests/scripts/ci.py                                |  13 +
 tests/scripts/setup-pytest-env.sh                  |   5 +
 ...ild_cortexm.sh => task_config_build_minimal.sh} |  13 +-
 tests/scripts/task_cpp_unittest.sh                 |  24 +-
 57 files changed, 2060 insertions(+), 429 deletions(-)
 copy docker/{Dockerfile.ci_i386 => Dockerfile.ci_minimal} (75%)
 copy docker/install/{ubuntu_install_libxsmm.sh => 
ubuntu1804_manual_install_llvm.sh} (71%)
 create mode 100644 include/tvm/ir/global_var_supply.h
 create mode 100644 include/tvm/ir/name_supply.h
 create mode 100644 python/tvm/ir/supply.py
 create mode 100644 src/ir/global_var_supply.cc
 create mode 100644 src/ir/name_supply.cc
 create mode 100644 tests/cpp/name_supply_test.cc
 create mode 100644 tests/python/relay/test_name_supply.py
 create mode 100644 tests/python/unittest/test_tvmscript_printer_underlining.py
 copy tests/scripts/{task_config_build_cortexm.sh => 
task_config_build_minimal.sh} (77%)

Reply via email to