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 c75abd970f [ci][docker] Nightly Docker image update
add fcbcd156c7 [microTVM] Add Cortex-M DSP schedules for optimal conv2d
layouts (#12969)
add 0b034d77bd [Doc] Fix the typo in the debugging doc (#13032)
add cf96072a04 [COMMUNITY] Add andrewzhaoluo key for release (#13025)
add afeab6e8a3 [TVMScript] AST, Source and diagnostics for Parser (#12978)
add cd077575f3 Update to 0.11.dev0 (#13036)
add df0ffc3b50 [FIX,LOWERING] Add attrs from Relay Functions to PrimFuncs
in Metaschedule Lowering (#13034)
add 05d30f2502 [Docs] Update Release Process Docs -- Add Ver. Bump Step
(#13039)
add 4f975c7506 [Hexagon] [runtime] Support VTCM alignments of 128 or 2k
(#12999)
add cc235f88a4 [TIR] Update ir_comparator message to be more clear about
what is being compared (#13038)
add 66d7f10877 [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 (c75abd970f)
\
N -- N -- N refs/heads/nightly-docker-update (66d7f10877)
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 | 18 +-
KEYS | 59 +++
ci/jenkins/Jenkinsfile.j2 | 18 +-
conda/recipe/meta.yaml | 2 +-
docs/conf.py | 2 +-
docs/contribute/release_process.rst | 7 +
docs/dev/how_to/debugging_tvm.rst | 2 +-
include/tvm/runtime/c_runtime_api.h | 2 +-
python/tvm/_ffi/libinfo.py | 2 +-
python/tvm/relay/op/strategy/arm_cpu.py | 67 ++-
.../tvm/{_ffi/_cy2 => script/_parser}/__init__.py | 5 +-
.../__init__.py => script/_parser/_core.py} | 6 +-
.../_ctypes => script/_parser/core}/__init__.py | 3 +-
python/tvm/script/_parser/core/diagnostics.py | 241 +++++++++++
python/tvm/script/_parser/core/doc.py | 462 +++++++++++++++++++++
.../script/{printer => _parser/core}/doc_core.py | 0
python/tvm/script/_parser/core/utils.py | 61 +++
python/tvm/topi/arm_cpu/conv2d.py | 16 +
python/tvm/topi/arm_cpu/depthwise_conv2d.py | 19 +-
.../arm_cpu/mprofile/dsp/micro_kernel/tensordot.py | 155 +++++++
.../topi/arm_cpu/mprofile/dsp/tensordot_conv2ds.py | 271 ++++++++++++
python/tvm/topi/utils.py | 30 +-
src/relay/backend/te_compiler_cache.cc | 3 +
src/runtime/hexagon/hexagon_buffer.cc | 22 +-
src/runtime/hexagon/hexagon_vtcm_pool.cc | 1 +
src/tir/schedule/ir_comparator.cc | 4 +-
.../cpp-runtime/hexagon/hexagon_vtcm_pool_tests.cc | 95 ++++-
.../relay/strategy/arm_cpu/test_conv2d_nhwc.py | 36 +-
.../strategy/arm_cpu/test_depthwise_conv2d.py | 27 ++
.../unittest/test_tvmscript_parser_source.py | 86 ++++
version.py | 2 +-
web/package.json | 4 +-
32 files changed, 1651 insertions(+), 77 deletions(-)
copy python/tvm/{_ffi/_cy2 => script/_parser}/__init__.py (93%)
copy python/tvm/{tir/tensor_intrin/__init__.py => script/_parser/_core.py}
(88%)
copy python/tvm/{_ffi/_ctypes => script/_parser/core}/__init__.py (91%)
create mode 100644 python/tvm/script/_parser/core/diagnostics.py
create mode 100644 python/tvm/script/_parser/core/doc.py
rename python/tvm/script/{printer => _parser/core}/doc_core.py (100%)
create mode 100644 python/tvm/script/_parser/core/utils.py
create mode 100644
python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel/tensordot.py
create mode 100644 python/tvm/topi/arm_cpu/mprofile/dsp/tensordot_conv2ds.py
create mode 100644 tests/python/unittest/test_tvmscript_parser_source.py