mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/17084 clangr codemod Reviewed By: ezyang Differential Revision: D14078507 fbshipit-source-id: ed02d772890b30196302b6830f541f054b7e95c8
42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
#ifndef CAFFE2_OPERATORS_ELEMENTWISE_LINEAR_OP_H_
|
|
#define CAFFE2_OPERATORS_ELEMENTWISE_LINEAR_OP_H_
|
|
|
|
#include "caffe2/core/context.h"
|
|
#include "caffe2/core/operator.h"
|
|
#include "caffe2/utils/math.h"
|
|
|
|
namespace caffe2 {
|
|
template <typename T, class Context, class Engine = DefaultEngine>
|
|
class ElementwiseLinearOp final : public Operator<Context> {
|
|
public:
|
|
template <class... Args>
|
|
explicit ElementwiseLinearOp(Args&&... args)
|
|
: Operator<Context>(std::forward<Args>(args)...),
|
|
axis_(this->template GetSingleArgument<int>("axis", 1)) {}
|
|
|
|
USE_OPERATOR_CONTEXT_FUNCTIONS;
|
|
bool RunOnDevice() override;
|
|
|
|
protected:
|
|
int axis_;
|
|
};
|
|
|
|
template <typename T, class Context, class Engine = DefaultEngine>
|
|
class ElementwiseLinearGradientOp final : public Operator<Context> {
|
|
public:
|
|
template <class... Args>
|
|
explicit ElementwiseLinearGradientOp(Args&&... args)
|
|
: Operator<Context>(std::forward<Args>(args)...),
|
|
axis_(this->template GetSingleArgument<int>("axis", 1)) {}
|
|
|
|
USE_OPERATOR_CONTEXT_FUNCTIONS;
|
|
bool RunOnDevice() override;
|
|
|
|
protected:
|
|
int axis_;
|
|
};
|
|
|
|
} // namespace caffe2
|
|
|
|
#endif // CAFFE2_OPERATORS_ELEMENTWISE_LINEAR_OP_H_
|