blob: efda11a8499450b2900f63e42baf92c2b358126e [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 LeakyReluOp : public Operator<Context> {
public:
LeakyReluOp(const OperatorDef& operator_def, Workspace* ws)
: Operator<Context>(operator_def, ws), alpha_(0.01) {
if (HasArgument("alpha")) {
alpha_ =
static_cast<T>(this->template GetSingleArgument<float>("alpha", 0.01));
}
}
USE_OPERATOR_CONTEXT_FUNCTIONS;
bool RunOnDevice() override;
protected:
T alpha_;
};
template <typename T, class Context>
class LeakyReluGradientOp final : public Operator<Context> {
public:
LeakyReluGradientOp(const OperatorDef& operator_def, Workspace* ws)
: Operator<Context>(operator_def, ws), alpha_(0.01) {
if (HasArgument("alpha")) {
alpha_ =
static_cast<T>(this->template GetSingleArgument<float>("alpha", 0.01));
}
}
USE_OPERATOR_CONTEXT_FUNCTIONS;
bool RunOnDevice() override;
protected:
T alpha_;
};
} // namespace caffe2