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/20 05:02:49 UTC

[tvm] branch nightly updated (5d2a947204 -> 6c2d485a01)

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 5d2a947204 [TOPI] Making test_strided_set require a GPU for testing (#13804)
     add a75f110c0e [TIR]Fix the crash of the pass RemoveNoOp (#13808)
     add 6e01f3d855 [Adreno] Update interface of AnnotateMemoryScope pass (#13779)
     add cc352a4c34 [ONNX] Extend converter for Attention from Microsoft onnxruntime contrib opset (#13797)
     add c2eee01e6e [Docker]Add dialout group by default on login (#13810)
     add cfa65b26c1 [microTVM] Add tutorial on how to generate MLPerfTiny submissions (#13783)
     add 6c2d485a01 [TVMScript] `T.match_buffer` syntax sugar in arguments for TVMScript printer (#13801)

No new revisions were added by this update.

Summary of changes:
 docker/with_the_same_user                          |   1 +
 docs/conf.py                                       |   5 +-
 .../how_to/work_with_microtvm/micro_mlperftiny.py  | 312 +++++++++++++
 include/tvm/relay/transform.h                      |   2 +-
 python/tvm/micro/testing/utils.py                  |  44 +-
 python/tvm/relay/frontend/onnx.py                  | 517 +++++++++++++--------
 src/relay/backend/build_module.cc                  |   2 +-
 src/relay/transforms/annotate_texture_storage.cc   |   8 +-
 src/script/printer/tir/buffer.cc                   |   8 +
 src/script/printer/tir/function.cc                 | 105 +++++
 src/script/printer/tir/utils.h                     |  11 +
 src/tir/transforms/remove_no_op.cc                 |   5 +
 tests/micro/zephyr/utils.py                        |  37 +-
 tests/python/frontend/onnx/test_forward.py         |  92 +++-
 .../unittest/test_tir_transform_remove_no_op.py    |  14 +
 .../python/unittest/test_tvmscript_printer_tir.py  |  52 ++-
 tests/scripts/request_hook/request_hook.py         |   1 +
 tests/scripts/task_python_microtvm.sh              |   7 +
 18 files changed, 960 insertions(+), 263 deletions(-)
 create mode 100644 gallery/how_to/work_with_microtvm/micro_mlperftiny.py