From 7159062873bc097e9a9951eb009e5f625b23b4a9 Mon Sep 17 00:00:00 2001 From: Yi Wang Date: Sat, 2 Sep 2017 17:13:37 -0700 Subject: [PATCH] Add table header --- doc/design/layers_operators.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/design/layers_operators.md b/doc/design/layers_operators.md index ee9e890e5ce..cda99888bea 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 | | -- GitLab