clip_op.cc 5.9 KB
Newer Older
W
wuyefeilin 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
// Copyright (c) 2022 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.
W
wanghaoshuang 已提交
14

S
sneaxiy 已提交
15
#include <memory>
16

W
wuyefeilin 已提交
17
#include "paddle/fluid/framework/infershape_utils.h"
Z
Zhong Hui 已提交
18 19
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/framework/op_version_registry.h"
W
wuyefeilin 已提交
20 21
#include "paddle/phi/core/infermeta_utils.h"
#include "paddle/phi/infermeta/unary.h"
W
wanghaoshuang 已提交
22 23 24 25 26 27 28

namespace paddle {
namespace operators {

class ClipOp : public framework::OperatorWithKernel {
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;
29
  phi::KernelKey GetExpectedKernelType(
30 31 32
      const framework::ExecutionContext& ctx) const override {
    auto input_data_type =
        framework::OperatorWithKernel::IndicateVarDataType(ctx, "X");
33
    return phi::KernelKey(input_data_type, ctx.GetPlace());
34
  }
W
wanghaoshuang 已提交
35 36
};

37
template <typename AttrType>
W
wanghaoshuang 已提交
38 39
class ClipOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
Y
Yu Yang 已提交
40
  void Make() override {
41
    AddInput("X",
S
SunGaofeng 已提交
42 43
             "Tensor, the input of clip op, data type should be float32 or "
             "float64.");
44 45 46 47 48 49 50 51
    AddInput("Min",
             "Tensor, the lower bound, data type should be float32 "
             "or float64.")
        .AsDispensable();
    AddInput("Max",
             "Tensor, the upper bound, data type should be float32 "
             "or float64.")
        .AsDispensable();
S
SunGaofeng 已提交
52 53 54 55 56 57
    AddOutput(
        "Out",
        "Tensor, the clipped tensor, with the same shape and data type as "
        "input(x)");
    AddAttr<AttrType>("min", "float number, the minimum value to clip by.");
    AddAttr<AttrType>("max", "float number, the maximum value to clip by.");
W
wanghaoshuang 已提交
58
    AddComment(R"DOC(
59 60
Clip Operator.

61
The clip operator limits the value of given input within an interval [min, max],
S
SunGaofeng 已提交
62
just as the following equation,
K
kexinzhao 已提交
63 64

$$
S
SunGaofeng 已提交
65
Out = \MIN(\MAX(x, min), max)
K
kexinzhao 已提交
66
$$
67

W
wanghaoshuang 已提交
68 69 70 71 72 73 74 75
)DOC");
  }
};

class ClipOpGrad : public framework::OperatorWithKernel {
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

76
  void InferShape(framework::InferShapeContext* ctx) const override {
77
    OP_INOUT_CHECK(ctx->HasInput("X"), "Input", "X", "clip_grad");
78 79 80 81
    OP_INOUT_CHECK(ctx->HasInput(framework::GradVarName("Out")),
                   "Input",
                   "Out@GRAD",
                   "clip_grad");
Q
Qiao Longfei 已提交
82 83 84
    auto x_dims = ctx->GetInputDim("X");
    if (ctx->HasOutput(framework::GradVarName("X"))) {
      ctx->SetOutputDim(framework::GradVarName("X"), x_dims);
W
wanghaoshuang 已提交
85
    }
W
wanghaoshuang 已提交
86
  }
87

88
  phi::KernelKey GetExpectedKernelType(
89 90 91
      const framework::ExecutionContext& ctx) const override {
    auto input_data_type = OperatorWithKernel::IndicateVarDataType(
        ctx, framework::GradVarName("Out"));
92
    return phi::KernelKey(input_data_type, ctx.GetPlace());
93
  }
W
wanghaoshuang 已提交
94 95
};

H
hong 已提交
96 97
template <typename T>
class ClipGradOpMaker : public framework::SingleGradOpMaker<T> {
S
sneaxiy 已提交
98
 public:
H
hong 已提交
99
  using framework::SingleGradOpMaker<T>::SingleGradOpMaker;
S
sneaxiy 已提交
100 101

 protected:
102
  void Apply(GradOpPtr<T> op) const override {
S
sneaxiy 已提交
103
    op->SetType("clip_grad");
H
hong 已提交
104
    op->SetInput("X", this->Input("X"));
105 106 107 108 109 110
    if (this->HasInput("Min")) {
      op->SetInput("Min", this->Input("Min"));
    }
    if (this->HasInput("Max")) {
      op->SetInput("Max", this->Input("Max"));
    }
H
hong 已提交
111 112 113
    op->SetInput(framework::GradVarName("Out"), this->OutputGrad("Out"));
    op->SetOutput(framework::GradVarName("X"), this->InputGrad("X"));
    op->SetAttrMap(this->Attrs());
S
sneaxiy 已提交
114 115 116
  }
};

117 118 119 120 121
DECLARE_INPLACE_OP_INFERER(ClipInplaceInferer, {"X", "Out"});
DECLARE_INPLACE_OP_INFERER(ClipGradInplaceInferer,
                           {framework::GradVarName("Out"),
                            framework::GradVarName("X")});

Q
qingqing01 已提交
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
template <typename T>
class ClipDoubleGradOpMaker : public framework::SingleGradOpMaker<T> {
 public:
  using framework::SingleGradOpMaker<T>::SingleGradOpMaker;

 protected:
  void Apply(GradOpPtr<T> op) const override {
    op->SetType("clip_grad");
    op->SetInput("X", this->Input("X"));
    if (this->HasInput("Min")) {
      op->SetInput("Min", this->Input("Min"));
    }
    if (this->HasInput("Max")) {
      op->SetInput("Max", this->Input("Max"));
    }
    op->SetInput(framework::GradVarName("Out"),
                 this->OutputGrad(framework::GradVarName("X")));
    op->SetOutput(framework::GradVarName("X"),
                  this->InputGrad(framework::GradVarName("Out")));
    op->SetAttrMap(this->Attrs());
  }
};

W
wanghaoshuang 已提交
145 146 147 148
}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
149 150
DECLARE_INFER_SHAPE_FUNCTOR(clip,
                            ClipInferShapeFunctor,
W
wuyefeilin 已提交
151
                            PD_INFER_META(phi::UnchangedInferMeta));
152 153 154
REGISTER_OPERATOR(clip,
                  ops::ClipOp,
                  ops::ClipOpMaker<float>,
H
hong 已提交
155 156
                  ops::ClipGradOpMaker<paddle::framework::OpDesc>,
                  ops::ClipGradOpMaker<paddle::imperative::OpBase>,
157 158 159 160 161
                  ops::ClipInplaceInferer,
                  ClipInferShapeFunctor);
REGISTER_OPERATOR(clip_grad,
                  ops::ClipOpGrad,
                  ops::ClipGradInplaceInferer,
Q
qingqing01 已提交
162 163
                  ops::ClipDoubleGradOpMaker<paddle::framework::OpDesc>,
                  ops::ClipDoubleGradOpMaker<paddle::imperative::OpBase>);
Z
Zhong Hui 已提交
164

165 166
REGISTER_OP_VERSION(clip).AddCheckpoint(
    R"ROC(
Z
Zhong Hui 已提交
167
              Upgrade clip add a new input [Min])ROC",
168 169 170 171 172 173 174
    paddle::framework::compatible::OpVersionDesc()
        .NewInput("Min",
                  "Pass the mix, min value as input, not attribute. Min is "
                  "dispensable.")
        .NewInput("Max",
                  "Pass the mix, min value as input, not attribute. Max is "
                  "dispensable."));