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 2c29292684 [ci][docker] Nightly Docker image update
add 59b945742d [FIX,AUTOSCHEDULER,METASCHEDULE] Handle negative extents in
featurization (#12990)
add 3d5e440fff [ci] Disable flaky ethosu + roofline tests (#12956)
add 2d50979606 [TVMScript] Allow T.bool type annotations (#12975)
add 7fc35da3b9 [TEST] CPU feature detection for x86 and ARM dot product
instructions (#12980)
add 1b9e20a807 [ETHOSN] Transpose fully connected weights (#12970)
add 6147c31b36 [ETHOSN] Remove backwards copy in the runtime (#12968)
add 5e24aa2b78 [Hexagon] [runtime] Query for total and available VTCM
(#12992)
add 87c466cdee [Textures] Improve error reporting (#12986)
add e375c311da [Arith][IndexMap] Correct MapShape result for small
vectorized dims (#12927)
add 7ff42a1d4e [TIR] Require dtype.is_float() inside FloatImm (#12928)
add 50df4abf3b [Relay] optimize dumpir time (#12792)
add 78df9c1d79 [LOGGING] Optionally print backtrace on segfault (#12959)
add 86fd776209 [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 (2c29292684)
\
N -- N -- N refs/heads/nightly-docker-update (86fd776209)
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 | 20 +++----
ci/jenkins/Jenkinsfile.j2 | 20 +++----
cmake/config.cmake | 4 ++
cmake/modules/LibInfo.cmake | 1 +
cmake/modules/Logging.cmake | 5 ++
cmake/modules/contrib/CMSISNN.cmake | 4 +-
cmake/modules/contrib/EthosN.cmake | 3 +-
python/tvm/auto_scheduler/feature.py | 8 +--
python/tvm/script/tir/__init__.py | 1 +
python/tvm/script/tir/ty.py | 12 +++-
python/tvm/testing/utils.py | 67 ++++++++++++++++++++--
src/auto_scheduler/feature.cc | 7 ++-
src/ir/expr.cc | 3 +
.../feature_extractor/per_store_feature.cc | 4 +-
src/printer/relay_text_printer.cc | 9 ++-
.../backend/contrib/cmsisnn/generate_constants.cc | 20 ++-----
src/relay/backend/contrib/constant_transforms.cc | 58 +++++++++++++++++++
src/relay/backend/contrib/constant_transforms.h | 59 +++++++++++++++++++
src/relay/backend/contrib/ethosn/codegen.cc | 4 +-
.../backend/contrib/ethosn/convert_equivalent.cc | 1 +
src/relay/backend/contrib/ethosn/ethosn_api.cc | 49 ++++++----------
src/relay/backend/contrib/ethosn/ethosn_api.h | 13 +----
src/runtime/contrib/ethosn/ethosn_device.cc | 64 ++++++---------------
src/runtime/hexagon/hexagon_vtcm_pool.cc | 19 ++++--
src/runtime/hexagon/hexagon_vtcm_pool.h | 4 +-
src/runtime/logging.cc | 29 ++++++++++
src/support/libinfo.cc | 1 +
src/tir/ir/index_map.cc | 45 +++++++++++----
src/tir/transforms/texture_flatten.cc | 3 +-
.../contrib/test_ethosn/test_fullyconnected.py | 56 +++++++++---------
tests/python/contrib/test_ethosn/test_networks.py | 4 +-
tests/python/contrib/test_ethosu/test_codegen.py | 2 +-
.../test_ethosu/test_replace_depthwise_conv2d.py | 5 +-
.../test_meta_schedule_auto_tensorize.py | 7 ++-
tests/python/relay/test_op_level1.py | 2 +-
tests/python/relay/test_op_level10.py | 2 +-
tests/python/relay/test_op_level2.py | 65 +++++++++++----------
.../python/unittest/test_auto_scheduler_feature.py | 11 ++++
tests/python/unittest/test_index_map.py | 9 ++-
...schedule_feature_extractor_per_store_feature.py | 16 ++++++
.../unittest/test_meta_schedule_tune_relay.py | 9 +--
tests/python/unittest/test_roofline.py | 1 +
tests/python/unittest/test_tir_constructor.py | 11 +++-
tests/python/unittest/test_tvmscript_roundtrip.py | 46 +++++++++++++++
tests/scripts/task_config_build_arm.sh | 1 +
tests/scripts/task_config_build_cortexm.sh | 1 +
tests/scripts/task_config_build_cpu.sh | 1 +
tests/scripts/task_config_build_gpu.sh | 1 +
tests/scripts/task_config_build_gpu_other.sh | 1 +
tests/scripts/task_config_build_hexagon.sh | 1 +
tests/scripts/task_config_build_i386.sh | 1 +
52 files changed, 554 insertions(+), 237 deletions(-)
create mode 100644 src/relay/backend/contrib/constant_transforms.cc
create mode 100644 src/relay/backend/contrib/constant_transforms.h