1 #ifndef _OPERATORS_ELTWISE_ADD_OP_H_
2 #define _OPERATORS_ELTWISE_ADD_OP_H_
4 #include "smaug/core/backend.h"
5 #include "smaug/core/operator.h"
7 #include "smaug/core/workspace.h"
8 #include "smaug/operators/eltwise_op.h"
18 template <
typename Backend>
19 class EltwiseAddOp :
public EltwiseOp<Backend> {
21 EltwiseAddOp(
const std::string& name, Workspace* workspace)
22 : EltwiseOp<Backend>(name, OpType::EltwiseAdd, workspace) {}
24 void run()
override {}
27 REGISTER_SPECIAL_OP(EltwiseAddOp, ReferenceBackend);