Skip to content

Commit

Permalink
fix malformed table (#5291)
Browse files Browse the repository at this point in the history
  • Loading branch information
SigureMo authored Sep 21, 2022
1 parent 6d7990a commit c85dfc6
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docs/api_guides/low_level/program.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ Block

:code:`Block` 是高级语言中变量作用域的概念,在编程语言中,Block 是一对大括号,其中包含局部变量定义和一系列指令或操作符。编程语言中的控制流结构 :code:`if-else` 和 :code:`for` 在深度学习中可以被等效为:

+----------------------+-------------------------+
| 编程语言 | Fluid |
+======================+=========================+
| for, while loop | RNN,WhileOP |
+----------------------+-------------------------+
| if-else, switch | IfElseOp, SwitchOp |
+----------------------+-------------------------+
| 顺序执行 | 一系列 layers |
+----------------------+-------------------------+
+-----------------+--------------------+
| 编程语言 | Fluid |
+=================+====================+
| for, while loop | RNN,WhileOP |
+-----------------+--------------------+
| if-else, switch | IfElseOp, SwitchOp |
+-----------------+--------------------+
| 顺序执行 | 一系列 layers |
+-----------------+--------------------+

如上文所说,Fluid 中的 :code:`Block` 描述了一组以顺序、选择或是循环执行的 Operator 以及 Operator 操作的对象:Tensor。

Expand Down

0 comments on commit c85dfc6

Please sign in to comment.