This is an automated email from the ASF dual-hosted git repository.
tlopex pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
The following commit(s) were added to refs/heads/main by this push:
new 90e6e8b77a [Docs] Fix duplicate license headers and incorrect module
paths after tirx rename (#18941)
90e6e8b77a is described below
commit 90e6e8b77a76907a1eee8d2b97b7bc01315f69e5
Author: Shushi Hong <[email protected]>
AuthorDate: Fri Mar 27 01:51:09 2026 -0400
[Docs] Fix duplicate license headers and incorrect module paths after tirx
rename (#18941)
- Remove duplicate Apache license blocks in
`docs/get_started/overview.rst` and `docs/README.md` introduced by
#18913, which render as visible garbage text in built documentation
- Fix incorrect `tirx/schedule` and `tirx/tensor_intrin` paths in
`docs/arch/index.rst` — these modules are in `s_tir/`, not `tirx/`
---
docs/README.md | 16 ----------------
docs/arch/index.rst | 6 +++---
docs/get_started/overview.rst | 16 ----------------
3 files changed, 3 insertions(+), 35 deletions(-)
diff --git a/docs/README.md b/docs/README.md
index 7c59ed6bda..f708afd768 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -15,22 +15,6 @@
<!--- specific language governing permissions and limitations -->
<!--- under the License. -->
-<!--- or more contributor license agreements. See the NOTICE file -->
-<!--- distributed with this work for additional information -->
-<!--- regarding copyright ownership. The ASF licenses this file -->
-<!--- to you under the Apache License, Version 2.0 (the -->
-<!--- "License"); you may not use this file except in compliance -->
-<!--- with the License. You may obtain a copy of the License at -->
-
-<!--- http://www.apache.org/licenses/LICENSE-2.0 -->
-
-<!--- Unless required by applicable law or agreed to in writing, -->
-<!--- software distributed under the License is distributed on an -->
-<!--- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -->
-<!--- KIND, either express or implied. See the License for the -->
-<!--- specific language governing permissions and limitations -->
-<!--- under the License. -->
-
# TVM Documentation
This folder contains the source of TVM's documentation, hosted at
https://tvm.apache.org/docs
diff --git a/docs/arch/index.rst b/docs/arch/index.rst
index c3b296266f..3d9e92b25e 100644
--- a/docs/arch/index.rst
+++ b/docs/arch/index.rst
@@ -306,14 +306,14 @@ in the IRModule. Please refer to the :ref:`Relax Deep
Dive <relax-deep-dive>` fo
tvm/tirx
--------
-tirx contains the definition of the low-level program representations. We use
`tirx::PrimFunc` to represent functions that can be transformed by tirx passes.
+tirx contains the definition of the low-level program representations. We use
``tirx::PrimFunc`` to represent functions that can be transformed by tirx
passes.
Besides the IR data structures, the tirx module also includes:
-- A set of schedule primitives to control the generated code in
``tirx/schedule``.
-- A set of builtin intrinsics in ``tirx/tensor_intrin``.
- A set of analysis passes to analyze the tirx functions in ``tirx/analysis``.
- A set of transformation passes to lower or optimize the tirx functions in
``tirx/transform``.
+The schedule primitives and tensor intrinsics are in ``s_tir/schedule`` and
``s_tir/tensor_intrin`` respectively.
+
Please refer to the :ref:`TensorIR Deep Dive <tensor-ir-deep-dive>` for more
details.
tvm/arith
diff --git a/docs/get_started/overview.rst b/docs/get_started/overview.rst
index 3b7e7767a0..bd0c7ebb01 100644
--- a/docs/get_started/overview.rst
+++ b/docs/get_started/overview.rst
@@ -15,22 +15,6 @@
specific language governing permissions and limitations
under the License.
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied. See the License for the
- specific language governing permissions and limitations
- under the License.
-
Overview
========