In a DL system, we can compose one or more fine grained operators into a coarse grained one. For example, the FC layer can be composed of a multiplication operator and an add operator.
@ -20,8 +20,8 @@ Then we can wrap them into operators which are C++ classes and can be created fr
generates
```c++
class mulOp : public OperatorBase {...};
REGISTER_OP(mulOp, "mul");
template <typenameT>class mulOp : public OperatorBase {...};