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
discard aaf44e4910 [ci][docker] Nightly Docker image update
add 4d84620d07 [TIR] Well-Formed Verifier (#12166)
add 6eb3a1fc36 [BYOC-DNNL] suppport more dnnl ops (#11823)
add 75ec1cffa9 [TVMC] Workspace Pools Parameters (#11427)
add 19e5ec6576 [hexagon][testing] sequential input tensors (#12168)
add 21d54f9880 [PyTorch] Add aten::numpy_T (#12179)
add 4a74d37ef7 [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 (aaf44e4910)
\
N -- N -- N refs/heads/nightly-docker-update (4a74d37ef7)
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/ir/memory_pools.h | 1 +
include/tvm/tir/analysis.h | 11 +-
python/tvm/driver/tvmc/compiler.py | 30 +-
python/tvm/driver/tvmc/workspace_pools.py | 237 ++++++++++++
python/tvm/ir/memory_pools.py | 2 +-
python/tvm/relay/frontend/pytorch.py | 14 +-
python/tvm/relay/op/contrib/dnnl.py | 14 +
python/tvm/tir/analysis/analysis.py | 20 +
src/relay/backend/contrib/cmsisnn/target.cc | 4 +-
src/runtime/contrib/dnnl/dnnl_json_runtime.cc | 36 +-
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 | 33 +-
tests/python/driver/tvmc/test_command_line.py | 22 ++
tests/python/driver/tvmc/test_compiler.py | 22 ++
tests/python/driver/tvmc/test_workspace_pools.py | 404 +++++++++++++++++++++
tests/python/frontend/pytorch/test_forward.py | 12 +
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 +-
24 files changed, 1083 insertions(+), 59 deletions(-)
create mode 100644 python/tvm/driver/tvmc/workspace_pools.py
create mode 100644 src/tir/analysis/verify_well_formed.cc
create mode 100644 tests/python/driver/tvmc/test_workspace_pools.py
create mode 100644
tests/python/unittest/test_tir_analysis_verify_well_formed.py