#pragma once #include "caffe2/core/context.h" #include "caffe2/core/logging.h" #include "caffe2/core/operator.h" #include "caffe2/utils/math.h" namespace caffe2 { template class PReluOp final : public Operator { public: template explicit PReluOp(Args&&... args) : Operator(std::forward(args)...), order_(StringToStorageOrder( this->template GetSingleArgument("order", "NCHW"))) {} USE_OPERATOR_CONTEXT_FUNCTIONS; bool RunOnDevice() override; protected: StorageOrder order_; }; template class PReluGradientOp final : public Operator { public: template explicit PReluGradientOp(Args&&... args) : Operator(std::forward(args)...), order_(StringToStorageOrder( this->template GetSingleArgument("order", "NCHW"))) {} USE_OPERATOR_CONTEXT_FUNCTIONS; bool RunOnDevice() override; protected: StorageOrder order_; }; } // namespace caffe2