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

areusch pushed a change to branch ci-docker-staging
in repository https://gitbox.apache.org/repos/asf/tvm.git.


    omit 8b4b4e9  Modify Jenkinsfile to prevent builds from triggering on 
branch indexing
     add 1115d3d  [ci][2/2] Shard `frontend: GPU` job into 2 jobs (#10414)
     add a8ec423  [TensorIR] Update VerifyGPU (#10405)
     add 6962ffa  [Bugfix][Arith] Fix TryFuseIter (#10427)
     add 8e10713  Lily -> Committer (#10417)
     add 122be3f  Add group_conv2d_transpose_nchw to CUDA backend (#10423)
     add 1df1580  [MISC] Add miss Type2Str and remove compile warnings (#10430)
     add 8f6fa8f  [cleanup] Log compile errors for AOT tests (#10214)
     add a772de8  [skip ci][CI][Fix] Fixing lint (#10445)
     add 4913453  [CMSIS-NN] enable USMP with CMSIS-NN (#10224)
     add 29f64c6  Fix plint complain for some files. (#10433)
     add 60ffcb5  Fix a Uninitialized Variable Warnings. (#10436)
     add fdbb88f  [Frontend][TFLite] Added broadcasting to prelu alpha. (#10435)
     add a5cb76a  [Relay] Fix shape func for strided slice (#10418)
     add 74a08b9  [skip-ci][COMMUNITY] leandron to PMC (#10448)
     add 5e33ffc  [Hexagon] Allow execution on target or simulator from 
HexagonLauncher (#10454)
     add 0c836b7  [microNPU][5] Convert Proposals to te.Schedules (#10062)
     add 8f46d12  hot fix (#10464)
     add 70ad1d5  [ci] Add workflow to cc teams (#10322)
     add db14b7e  just a typo fixed (#10442)
     add d721d32  [runtime] AOTExecutor implementation and c target 
code-generator (#10283)
     add 3001d3d  [Runtime][ThreadPool] Handle the default value of affinity 
mode. (#10434)
     add 5691566  [Relay] Fix output dtype for conv2d wgrad when the original 
one is void (#10459)
     add 45d3830  [skip ci][ci] Remove -i from lint scripts (#10469)
     add 4d586e2  Modify Jenkinsfile to prevent builds from triggering on 
branch indexing (#10432)
     add 2ea6e55  [skip ci][ci] Skip actions on forks (#10468)
     add 2b46855  [Hexagon] Enable running CI tests via simulator

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   (8b4b4e9)
            \
             N -- N -- N   refs/heads/ci-docker-staging (2b46855)

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:
 .github/workflows/cc_bot.yml                       |   1 +
 .github/workflows/ping_reviewers.yml               |   1 +
 .github/workflows/{cc_bot.yml => tag_teams.yml}    |  18 +-
 .../workflows/update_last_successful_branch.yml    |   1 +
 CMakeLists.txt                                     |   8 +
 CONTRIBUTORS.md                                    |   5 +-
 Jenkinsfile                                        |  35 +-
 apps/microtvm/reference-vm/base-box-tool.py        |   7 +-
 include/tvm/relay/expr_functor.h                   |   4 +
 include/tvm/relay/runtime.h                        |   6 +
 include/tvm/runtime/container/shape_tuple.h        |   4 +-
 include/tvm/runtime/data_type.h                    |   2 +-
 include/tvm/runtime/metadata.h                     |  13 +-
 include/tvm/runtime/module.h                       |   2 +
 include/tvm/runtime/packed_func.h                  |   4 +
 python/tvm/autotvm/tuner/tuner.py                  |   2 +-
 python/tvm/contrib/ethosu/cascader/__init__.py     |   1 +
 python/tvm/contrib/ethosu/cascader/scheduler.py    | 236 +++++++++
 python/tvm/contrib/graph_executor.py               |   2 +-
 python/tvm/contrib/hexagon/build.py                | 541 ++++++++++++++-------
 python/tvm/contrib/hexagon/session.py              |   9 +-
 python/tvm/micro/model_library_format.py           |   9 +
 python/tvm/relay/backend/executor_factory.py       |  10 +
 python/tvm/relay/build_module.py                   |  82 +++-
 python/tvm/relay/frontend/tflite.py                |   8 +-
 python/tvm/relay/op/_tensor_grad.py                |   9 +-
 python/tvm/relay/op/_transform.py                  |   2 +-
 python/tvm/relay/op/strategy/cuda.py               |   4 +-
 python/tvm/runtime/__init__.py                     |   2 +
 .../common.py => runtime/executor/__init__.py}     |  18 +-
 python/tvm/runtime/executor/aot_executor.py        | 182 +++++++
 python/tvm/tir/transform/transform.py              |   2 +-
 python/tvm/topi/cuda/conv2d_transpose.py           |  22 +-
 src/arith/iter_affine_map.cc                       |   7 +-
 src/meta_schedule/postproc/verify_gpu_code.cc      |  66 +++
 src/printer/doc.cc                                 |   2 +-
 src/relay/backend/aot_executor_codegen.cc          | 107 +++-
 src/relay/backend/contrib/cmsisnn/relay_to_tir.cc  | 165 ++++---
 .../backend/contrib/cmsisnn/tir_to_runtime.cc      |   9 +-
 src/relay/backend/graph_executor_codegen.cc        |  24 +-
 src/relay/backend/runtime.cc                       |   4 +-
 src/relay/backend/utils.cc                         |  16 +-
 src/relay/backend/utils.h                          |  22 +-
 src/relay/op/nn/convolution.cc                     |   5 +-
 src/runtime/aot_executor/aot_executor.cc           | 197 ++++++++
 src/runtime/aot_executor/aot_executor.h            | 147 ++++++
 src/runtime/aot_executor/aot_executor_factory.cc   | 132 +++++
 .../aot_executor_factory.h}                        |  60 +--
 .../{metadata_module.cc => const_loader_module.cc} |  89 ++--
 .../sdaccel_module.h => const_loader_module.h}     |  34 +-
 src/runtime/meta_data.h                            |  13 +-
 src/runtime/metadata.cc                            |  71 ++-
 src/runtime/thread_storage_scope.h                 |   3 +-
 src/runtime/threading_backend.cc                   |   8 +-
 src/target/build_common.h                          |   2 +-
 src/target/metadata.h                              |  29 +-
 src/target/metadata_module.cc                      | 191 ++++++--
 src/target/source/codegen_c_host.cc                |  18 +
 src/target/source/codegen_c_host.h                 |   1 +
 src/target/source/codegen_source_base.h            |  25 +
 src/target/source/source_module.cc                 | 279 +++++++++++
 src/target/source/source_module.h                  |  10 +-
 src/tir/transforms/legalize_packed_calls.cc        |   6 +
 tests/cpp/aot_metadata_test.cc                     |  46 +-
 tests/lint/python_format.sh                        |   4 +-
 .../python/contrib/test_cmsisnn/test_binary_ops.py |   5 +-
 tests/python/contrib/test_cmsisnn/test_conv2d.py   |   7 +-
 .../contrib/test_cmsisnn/test_fully_connected.py   |   3 +-
 tests/python/contrib/test_cmsisnn/test_networks.py |   5 +-
 tests/python/contrib/test_cmsisnn/test_pooling.py  |   3 +-
 tests/python/contrib/test_cmsisnn/test_softmax.py  |   3 +-
 ..._ethosu_inline_matcher.py => test_scheduler.py} |  50 +-
 .../contrib/test_hexagon/test_cache_read_write.py  |  21 +-
 tests/python/contrib/test_hexagon/test_launcher.py | 105 ++--
 tests/python/frontend/pytorch/test_forward.py      |   5 +-
 tests/python/frontend/tflite/test_forward.py       |  35 +-
 tests/python/integration/test_arm_mprofile_dsp.py  |   1 +
 tests/python/relay/aot/aot_test_utils.py           |  59 ++-
 tests/python/relay/aot/test_c_device_api.py        |  29 +-
 tests/python/relay/aot/test_cpp_aot.py             | 197 ++++++++
 tests/python/relay/aot/test_crt_aot.py             |  10 +-
 tests/python/relay/test_op_grad_level2.py          |  29 ++
 tests/python/relay/test_op_level4.py               |  30 +-
 .../python/test_topi_group_conv2d_transpose.py     |  69 +--
 .../unittest/test_aot_legalize_packed_call.py      |   9 +
 .../python/unittest/test_arith_iter_affine_map.py  |   6 +
 .../python/unittest/test_arith_rewrite_simplify.py |   2 +-
 tests/python/unittest/test_ci.py                   | 236 +++++++++
 .../test_meta_schedule_postproc_verify_gpu_code.py | 189 +++++++
 .../unittest/test_tir_schedule_split_fuse.py       |   2 +-
 tests/scripts/git_utils.py                         |  29 +-
 tests/scripts/github_tag_teams.py                  | 275 +++++++++++
 tests/scripts/task_python_hexagon.sh               |   2 +-
 ...n_tests.sh => task_python_hexagon_simulator.sh} |  21 +-
 94 files changed, 3758 insertions(+), 723 deletions(-)
 copy .github/workflows/{cc_bot.yml => tag_teams.yml} (74%)
 create mode 100644 python/tvm/contrib/ethosu/cascader/scheduler.py
 copy python/tvm/{topi/arm_cpu/mprofile/dsp/micro_kernel/common.py => 
runtime/executor/__init__.py} (69%)
 create mode 100644 python/tvm/runtime/executor/aot_executor.py
 create mode 100644 src/runtime/aot_executor/aot_executor.cc
 create mode 100644 src/runtime/aot_executor/aot_executor.h
 create mode 100644 src/runtime/aot_executor/aot_executor_factory.cc
 copy src/runtime/{graph_executor/graph_executor_factory.h => 
aot_executor/aot_executor_factory.h} (59%)
 rename src/runtime/{metadata_module.cc => const_loader_module.cc} (67%)
 copy src/runtime/{opencl/sdaccel/sdaccel_module.h => const_loader_module.h} 
(55%)
 copy tests/python/contrib/test_ethosu/cascader/{test_ethosu_inline_matcher.py 
=> test_scheduler.py} (52%)
 create mode 100644 tests/python/relay/aot/test_cpp_aot.py
 create mode 100755 tests/scripts/github_tag_teams.py
 copy tests/scripts/{task_python_ethosn_tests.sh => 
task_python_hexagon_simulator.sh} (65%)

Reply via email to