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 8327a8cb9f [Relax][ONNX] Update ReduceL1 to opset 18 (#18072)
     add a1f5a29eed [Relax] Support InstanceNorm & [TOPI] Bugfix of 
InstanceNorm (#18039)
     add 795fc32d99 [SCRIPT] Bump Python minimum version to 3.9 and update AST 
compatibility (#18086)
     add f6a406a64e [Script] Enhance alloc buffer handling in nested frames 
(#18088)
     add 23bcbc5350 [KVCache] Per Layer Sliding Window (#17928)
     add 437d00afcd [Relax][ONNX] Update Reduce ops to support axes as input 
(#18090)

No new revisions were added by this update.

Summary of changes:
 include/tvm/relax/attrs/nn.h                       |  18 +
 include/tvm/topi/nn/instance_norm.h                |  87 ++++-
 python/tvm/base.py                                 |   9 +-
 python/tvm/relax/frontend/nn/llm/kv_cache.py       |  49 ++-
 python/tvm/relax/frontend/onnx/onnx_frontend.py    | 217 ++++++++++-
 .../frontend/torch/exported_program_translator.py  |  24 ++
 python/tvm/relax/frontend/torch/fx_translator.py   |  33 ++
 python/tvm/relax/op/nn/__init__.py                 |   1 +
 python/tvm/relax/op/nn/nn.py                       |  55 +++
 python/tvm/relax/op/op_attrs.py                    |   5 +
 python/tvm/relax/transform/legalize_ops/nn.py      |  13 +
 python/tvm/script/parser/core/diagnostics.py       |   8 +-
 python/tvm/script/parser/core/doc.py               | 146 -------
 python/tvm/script/parser/core/doc_core.py          | 422 +++++++++------------
 python/tvm/script/parser/core/evaluator.py         |   9 +-
 python/tvm/script/parser/tir/parser.py             |   8 +-
 python/tvm/topi/nn/instance_norm.py                |   4 +-
 src/relax/op/nn/nn.cc                              | 101 ++++-
 src/relax/op/nn/nn.h                               |   4 +
 src/runtime/vm/attn_utils.h                        |   3 +-
 src/runtime/vm/paged_kv_cache.cc                   | 211 +++++++++--
 src/script/ir_builder/tir/ir.cc                    |   2 +-
 src/topi/nn.cc                                     |   4 +-
 tests/lint/filter_untracked.py                     |   5 +-
 .../relax/test_frontend_from_exported_program.py   |  45 +++
 tests/python/relax/test_frontend_from_fx.py        |  47 +++
 tests/python/relax/test_frontend_onnx.py           |  22 +-
 tests/python/relax/test_tvmscript_parser.py        |   3 -
 .../python/tvmscript/test_tvmscript_parser_tir.py  |  23 ++
 tests/scripts/ci.py                                |  10 +-
 30 files changed, 1081 insertions(+), 507 deletions(-)

Reply via email to