#ifndef CAFFE2_OPERATORS_SCALE_OP_H_ #define CAFFE2_OPERATORS_SCALE_OP_H_ #include "caffe2/core/context.h" #include "caffe2/core/operator.h" #include "caffe2/utils/math.h" namespace caffe2 { template class ScaleOp final : public Operator { public: USE_OPERATOR_CONTEXT_FUNCTIONS; ScaleOp(const OperatorDef& operator_def, Workspace* ws) : Operator(operator_def, ws), scale_(this->template GetSingleArgument("scale", 1.0)) {} template bool DoRunWithType() { auto& X = Input(0); auto* Y = Output(0, X.sizes(), at::dtype()); math::Scale( X.numel(), scale_, X.template data(), Y->template mutable_data(), &context_); return true; } bool RunOnDevice() override { return DispatchHelper>::call(this, Input(0)); } protected: float scale_; }; } // namespace caffe2 #endif // CAFFE2_OPERATORS_SCALE_OP_H_