diff --git a/doc/design/layers_operators.md b/doc/design/layers_operators.md index ee9e890e5cec4e3e876895b7f146b53ffc27a1a1..cda99888bea6d70bb5a05ec020469b7aef3f27ef 100644 --- a/doc/design/layers_operators.md +++ b/doc/design/layers_operators.md @@ -72,6 +72,8 @@ def layer.fc(X): We'd like to have Python bindings to operators in package `paddle.operator`, and Python compositions of operators in package `paddle.layer`. So we have the following concepts in above illustrative example: +| implementation | mul | add | fc | fc | +--------------------------------------------------------------------------------- | C++ functions/functors | mul | add | | | | C++ operator class | mulOp | addOp | FCOp | | | Python binding | operator.mul | operator.add | operator.fc | |