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 20:35:24 UTC

[tvm] branch nightly-docker-update updated (531b5fdef0 -> 8f90e5a289)

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

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


    omit 531b5fdef0 [ci][docker] Nightly Docker image update
     add 993f72877d [PyTorch] [Relay] Add aten::pad (#11922)
     add a063404812  [DNNL] Add bfloat16 type support for dnnl conv2d kernel (#11902)
     add 160b1ba4bd [Hexagon] Skip test_avg_pool2d_slice because of segfault on hardware (#11929)
     add d4be49aec6 [TIR][BugFix] Do not bind non-index type value of lets in CompactBufferAllocation (#11828)
     add 39ce4d985e [OpenCL] Change winograd priority and extend split (#11908)
     add ce77d20c46 [ci] Allow skip tag anywhere in PR title (#11714)
     add c87ebefcfd Concatenation corner case fix. (#11907)
     add 08723d0ce6 [usmp] U3 use case (#11015)
     add bd49b0846a [USMP] Improve algorithm extensibility (#11880)
     add 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)
     add 0e23122846 [MetaSchedule] Enable Adapative Training For XGBoost Cost Model (#11892)
     add 6c433d2309 [Relay][VirtualDevice] Expose WithFields to Python to do proper copy in ExprMutator (#11882)
     add 8f90e5a289 [ci][docker] Nightly Docker image update

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   (531b5fdef0)
            \
             N -- N -- N   refs/heads/nightly-docker-update (8f90e5a289)

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                                     |   1 -
 Jenkinsfile                                        |  16 +-
 include/tvm/ir/memory_pools.h                      |  24 +++
 include/tvm/runtime/profiling.h                    |  27 ++-
 include/tvm/tir/usmp/utils.h                       |   5 +
 jenkins/Jenkinsfile.j2                             |  16 +-
 jenkins/requirements.txt                           |   3 +-
 python/tvm/auto_scheduler/search_task.py           |   4 +-
 python/tvm/auto_scheduler/testing/tune_onnx.py     |  14 +-
 python/tvm/auto_scheduler/testing/tune_relay.py    |  16 +-
 python/tvm/auto_scheduler/testing/tune_te.py       |  12 +-
 python/tvm/contrib/debugger/debug_executor.py      | 142 +++++++++++++--
 python/tvm/contrib/debugger/debug_result.py        |  42 +++--
 python/tvm/contrib/dnnl.py                         |   5 +
 python/tvm/contrib/graph_executor.py               |  19 +-
 python/tvm/meta_schedule/cost_model/xgb_model.py   |  18 ++
 python/tvm/meta_schedule/default_config.py         |   6 +-
 python/tvm/meta_schedule/testing/tune_onnx.py      |  12 +-
 python/tvm/meta_schedule/testing/tune_relay.py     |  14 +-
 python/tvm/meta_schedule/testing/tune_te.py        |  10 +-
 python/tvm/meta_schedule/tune.py                   |   5 +-
 .../relay/backend/contrib/ethosu/tir/compiler.py   |   8 +-
 python/tvm/relay/expr_functor.py                   |   8 +-
 python/tvm/relay/frontend/pytorch.py               | 135 ++++++++------
 python/tvm/relay/frontend/qnn_torch.py             |  29 +++-
 python/tvm/relay/function.py                       |  21 +++
 python/tvm/relay/op/strategy/adreno.py             |  16 +-
 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 +-
 python/tvm/testing/aot.py                          |  25 ++-
 python/tvm/topi/adreno/conv2d_winograd_common.py   |   4 +-
 python/tvm/topi/x86/concat.py                      |   1 -
 src/relay/ir/function.cc                           |   8 +
 src/relay/qnn/op/unary_elementwise_op.cc           |   4 +
 src/relay/transforms/pattern_utils.h               |  10 ++
 src/runtime/contrib/dnnl/dnnl.cc                   |  51 ++++--
 src/runtime/crt/common/crt_runtime_api.c           |  61 +++++--
 src/runtime/crt/microtvm_rpc_server/rpc_server.cc  |   2 -
 .../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 ++--
 src/target/source/codegen_params.cc                |  41 +++--
 src/target/source/codegen_params.h                 |   4 +-
 src/target/source/interface_c.cc                   |  52 +++++-
 src/target/source/source_module.cc                 |   8 +-
 src/tir/transforms/compact_buffer_region.cc        |  20 ++-
 src/tir/usmp/unified_static_memory_planner.cc      |  28 ++-
 tests/cpp/target/source/interface_c_test.cc        |  43 +++++
 tests/python/ci/test_ci.py                         | 124 +++++++------
 .../test_ethosu/cascader/test_memory_reduction.py  |  10 +-
 tests/python/contrib/test_ethosu/test_networks.py  |  49 ++++++
 .../test_hexagon/topi/test_avg_pool2d_slice.py     |   5 +-
 tests/python/frontend/pytorch/qnn_test.py          |  17 +-
 tests/python/relay/aot/test_crt_aot_usmp.py        | 193 ++++++++++++++++++++-
 tests/python/relay/test_op_level1.py               |  14 ++
 tests/python/relay/test_op_level2.py               | 140 +++++++++------
 .../python/relay/test_op_qnn_unary_elementwise.py  |   9 +
 tests/python/unittest/test_crt.py                  |  87 +++++++++-
 tests/python/unittest/test_runtime_graph_debug.py  |  20 +++
 .../test_tir_transform_compact_buffer_region.py    |  15 ++
 tests/python/unittest/test_tir_usmp_algo.py        |  45 +++++
 tests/scripts/cmd_utils.py                         |   8 +
 tests/scripts/git_skip_ci.py                       |  13 +-
 tests/scripts/github_tag_teams.py                  |   7 +-
 tests/scripts/open_docker_update_pr.py             |  24 ++-
 web/emcc/tvmjs_support.cc                          |  21 ++-
 web/src/runtime.ts                                 |  10 +-
 71 files changed, 1633 insertions(+), 469 deletions(-)