From c4d3fef15757c3811108db4f975e344d63108959 Mon Sep 17 00:00:00 2001 From: "Yang Yang(Tony)" Date: Thu, 28 Sep 2017 12:07:33 -0700 Subject: [PATCH] update doc: no need to modify pybind_file `paddle/operators/CMakeLists.txt` will automatically generate the bind. --- doc/design/refactorization.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/doc/design/refactorization.md b/doc/design/refactorization.md index ad801ca421c..ffcc069ccd8 100644 --- a/doc/design/refactorization.md +++ b/doc/design/refactorization.md @@ -177,8 +177,6 @@ REGISTER_OP(op_type, op_class, op_maker_class, grad_op_type, grad_op_class) REGISTER_OP_WITHOUT_GRADIENT(op_type, op_class, op_maker_class) ``` -### `USE` Macros -make sure the registration process is executed and linked. --- # Register Process @@ -188,7 +186,7 @@ make sure the registration process is executed and linked. 1. call maker class to complete `proto` and `checker` 2. with the completed `proto` and `checker`, build a new key-value pair in the `OpInfoMap` -4. Invoke `USE` macro in where the Op is used to make sure it is linked. + --- # Backward Module (1/2) -- GitLab