From 90a442825c42740173ecf5ee3e64c24756bcfd56 Mon Sep 17 00:00:00 2001 From: Yi Wang Date: Sat, 2 Sep 2017 17:14:51 -0700 Subject: [PATCH] Change table to verbatim --- doc/design/layers_operators.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/design/layers_operators.md b/doc/design/layers_operators.md index cda99888bea..131effbccff 100644 --- a/doc/design/layers_operators.md +++ b/doc/design/layers_operators.md @@ -72,12 +72,12 @@ 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 | | | Python function | | | | layer.fc | +``` This is how we differentiate layer and operators in PaddlePaddle: -- GitLab