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/30 00:00:25 UTC

[tvm] branch nightly-docker-update updated (d190d162de -> b8571954aa)

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 d190d162de [ci][docker] Nightly Docker image update
     add ae33f408c4 [MetaSchedule] Refactor MultiLevelTiling state to allow subclassing (#11931)
     add 54f8176b47 [CI] Docs bot now edits previous comments (#11909)
     add 9ea681f618 [MetaSchedule] Improve Error Message in JSON Database (#11940)
     add c9d0d253f0 [microNPU] increase workspace sizes for network tests (#11943)
     add a7b89071c7 [PyTorch][Relay] Add aten::cross_entropy_loss (#11935)
     add 84c66da617 export VirtualMachine for Windows (#11947)
     add b552bcf1d0 [testing][hexagon] Better subproc errors (#11853)
     add a84c54efe5 [TOPI][Hexagon] Implement Argmax Slice Op (#11847)
     add da2ad2d44b [RPC] Add Data & Time For RPC Tracker / Server Logging (#11950)
     add 7ef6811000 [Relay] Handle memory scope during lowering from relay level (#11874)
     add 41c94b27ef [Relay][Pytorch] Add aten::new_ones, aten::new_full, aten::fill_, aten::pad, aten::reshape_as and atem::empty_like (#11896)
     add b8571954aa [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   (d190d162de)
            \
             N -- N -- N   refs/heads/nightly-docker-update (b8571954aa)

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:
 Jenkinsfile                                        |  16 +--
 ci/jenkins/Jenkinsfile.j2                          |  16 +--
 include/tvm/driver/driver_api.h                    |   1 -
 include/tvm/relay/expr.h                           |   3 +-
 include/tvm/runtime/vm/vm.h                        |   2 +-
 include/tvm/tir/buffer.h                           |  17 +++
 python/tvm/contrib/hexagon/build.py                |  33 ++++--
 python/tvm/relay/frontend/pytorch.py               |  84 +++++++++++++++
 python/tvm/rpc/server.py                           |   9 ++
 python/tvm/rpc/tracker.py                          |   9 ++
 python/tvm/topi/hexagon/slice_ops/__init__.py      |   1 +
 python/tvm/topi/hexagon/slice_ops/argmax.py        |  46 ++++++++
 python/tvm/topi/hexagon/utils.py                   |   7 ++
 src/driver/driver_api.cc                           |  30 +-----
 src/meta_schedule/database/json_database.cc        |  13 ++-
 .../schedule_rule/multi_level_tiling.cc            |  70 +++++++------
 .../schedule_rule/multi_level_tiling.h             |  25 ++++-
 .../multi_level_tiling_with_intrin.cc              |   2 +-
 src/relay/backend/te_compiler.cc                   |  30 +++++-
 src/relay/backend/te_compiler_cache.cc             |   3 +-
 src/relay/backend/te_compiler_cache.h              |   7 +-
 src/tir/ir/buffer.cc                               |  27 +++++
 tests/python/ci/test_ci.py                         |   2 +-
 tests/python/contrib/test_ethosu/test_networks.py  |  12 ++-
 .../python/contrib/test_hexagon/infrastructure.py  |   8 ++
 .../contrib/test_hexagon/topi/test_argmax_slice.py | 116 +++++++++++++++++++++
 tests/python/frontend/pytorch/test_forward.py      |  93 +++++++++++++++++
 tests/scripts/git_utils.py                         |   3 +
 tests/scripts/github_docs_comment.py               |  33 +++++-
 29 files changed, 610 insertions(+), 108 deletions(-)
 create mode 100644 python/tvm/topi/hexagon/slice_ops/argmax.py
 create mode 100644 tests/python/contrib/test_hexagon/topi/test_argmax_slice.py