mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
Summary: This directory is opted-in to clang-format but is not format-clean. This blocks continuous formatting from being enabled on fbcode, and causes hassle for other codemods that leave inconsistent formatting. This diff runs clang-format, which is widely used and considered safe. If you are unhappy with the formatting of a particular block, please *accept this diff* and then in a stacked commit undo the change and wrap that code in `// clang-format off` and `// clang-format on`, or `/* clang-format off */` and `/* clang-format on */`. drop-conflicts Test Plan: sandcastleit Reviewed By: jerryzh168 Differential Revision: D22311706 fbshipit-source-id: 1ca59a82e96156a4a5dfad70ba3e64d44c5e762a
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_
|