98 lines
3.2 KiB
C++
98 lines
3.2 KiB
C++
// Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include "paddle/fluid/framework/infershape_utils.h"
|
|
#include "paddle/fluid/framework/op_registry.h"
|
|
#include "paddle/phi/core/infermeta_utils.h"
|
|
#include "paddle/phi/infermeta/unary.h"
|
|
|
|
namespace paddle {
|
|
namespace framework {
|
|
class InferShapeContext;
|
|
class OpDesc;
|
|
} // namespace framework
|
|
namespace imperative {
|
|
class OpBase;
|
|
} // namespace imperative
|
|
} // namespace paddle
|
|
|
|
namespace paddle {
|
|
namespace operators {
|
|
|
|
class IncrementOp : public framework::OperatorWithKernel {
|
|
public:
|
|
IncrementOp(const std::string &type,
|
|
const framework::VariableNameMap &inputs,
|
|
const framework::VariableNameMap &outputs,
|
|
const framework::AttributeMap &attrs)
|
|
: OperatorWithKernel(type, inputs, outputs, attrs) {}
|
|
|
|
protected:
|
|
phi::KernelKey GetExpectedKernelType(
|
|
const framework::ExecutionContext &ctx) const override {
|
|
phi::KernelKey kt = OperatorWithKernel::GetExpectedKernelType(ctx);
|
|
// IncrementOp kernel's device type is decided by input tensor place
|
|
kt.set_backend(
|
|
phi::TransToPhiBackend(ctx.Input<DenseTensor>("X")->place()));
|
|
return kt;
|
|
}
|
|
};
|
|
|
|
class IncrementOpMaker : public framework::OpProtoAndCheckerMaker {
|
|
public:
|
|
void Make() override {
|
|
AddInput("X", "(Tensor) The input tensor of increment operator");
|
|
AddOutput("Out", "(Tensor) The output tensor of increment operator.");
|
|
AddAttr<float>("step",
|
|
"(float, default 1.0) "
|
|
"The step size by which the "
|
|
"input tensor will be incremented.")
|
|
.SetDefault(1.0);
|
|
AddComment(R"DOC(
|
|
Increment Operator.
|
|
|
|
The equation is:
|
|
$$Out = X + step$$
|
|
|
|
)DOC");
|
|
}
|
|
};
|
|
|
|
template <typename T>
|
|
class IncrementGradOpMaker : public framework::SingleGradOpMaker<T> {
|
|
public:
|
|
using framework::SingleGradOpMaker<T>::SingleGradOpMaker;
|
|
|
|
void Apply(GradOpPtr<T> grad_op) const override {
|
|
grad_op->SetType("increment");
|
|
grad_op->SetInput("X", this->Output("Out"));
|
|
grad_op->SetOutput("Out", this->Input("X"));
|
|
grad_op->SetAttr("step", -PADDLE_GET_CONST(float, this->GetAttr("step")));
|
|
}
|
|
};
|
|
|
|
} // namespace operators
|
|
} // namespace paddle
|
|
|
|
namespace ops = paddle::operators;
|
|
DECLARE_INFER_SHAPE_FUNCTOR(increment,
|
|
IncrementInferShapeFunctor,
|
|
PD_INFER_META(phi::IncrementInferMeta));
|
|
REGISTER_OPERATOR(increment,
|
|
ops::IncrementOp,
|
|
ops::IncrementOpMaker,
|
|
ops::IncrementGradOpMaker<paddle::framework::OpDesc>,
|
|
ops::IncrementGradOpMaker<paddle::imperative::OpBase>,
|
|
IncrementInferShapeFunctor);
|