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 726edbf54b [Docs] Complete API reference for tvm.relax backend and 
testing modules (#19378)
     add 5dda0b3a3a [DLight] Add CPU Reduction schedule rule for softmax-like 
operators (#19374)
     add 8932bc6b6d [Relax][TFLite] Fix and test DEPTH_TO_SPACE/SPACE_TO_DEPTH, 
SELECT ops (#19381)
     add 3bc61d1fab [BugFix][TOPI] Fix get_const_tuple hanging indefinitely 
when passed a te.Tensor (#19380)
     add b6f67b06db [Docs] Add Python API reference for tvm submodule docs  
(#19379)
     add 3d9cf2ec08 [BugFix][TIRx] Fix VerifyMemory crash for PrimFuncs without 
target attribute (#19382)
     add f4cf9f578e [BugFix][TIRx] Fix bad-optional-access in BF16/FP8 legalize 
passes for target-less PrimFuncs (#19383)
     add 828880ebd5 [S-TIR] Fix the ScheduleError from missing guard in 
CheckInline (#19377)

No new revisions were added by this update.

Summary of changes:
 docs/reference/api/python/{error.rst => arith.rst} |   5 +-
 docs/reference/api/python/contrib.rst              |  14 +
 docs/reference/api/python/{ir.rst => exec.rst}     |   7 +-
 docs/reference/api/python/index.rst                |   4 +
 docs/reference/api/python/instrument.rst           |   1 +
 docs/reference/api/python/ir.rst                   |   6 +
 docs/reference/api/python/target.rst               |   6 +
 docs/reference/api/python/{ir.rst => testing.rst}  |   7 +-
 .../{relax/distributed.rst => tirx/backend.rst}    |  17 +-
 docs/reference/api/python/topi.rst                 |  26 ++
 python/tvm/arith/bound.py                          |   6 +-
 python/tvm/arith/int_set.py                        |  10 +-
 python/tvm/arith/iter_affine_map.py                |  55 ++--
 python/tvm/contrib/hexagon/tools.py                |   4 +-
 .../tvm/relax/frontend/tflite/tflite_frontend.py   |  37 ++-
 python/tvm/s_tir/dlight/cpu/__init__.py            |   1 +
 python/tvm/s_tir/dlight/cpu/reduction.py           | 153 +++++++++++
 python/tvm/testing/utils.py                        |  14 +-
 python/tvm/topi/testing/strided_slice_python.py    |   9 +-
 python/tvm/topi/utils.py                           |   5 +
 python/tvm/topi/vision/nms.py                      |  18 +-
 python/tvm/topi/vision/nms_util.py                 |  67 ++---
 .../meta_schedule/schedule_rule/auto_inline.cc     |  10 +
 src/tirx/analysis/verify_memory.cc                 |   4 +-
 src/tirx/transform/unsupported_dtype_legalize.cc   |  16 +-
 tests/python/relax/test_frontend_tflite.py         | 288 +++++++++++++++++----
 tests/python/s_tir/dlight/test_cpu_reduction.py    | 270 +++++++++++++++++++
 ...test_meta_schedule_schedule_rule_auto_inline.py |  30 +++
 28 files changed, 921 insertions(+), 169 deletions(-)
 copy docs/reference/api/python/{error.rst => arith.rst} (94%)
 copy docs/reference/api/python/{ir.rst => exec.rst} (94%)
 copy docs/reference/api/python/{ir.rst => testing.rst} (94%)
 copy docs/reference/api/python/{relax/distributed.rst => tirx/backend.rst} 
(80%)
 create mode 100644 python/tvm/s_tir/dlight/cpu/reduction.py
 create mode 100644 tests/python/s_tir/dlight/test_cpu_reduction.py

Reply via email to