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 2023/01/10 05:02:54 UTC

[tvm] branch nightly updated (a435cbb3b1 -> d00168ffbf)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch nightly
in repository https://gitbox.apache.org/repos/asf/tvm.git


    from a435cbb3b1 [TIR][Arith] Add common sub expr analyzer (#13702)
     add 6bc72bbca3 [microTVM] Replace arm_nnsupportfunctions.h with arm_acle.h (#13363)
     add 614e16d73a [AOT] Added a test for detecting output size post MLF export (#13655)
     add ce7d8c691a [Fix,Roofline] Fix roofline handling of multiple peak flops (#13716)
     add 329584bbf0 Add support for named outputs in MLF archive (#13704)
     add 5db453e18a [HotFix][docs] Use correct Colab button URL (#13725)
     add 6b65a590df [microNPU] Add support for TFLite PAD (#13732)
     add 10452a3444 [Web] Try to upgrade WebGPU API usage to the latest (#13731)
     add a2daffbe11 [Relay][Frontend] Span Filling TFLite (#13727)
     add b2da9453c6 [Relay][Frontend] Span Filling TensorFlow 1 (#13728)
     add d2ee4ec97e Add DisallowAsyncStridedMemCopy post processor to rem  (#13720)
     add 687ec7883b [microTVM][Zephyr] Fix flash command for nrfjprog (#13723)
     add d00168ffbf [CI] Fix MLF input and output name map (#13740)

No new revisions were added by this update.

Summary of changes:
 .../zephyr/template_project/microtvm_api_server.py |   22 +-
 docs/conf.py                                       |    4 +-
 include/tvm/meta_schedule/postproc.h               |    6 +
 python/tvm/meta_schedule/postproc/__init__.py      |    1 +
 ...orize.py => disallow_async_strided_mem_copy.py} |   18 +-
 python/tvm/micro/model_library_format.py           |  119 +-
 .../tvm/relay/backend/contrib/ethosu/legalize.py   |   57 +
 python/tvm/relay/backend/contrib/ethosu/util.py    |   10 +
 python/tvm/relay/frontend/tensorflow.py            |   56 +-
 python/tvm/relay/frontend/tflite.py                |   57 +-
 python/tvm/relay/op/contrib/ethosu.py              |   85 +
 .../arm_cpu/mprofile/dsp/micro_kernel/avg_pool.py  |    6 +-
 .../arm_cpu/mprofile/dsp/micro_kernel/common.py    |   34 +-
 .../topi/arm_cpu/mprofile/dsp/micro_kernel/gemm.py |   66 +-
 .../arm_cpu/mprofile/dsp/micro_kernel/max_pool.py  |   10 +-
 .../dsp/micro_kernel/multi_channel_convolve.py     |   19 +-
 python/tvm/utils/roofline/__init__.py              |   10 +-
 .../postproc/disallow_async_strided_mem_copy.cc    |  189 +
 src/tir/transforms/lower_async_dma.cc              |   11 +-
 tests/python/contrib/test_ethosu/test_codegen.py   |   23 +
 .../python/frontend/tensorflow/test_bn_dynamic.py  |    6 +-
 .../frontend/tensorflow/test_control_flow.py       |   10 +-
 tests/python/frontend/tensorflow/test_debugging.py |   11 +-
 tests/python/frontend/tensorflow/test_forward.py   |  258 +-
 tests/python/frontend/tensorflow/test_no_op.py     |    9 +-
 tests/python/frontend/tflite/test_forward.py       |  173 +-
 tests/python/relay/aot/test_crt_aot.py             |   57 +
 ...le_postproc_disallow_async_strided_mem_copy.py} |   61 +-
 .../unittest/test_micro_model_library_format.py    |   84 +
 web/package-lock.json                              | 8746 +++++++++++++++++++-
 web/package.json                                   |    2 +-
 web/src/webgpu.ts                                  |   32 +-
 32 files changed, 9995 insertions(+), 257 deletions(-)
 copy python/tvm/meta_schedule/postproc/{rewrite_tensorize.py => disallow_async_strided_mem_copy.py} (62%)
 create mode 100644 src/meta_schedule/postproc/disallow_async_strided_mem_copy.cc
 copy tests/python/unittest/{test_meta_schedule_postproc_disallow_dynamic_loop.py => test_meta_schedule_postproc_disallow_async_strided_mem_copy.py} (65%)