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 36a82f5159 [BugFix][TVMScript] Add `doc.keyword` handling for
`ExprEvaluator._visit` (#19352)
add 5673754e7c Bump tvm-ffi to 1fed0a (#18967)
add 491480d4db [Docs] Add tvm.s_tir.analysis API reference page (#19353)
add 744ef561e4 [Docs] Fix outdated paths, links, and add missing API
references across documentation (#19351)
add 628b394ed7 [Docs] Add Disco distributed runtime architecture overview
(#19357)
add 9ec6a52e21 [Docs] Add Dataflow Pattern Language (DPL) documentation
for Relax (#19358)
add 93e28d1126 [BugFix][TVMScript] Fix invalid f-string format spec
causing TypeError on Python 3.14 (#19362)
add d1f5583e0e [Docs] Add tutorial for importing models from PyTorch,
ONNX, and TFLite (#19354)
add d58e9f7bbe [WebGPU] Add gating logic for subgroup shuffle primitives
(#18823)
add e0df8028bf [Docs] TFLite tests requiring Python 3.10 and specific
package versions to avoid core dumps (#19364)
add 072c849439 [Test][TFLite] Add unit tests for RESIZE_BILINEAR and
RESIZE_NEAREST_NEIGHBOR ops (#19365)
add f0863fd5c7 [Relax][ONNX] Support ConcatFromSequenc/SequenceInsert with
new_axis=1 (#19361)
No new revisions were added by this update.
Summary of changes:
3rdparty/tvm-ffi | 2 +-
docs/arch/index.rst | 42 +-
docs/conf.py | 15 +
docs/contribute/ci.rst | 4 +-
docs/contribute/document.rst | 4 +-
docs/contribute/pull_request.rst | 6 +-
docs/deep_dive/relax/dpl.rst | 557 +++++++++++++++++++++
docs/deep_dive/relax/index.rst | 1 +
docs/errors.rst | 4 +-
docs/how_to/dev/pytest_target_parametrization.rst | 14 +-
docs/how_to/dev/setup_rpc_system.rst | 4 +-
docs/how_to/tutorials/import_model.py | 407 +++++++++++++++
docs/index.rst | 1 +
docs/install/from_source.rst | 12 +-
docs/reference/api/python/index.rst | 4 +
.../api/python/{ir.rst => relax/distributed.rst} | 7 +-
.../python/{runtime/runtime.rst => relax/dpl.rst} | 6 +-
.../python/relax/{analysis.rst => training.rst} | 4 +-
.../python/{runtime/vm.rst => s_tir/analysis.rst} | 6 +-
python/tvm/relax/frontend/onnx/onnx_frontend.py | 30 +-
python/tvm/script/parser/core/diagnostics.py | 2 +-
src/s_tir/transform/lower_thread_allreduce.cc | 4 +-
src/target/source/codegen_webgpu.cc | 7 +-
src/target/source/codegen_webgpu.h | 2 +
src/target/source/intrin_rule_webgpu.cc | 59 +++
src/target/target_kind.cc | 35 ++
tests/python/relax/test_frontend_onnx.py | 53 +-
tests/python/relax/test_frontend_tflite.py | 71 +++
...test_s_tir_transform_lower_thread_all_reduce.py | 101 ++++
tests/python/target/test_target_target.py | 20 +
tests/scripts/task_python_docs.sh | 3 +
web/src/webgpu.ts | 3 +
32 files changed, 1434 insertions(+), 56 deletions(-)
create mode 100644 docs/deep_dive/relax/dpl.rst
create mode 100644 docs/how_to/tutorials/import_model.py
copy docs/reference/api/python/{ir.rst => relax/distributed.rst} (91%)
copy docs/reference/api/python/{runtime/runtime.rst => relax/dpl.rst} (93%)
copy docs/reference/api/python/relax/{analysis.rst => training.rst} (94%)
copy docs/reference/api/python/{runtime/vm.rst => s_tir/analysis.rst} (91%)