blob: 54e1afa54ccf26de1fec7d866593329e3ad61c29 [file] [log] [blame]
#pragma once
#include "caffe2/core/context.h"
#include "caffe2/core/logging.h"
#include "caffe2/core/operator.h"
namespace caffe2 {
template <typename T, class Context>
class PReluOp final : public Operator<Context> {
public:
PReluOp(const OperatorDef& operator_def, Workspace* ws)
: Operator<Context>(operator_def, ws),
order_(StringToStorageOrder(
OperatorBase::GetSingleArgument<string>("order", "NCHW"))) {}
USE_OPERATOR_CONTEXT_FUNCTIONS;
bool RunOnDevice() override;
protected:
StorageOrder order_;
};
template <typename T, class Context>
class PReluGradientOp final : public Operator<Context> {
public:
PReluGradientOp(const OperatorDef& operator_def, Workspace* ws)
: Operator<Context>(operator_def, ws),
order_(StringToStorageOrder(
OperatorBase::GetSingleArgument<string>("order", "NCHW"))) {}
USE_OPERATOR_CONTEXT_FUNCTIONS;
bool RunOnDevice() override;
protected:
StorageOrder order_;
};
} // namespace caffe2