#ifndef CAFFE2_OPERATORS_THRESHOLDED_RELU_OP_H_ #define CAFFE2_OPERATORS_THRESHOLDED_RELU_OP_H_ #include "caffe2/core/common_omp.h" #include "caffe2/core/context.h" #include "caffe2/core/logging.h" #include "caffe2/core/operator.h" namespace caffe2 { template class ThresholdedReluOp final : public Operator { public: USE_OPERATOR_CONTEXT_FUNCTIONS; template explicit ThresholdedReluOp(Args&&... args) : Operator(std::forward(args)...) { alpha_ = this->template GetSingleArgument("alpha", 1.0); } bool RunOnDevice() override; protected: T alpha_; }; template class ThresholdedReluGradientOp final : public Operator { public: USE_OPERATOR_CONTEXT_FUNCTIONS; template explicit ThresholdedReluGradientOp(Args&&... args) : Operator(std::forward(args)...) { alpha_ = this->template GetSingleArgument("alpha", 1.0); } bool RunOnDevice() override; protected: T alpha_; }; } // namespace caffe2 #endif // CAFFE2_OPERATORS_THRESHOLDED_RELU_OP_H_