Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions docs/arch/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Comment on lines 310 to +315
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

While the information presented is now correct, the structure feels a bit disjointed. To improve readability and flow, consider rephrasing this section to better integrate the information about s_tir. Here is a suggestion that maintains the list format for clarity:

Suggested change
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.
Besides the IR data structures, the tirx module includes:
- 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``.
Note that the related schedule primitives and tensor intrinsics are located 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
Expand Down
16 changes: 0 additions & 16 deletions docs/get_started/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
========

Expand Down
Loading