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

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


 discard a7e9360064 This is PR #12130.
 discard cb6f6409a5 [TFLite][CI] Update TensorFlow dependency to 2.9.1
     add a07e18ea4e [HEXAGON] QCOM hexagon library (qhl) (#12149)
     add 9863cf0d5f [hexagon][testing] Better pytest ID strings (#12154)
     add ecd3c884de [Runtime][PipelineExecutor]  Tutorial of using pipeline 
executor. (#11557)
     add 76155c2f3c [QNN] Support different qnn params between in/out tensor in 
leaky_relu (#12116)
     add 832c7674fe [hexagon][testing] nonrandom tests (#12164)
     add dc1324635a tanh float16 (#12165)
     add 4d84620d07 [TIR] Well-Formed Verifier (#12166)
     add 6eb3a1fc36 [BYOC-DNNL] suppport more dnnl ops (#11823)
     new 15cf56e7df [TFLite][CI] Update TensorFlow dependency to 2.9.1
     new 8ae520b1be This is PR #12130.

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   (a7e9360064)
            \
             N -- N -- N   refs/heads/ci-docker-staging (8ae520b1be)

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.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 apps/hexagon_api/CMakeLists.txt                    |   1 +
 cmake/config.cmake                                 |   3 +
 cmake/modules/Hexagon.cmake                        |  28 ++-
 .../work_with_relay/using_pipeline_executor.py     | 248 +++++++++++++++++++++
 include/tvm/tir/analysis.h                         |  11 +-
 python/tvm/contrib/pipeline_executor.py            |  26 ++-
 python/tvm/contrib/pipeline_executor_build.py      |  14 +-
 python/tvm/relay/frontend/qnn_torch.py             |   6 +-
 python/tvm/relay/op/contrib/dnnl.py                |  14 ++
 python/tvm/relay/qnn/op/qnn.py                     |  21 +-
 .../transform/fake_quantization_to_integer.py      |   9 +-
 python/tvm/tir/analysis/analysis.py                |  20 ++
 python/tvm/topi/hexagon/slice_ops/__init__.py      |   1 +
 python/tvm/topi/hexagon/slice_ops/tanh.py          |  56 +++++
 src/relay/qnn/op/leaky_relu.cc                     |  85 ++++---
 src/runtime/contrib/dnnl/dnnl_json_runtime.cc      |  36 ++-
 src/runtime/hexagon/qhl/qhl_wrapper.cc             |  89 ++++++++
 src/target/llvm/codegen_hexagon.cc                 |  59 +++++
 src/target/llvm/intrin_rule_hexagon.cc             | 171 ++++++++++++--
 src/tir/analysis/verify_well_formed.cc             | 137 ++++++++++++
 src/tir/schedule/state.cc                          |   1 +
 tests/python/contrib/test_dnnl.py                  |  25 +++
 tests/python/contrib/test_hexagon/pytest_util.py   | 159 +++++++++++++
 .../test_hexagon/topi/test_avg_pool2d_slice.py     |  71 ++++--
 .../{test_argmax_slice.py => test_tanh_slice.py}   |  76 +++----
 tests/python/relay/test_op_qnn_leaky_relu.py       |  30 ++-
 tests/python/relay/test_pass_partition_graph.py    |   4 +-
 .../test_tir_analysis_verify_well_formed.py        |  57 +++++
 .../test_tir_schedule_set_axis_separator.py        |   9 +-
 .../python/unittest/test_tir_schedule_set_scope.py |  15 +-
 tests/scripts/task_config_build_gpu.sh             |   2 +
 tests/scripts/task_config_build_hexagon.sh         |   1 +
 32 files changed, 1324 insertions(+), 161 deletions(-)
 create mode 100755 gallery/how_to/work_with_relay/using_pipeline_executor.py
 create mode 100644 python/tvm/topi/hexagon/slice_ops/tanh.py
 create mode 100644 src/runtime/hexagon/qhl/qhl_wrapper.cc
 create mode 100644 src/tir/analysis/verify_well_formed.cc
 create mode 100644 tests/python/contrib/test_hexagon/pytest_util.py
 copy tests/python/contrib/test_hexagon/topi/{test_argmax_slice.py => 
test_tanh_slice.py} (56%)
 create mode 100644 
tests/python/unittest/test_tir_analysis_verify_well_formed.py

Reply via email to