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 95eddbd70f [ci][docker] Nightly Docker image update
add 61c9742ea7 [Hexagon] Enable multi input Async DMA; same queue / stage
(#13037)
add 46c16eed83 [microTVM][Windows] Enable building TVM on Windows with
USE_MICRO (#12851)
add f06896f38f [Relay] Fix simplifying consecutive casts when intermediate
type has fewer bits (#13056)
add 29a8f06066 [Arith] Optional rewriting and simplification into AND of
ORs (#12972)
add b389d4dac4 [Torch] Fix torch contrib issues (#13061)
add 293ad787d5 [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 (95eddbd70f)
\
N -- N -- N refs/heads/nightly-docker-update (293ad787d5)
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 | 9 +-
Jenkinsfile | 20 +-
apps/pt_tvmdsoop/tests/test_as_torch.py | 20 +-
ci/jenkins/Jenkinsfile.j2 | 20 +-
cmake/modules/StandaloneCrt.cmake | 30 +-
include/tvm/arith/analyzer.h | 8 +
include/tvm/runtime/crt/logging.h | 4 +
include/tvm/runtime/crt/platform.h | 4 +
include/tvm/runtime/crt/rpc_common/session.h | 13 +
include/tvm/runtime/crt/rpc_common/write_stream.h | 2 +
python/tvm/contrib/torch/as_torch.py | 7 +-
python/tvm/contrib/torch/optimize_torch.py | 4 +-
python/tvm/meta_schedule/__init__.py | 1 +
src/arith/conjunctive_normal_form.cc | 430 +++++++++++++++++++++
.../conjunctive_normal_form.h} | 33 +-
src/arith/rewrite_simplify.cc | 11 +
src/arith/rewrite_simplify.h | 4 +
src/driver/driver_api.cc | 1 +
src/relay/transforms/simplify_expr.cc | 2 +-
src/runtime/micro/micro_session.cc | 9 +
src/tir/transforms/inject_software_pipeline.cc | 51 ++-
src/tir/transforms/lower_async_dma.cc | 7 +-
src/tir/transforms/simplify.cc | 9 +-
.../test_hexagon/test_software_pipeline_async.py | 180 ++++++---
tests/python/relay/aot/test_crt_aot_usmp.py | 2 +-
tests/python/relay/test_pass_simplify_expr.py | 7 +
.../python/unittest/test_tir_transform_simplify.py | 130 +++++++
27 files changed, 900 insertions(+), 118 deletions(-)
create mode 100644 src/arith/conjunctive_normal_form.cc
copy src/{relay/backend/param_dict.h => arith/conjunctive_normal_form.h} (60%)