clip_op.cc 7.4 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
W
wanghaoshuang 已提交
2

L
Luo Tao 已提交
3 4 5
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
W
wanghaoshuang 已提交
6

L
Luo Tao 已提交
7
    http://www.apache.org/licenses/LICENSE-2.0
W
wanghaoshuang 已提交
8

L
Luo Tao 已提交
9 10 11 12 13
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

Y
Yi Wang 已提交
15
#include "paddle/fluid/operators/clip_op.h"
S
sneaxiy 已提交
16
#include <memory>
Z
Zhong Hui 已提交
17 18
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/framework/op_version_registry.h"
W
wanghaoshuang 已提交
19 20 21 22 23 24 25 26

namespace paddle {
namespace operators {

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

27
  void InferShape(framework::InferShapeContext* ctx) const override {
28 29
    OP_INOUT_CHECK(ctx->HasInput("X"), "Input", "X", "clip");
    OP_INOUT_CHECK(ctx->HasOutput("Out"), "Output", "Out", "clip");
Q
Qiao Longfei 已提交
30 31
    auto x_dims = ctx->GetInputDim("X");
    ctx->SetOutputDim("Out", x_dims);
W
wanghaoshuang 已提交
32
    ctx->ShareLoD("X", /*->*/ "Out");
W
wanghaoshuang 已提交
33
  }
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48

  framework::OpKernelType GetExpectedKernelType(
      const framework::ExecutionContext& ctx) const override {
    auto input_data_type =
        framework::OperatorWithKernel::IndicateVarDataType(ctx, "X");

#ifdef PADDLE_WITH_MKLDNN
    if (this->CanMKLDNNBeUsed(ctx, input_data_type)) {
      return framework::OpKernelType(input_data_type, ctx.GetPlace(),
                                     framework::DataLayout::kMKLDNN,
                                     framework::LibraryType::kMKLDNN);
    }
#endif
    return framework::OpKernelType(input_data_type, ctx.GetPlace());
  }
W
wanghaoshuang 已提交
49 50
};

51
template <typename AttrType>
W
wanghaoshuang 已提交
52 53
class ClipOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
Y
Yu Yang 已提交
54
  void Make() override {
55
    AddInput("X",
S
SunGaofeng 已提交
56 57
             "Tensor, the input of clip op, data type should be float32 or "
             "float64.");
58 59 60 61 62 63 64 65
    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 已提交
66 67 68 69 70 71
    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.");
72 73 74 75 76 77 78 79
    AddAttr<bool>("use_mkldnn",
                  "(bool, default false) Only used in mkldnn kernel")
        .SetDefault(false);
    AddAttr<std::string>(
        "mkldnn_data_type",
        "(string, default \"float32\"). Data type of mkldnn kernel")
        .SetDefault("float32")
        .InEnum({"float32", "bfloat16"});
W
wanghaoshuang 已提交
80
    AddComment(R"DOC(
81 82
Clip Operator.

83
The clip operator limits the value of given input within an interval [min, max],
S
SunGaofeng 已提交
84
just as the following equation,
K
kexinzhao 已提交
85 86

$$
S
SunGaofeng 已提交
87
Out = \MIN(\MAX(x, min), max)
K
kexinzhao 已提交
88
$$
89

W
wanghaoshuang 已提交
90 91 92 93 94 95 96 97
)DOC");
  }
};

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

98
  void InferShape(framework::InferShapeContext* ctx) const override {
99 100 101
    OP_INOUT_CHECK(ctx->HasInput("X"), "Input", "X", "clip_grad");
    OP_INOUT_CHECK(ctx->HasInput(framework::GradVarName("Out")), "Input",
                   "Out@GRAD", "clip_grad");
Q
Qiao Longfei 已提交
102 103 104
    auto x_dims = ctx->GetInputDim("X");
    if (ctx->HasOutput(framework::GradVarName("X"))) {
      ctx->SetOutputDim(framework::GradVarName("X"), x_dims);
W
wanghaoshuang 已提交
105
    }
W
wanghaoshuang 已提交
106
  }
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121

  framework::OpKernelType GetExpectedKernelType(
      const framework::ExecutionContext& ctx) const override {
    auto input_data_type = OperatorWithKernel::IndicateVarDataType(
        ctx, framework::GradVarName("Out"));

#ifdef PADDLE_WITH_MKLDNN
    if (this->CanMKLDNNBeUsed(ctx, input_data_type)) {
      return framework::OpKernelType(input_data_type, ctx.GetPlace(),
                                     framework::DataLayout::kMKLDNN,
                                     framework::LibraryType::kMKLDNN);
    }
#endif
    return framework::OpKernelType(input_data_type, ctx.GetPlace());
  }
W
wanghaoshuang 已提交
122 123
};

H
hong 已提交
124 125
template <typename T>
class ClipGradOpMaker : public framework::SingleGradOpMaker<T> {
S
sneaxiy 已提交
126
 public:
H
hong 已提交
127
  using framework::SingleGradOpMaker<T>::SingleGradOpMaker;
S
sneaxiy 已提交
128 129

 protected:
130
  void Apply(GradOpPtr<T> op) const override {
S
sneaxiy 已提交
131
    op->SetType("clip_grad");
H
hong 已提交
132
    op->SetInput("X", this->Input("X"));
133 134 135 136 137 138
    if (this->HasInput("Min")) {
      op->SetInput("Min", this->Input("Min"));
    }
    if (this->HasInput("Max")) {
      op->SetInput("Max", this->Input("Max"));
    }
H
hong 已提交
139 140 141
    op->SetInput(framework::GradVarName("Out"), this->OutputGrad("Out"));
    op->SetOutput(framework::GradVarName("X"), this->InputGrad("X"));
    op->SetAttrMap(this->Attrs());
S
sneaxiy 已提交
142 143 144
  }
};

145 146 147 148 149
DECLARE_INPLACE_OP_INFERER(ClipInplaceInferer, {"X", "Out"});
DECLARE_INPLACE_OP_INFERER(ClipGradInplaceInferer,
                           {framework::GradVarName("Out"),
                            framework::GradVarName("X")});

Q
qingqing01 已提交
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
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 已提交
173 174 175 176
}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
Y
Yang Yang 已提交
177
REGISTER_OPERATOR(clip, ops::ClipOp, ops::ClipOpMaker<float>,
H
hong 已提交
178 179 180
                  ops::ClipGradOpMaker<paddle::framework::OpDesc>,
                  ops::ClipGradOpMaker<paddle::imperative::OpBase>,
                  ops::ClipInplaceInferer);
Q
qingqing01 已提交
181 182 183
REGISTER_OPERATOR(clip_grad, ops::ClipOpGrad, ops::ClipGradInplaceInferer,
                  ops::ClipDoubleGradOpMaker<paddle::framework::OpDesc>,
                  ops::ClipDoubleGradOpMaker<paddle::imperative::OpBase>);
Q
QI JUN 已提交
184
REGISTER_OP_CPU_KERNEL(
S
SunGaofeng 已提交
185
    clip, ops::ClipKernel<paddle::platform::CPUDeviceContext, float>,
186 187 188
    ops::ClipKernel<paddle::platform::CPUDeviceContext, double>,
    ops::ClipKernel<paddle::platform::CPUDeviceContext, int>,
    ops::ClipKernel<paddle::platform::CPUDeviceContext, int64_t>);
Q
QI JUN 已提交
189
REGISTER_OP_CPU_KERNEL(
S
SunGaofeng 已提交
190
    clip_grad, ops::ClipGradKernel<paddle::platform::CPUDeviceContext, float>,
191 192 193
    ops::ClipGradKernel<paddle::platform::CPUDeviceContext, double>,
    ops::ClipGradKernel<paddle::platform::CPUDeviceContext, int>,
    ops::ClipGradKernel<paddle::platform::CPUDeviceContext, int64_t>);
Z
Zhong Hui 已提交
194 195 196 197 198 199 200 201 202 203 204 205

REGISTER_OP_VERSION(clip)
    .AddCheckpoint(
        R"ROC(
              Upgrade clip add a new input [Min])ROC",
        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."));