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 2022/06/28 19:21:45 UTC

[tvm] branch last-successful updated (b733aa3ec8 -> 97b3076c35)

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

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


    from b733aa3ec8 [microNPU] enable striping for network tests. (#11883)
     add 6c8a353099 Add cooldown interval logic for the profiling functional (#11465)
     add 688b0825e2 [ci][docker] Regenerate Jenkinsfile on each run (#11886)
     add 97b3076c35 [QNN] Add hardswish int8 impl using table lookup (#11700)

No new revisions were added by this update.

Summary of changes:
 CMakeLists.txt                                     |   1 -
 include/tvm/runtime/profiling.h                    |  27 +++-
 jenkins/requirements.txt                           |   3 +-
 python/tvm/auto_scheduler/testing/tune_relay.py    |   2 +-
 python/tvm/contrib/debugger/debug_executor.py      | 142 +++++++++++++++---
 python/tvm/contrib/debugger/debug_result.py        |  42 ++++--
 python/tvm/contrib/graph_executor.py               |  19 ++-
 python/tvm/meta_schedule/testing/tune_relay.py     |   2 +-
 python/tvm/relay/frontend/qnn_torch.py             |  29 ++--
 python/tvm/relay/qnn/op/legalizations.py           |   7 +
 python/tvm/relay/qnn/op/qnn.py                     |  35 +++++
 .../transform/fake_quantization_to_integer.py      |   1 +
 python/tvm/runtime/module.py                       |  22 ++-
 python/tvm/runtime/vm.py                           |  19 ++-
 src/relay/qnn/op/unary_elementwise_op.cc           |   4 +
 src/relay/transforms/pattern_utils.h               |  10 ++
 src/runtime/crt/common/crt_runtime_api.c           |  61 ++++++--
 .../graph_executor/debug/graph_executor_debug.cc   | 164 ++++++++++++---------
 src/runtime/opencl/opencl_device_api.cc            |   2 -
 src/runtime/profiling.cc                           |  19 ++-
 src/runtime/rpc/rpc_module.cc                      |  32 ++--
 tests/python/ci/test_ci.py                         |  17 ++-
 tests/python/frontend/pytorch/qnn_test.py          |  17 +--
 .../python/relay/test_op_qnn_unary_elementwise.py  |   9 ++
 tests/python/unittest/test_runtime_graph_debug.py  |  20 +++
 tests/scripts/open_docker_update_pr.py             |  24 ++-
 web/emcc/tvmjs_support.cc                          |  21 ++-
 web/src/runtime.ts                                 |  10 +-
 28 files changed, 583 insertions(+), 178 deletions(-)