squared_l2_norm_op.h 2.4 KB
Newer Older
1 2
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

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
6

L
Luo Tao 已提交
7
    http://www.apache.org/licenses/LICENSE-2.0
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. */
14 15 16 17 18 19 20 21 22

#pragma once
#include "paddle/framework/eigen.h"
#include "paddle/framework/op_registry.h"

namespace paddle {
namespace operators {

// Out = sum(square(X))
Q
QI JUN 已提交
23
template <typename DeviceContext, typename T>
24 25 26 27 28 29 30 31
class SquaredL2NormKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext &context) const override {
    const framework::Tensor *X = context.Input<framework::Tensor>("X");
    framework::Tensor *Out = context.Output<framework::Tensor>("Out");
    Out->mutable_data<T>(context.GetPlace());

    auto x = framework::EigenVector<T>::Flatten(*X);
32
    auto out = framework::EigenScalar<T>::From(*Out);
Q
QI JUN 已提交
33 34
    auto *place =
        context.template device_context<DeviceContext>().eigen_device();
35

Q
QI JUN 已提交
36
    out.device(*place) = x.square().sum();
37 38 39 40
  }
};

// dX = X
Q
QI JUN 已提交
41
template <typename DeviceContext, typename T>
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
class SquaredL2NormGradKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext &context) const override {
    const framework::Tensor *X = context.Input<framework::Tensor>("X");
    const framework::Tensor *dOut =
        context.Input<framework::Tensor>(framework::GradVarName("Out"));
    PADDLE_ENFORCE(dOut->numel() == 1,
                   "Squared L2 Norm Gradient should be scalar");
    framework::Tensor *dX =
        context.Output<framework::Tensor>(framework::GradVarName("X"));
    dX->mutable_data<T>(context.GetPlace());

    auto x = framework::EigenVector<T>::Flatten(*X);
    auto dout = framework::EigenVector<T>::Flatten(*dOut);
    auto dx = framework::EigenVector<T>::Flatten(*dX);
Q
QI JUN 已提交
57 58
    auto *place =
        context.template device_context<DeviceContext>().eigen_device();
59 60

    Eigen::DSizes<int, 1> x_dsize(X->numel());
Q
QI JUN 已提交
61
    dx.device(*place) = (dout.broadcast(x_dsize) * x) * static_cast<T>(2.0);
62 63 64 65 66
  }
};

}  // namespace operators
}  // namespace paddle