for rewrite doc

This commit is contained in:
yuzhenhua 2022-12-07 09:43:53 +08:00
parent a69117710e
commit 87bfc70681
2 changed files with 8 additions and 0 deletions

View File

@ -2,6 +2,10 @@ mindspore.rewrite
=================
MindSpore的ReWrite功能用于修改网络前向的计算过程对网络进行插入、删除和替换语句。该功能目前处于开发调试阶段可能会更改或删除。
ReWrite完整示例请参考
`rewrite_example.py <https://gitee.com/mindspore/mindspore/tree/master/docs/api/api_python/rewrite_example.py>`_
该样例代码的主要功能包括怎么通过网络创建SymbolTree并且对SymbolTree中的节点进行插入删除替换等操作其中还包含了对子网络的修改和通过模式匹配进行节点替换。
.. py:class:: mindspore.rewrite.SymbolTree(handler: SymbolTreeImpl)
SymbolTree通常对应于网络的前向计算过程。

View File

@ -1,5 +1,9 @@
mindspore.rewrite
=================
For a complete ReWrite example, refer to
`rewrite_example.py <https://gitee.com/mindspore/mindspore/tree/master/docs/api/api_python_en/rewrite_example.py>`_
The main functions of the sample code include: how to create a SymbolTree through the network, and how to insert, delete, and replace the nodes in the SymbolTree. It also includes the modification of the subnet and node replacement through pattern matching.
.. automodule:: mindspore.rewrite
:members: