squared_l2_distance_op.cc 4.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

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/operators/squared_l2_distance_op.h"

namespace paddle {
namespace operators {

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

 protected:
25
  void InferShape(const framework::InferShapeContext& ctx) const override {
26 27 28
    PADDLE_ENFORCE_NOT_NULL(ctx.InputVar("X"),
                            "Input of SquaredL2DistanceOp "
                            "must be initialized.");
29 30 31 32
    PADDLE_ENFORCE_NOT_NULL(ctx.InputVar("Y"),
                            "Target of SquaredL2DistanceOp "
                            "must be initialized.");

33 34 35 36
    auto* x = ctx.Input<Tensor>("X");
    auto x_dims = x->dims();
    auto* y = ctx.Input<Tensor>("Y");
    auto y_dims = y->dims();
37

38
    PADDLE_ENFORCE_EQ(framework::arity(x_dims), framework::arity(y_dims),
39 40
                      "Tensor rank of both SquaredL2DistanceOp's "
                      "inputs must be same.");
41 42 43 44 45 46 47 48

    int rank = framework::arity(x_dims);
    PADDLE_ENFORCE(rank >= 2, "Tensor rank should be at least equal to 2.");
    PADDLE_ENFORCE_EQ(framework::product(x_dims) / x_dims[0],
                      framework::product(y_dims) / y_dims[0],
                      "Product of dimensions expcet the first dimension of "
                      "input and target must be equal.");
    PADDLE_ENFORCE(y_dims[0] == 1 || y_dims[0] == x_dims[0],
49 50 51
                   "First dimension of target must be equal to input "
                   "or to 1.");

52 53
    ctx.Output<Tensor>("sub_result")->Resize(x_dims);
    ctx.Output<Tensor>("Out")->Resize({x_dims[0], 1});
54 55 56 57 58
  }
};

class SquaredL2DistanceOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
59 60
  SquaredL2DistanceOpMaker(framework::OpProto* proto,
                           framework::OpAttrChecker* op_checker)
61
      : OpProtoAndCheckerMaker(proto, op_checker) {
62 63
    AddInput("X", "Input of SquaredL2DistanceOp.");
    AddInput("Y", "Target of SquaredL2DistanceOp.");
64 65 66 67 68 69
    AddOutput("sub_result",
              "Buffering substraction result which "
              "will be reused in backward.")
        .AsIntermediate();
    AddOutput("Out", "Squared l2 distance between input and target.");
    AddComment(R"DOC(
70
    SquaredL2DistanceOp will cacluate the squared L2 distance for
71
    input and target. Number of distance value equals to the
72 73
    first dimension of input. First dimension of target could be equal to
    input or to 1. If the first dimension of target is 1, SquaredL2DistanceOp
74 75
    will broadcast target's first dimension to input's first dimension.
    You can decide whether calculate the gradient of input and target.
76 77 78 79 80 81 82 83 84
    )DOC");
  }
};

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

 protected:
85 86 87 88
  void InferShape(const framework::InferShapeContext& ctx) const override {
    PADDLE_ENFORCE_NOT_NULL(ctx.InputVar(framework::GradVarName("Out")),
                            "Gradient of Out should not be null");
    // check out grad dimensions
89 90 91 92
    auto out_dims = ctx.Input<Tensor>(framework::GradVarName("Out"))->dims();
    auto x_dims = ctx.Input<Tensor>("X")->dims();
    auto y_dims = ctx.Input<Tensor>("Y")->dims();
    PADDLE_ENFORCE_EQ(out_dims[0], x_dims[0],
93 94
                      "First dimension of output gradient and "
                      "input value must be equal.");
95
    PADDLE_ENFORCE_EQ(out_dims[1], 1,
96 97
                      "Second dimension of output gradient "
                      "must be 1.");
98 99 100 101
    auto* x_grad = ctx.Output<Tensor>(framework::GradVarName("X"));
    auto* y_grad = ctx.Output<Tensor>(framework::GradVarName("Y"));
    if (x_grad != nullptr) x_grad->Resize(x_dims);
    if (y_grad != nullptr) y_grad->Resize(y_dims);
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
REGISTER_OP(squared_l2_distance, ops::SquaredL2DistanceOp,
            ops::SquaredL2DistanceOpMaker, squared_l2_distance_grad,
            ops::SquaredL2DistanceGradOp);
REGISTER_OP_CPU_KERNEL(
    squared_l2_distance,
    ops::SquaredL2DistanceKernel<paddle::platform::CPUPlace, float>);
REGISTER_OP_CPU_KERNEL(
    squared_l2_distance_grad,
    ops::SquaredL2DistanceGradKernel<paddle::platform::CPUPlace, float>);