1 #ifndef _OPERATORS_ELTWISE_MUL_OP_H_
2 #define _OPERATORS_ELTWISE_MUL_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 EltwiseMulOp :
public EltwiseOp<Backend> {
21 EltwiseMulOp(
const std::string& name, Workspace* workspace)
22 : EltwiseOp<Backend>(name, OpType::EltwiseMul, workspace) {}
24 void run()
override {}
27 REGISTER_SPECIAL_OP(EltwiseMulOp, ReferenceBackend);