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 4692b9591d [DOCS] Update document to include security model of RPC
server (#17377)
add 1435ddb118 [Doc] Relax Deep Dive (#17380)
add 9f281758e8 [CI] Upgrade PyTorch to 2.4.1 (#17338)
add ff8e41644f [TVMScript] Avoid segfault from invalid TVMScript (#17373)
No new revisions were added by this update.
Summary of changes:
docker/install/ubuntu_install_onnx.sh | 4 +-
docs/conf.py | 7 +-
docs/deep_dive/relax/abstraction.rst | 73 ++++++
docs/deep_dive/{tensor_ir => relax}/index.rst | 17 +-
docs/deep_dive/relax/learning.rst | 272 ++++++++++++++++++++
docs/deep_dive/relax/tutorials/README.txt | 2 +
docs/deep_dive/relax/tutorials/relax_creation.py | 281 +++++++++++++++++++++
.../relax/tutorials/relax_transformation.py | 141 +++++++++++
docs/deep_dive/tensor_ir/abstraction.rst | 1 -
docs/deep_dive/tensor_ir/index.rst | 6 +-
.../tutorials/{creation.py => tir_creation.py} | 0
.../{transformation.py => tir_transformation.py} | 0
docs/index.rst | 1 +
python/tvm/script/parser/core/evaluator.py | 12 +-
python/tvm/script/parser/core/parser.py | 19 +-
python/tvm/script/parser/relax/parser.py | 10 +-
src/ir/diagnostic.cc | 3 +-
tests/python/relax/test_tvmscript_parser.py | 14 +-
.../tvmscript/test_tvmscript_printer_highlight.py | 8 +-
19 files changed, 828 insertions(+), 43 deletions(-)
create mode 100644 docs/deep_dive/relax/abstraction.rst
copy docs/deep_dive/{tensor_ir => relax}/index.rst (68%)
create mode 100644 docs/deep_dive/relax/learning.rst
create mode 100644 docs/deep_dive/relax/tutorials/README.txt
create mode 100644 docs/deep_dive/relax/tutorials/relax_creation.py
create mode 100644 docs/deep_dive/relax/tutorials/relax_transformation.py
rename docs/deep_dive/tensor_ir/tutorials/{creation.py => tir_creation.py}
(100%)
rename docs/deep_dive/tensor_ir/tutorials/{transformation.py =>
tir_transformation.py} (100%)