rank_loss_op.h 3.2 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Y
Yibing Liu 已提交
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
Y
Yibing Liu 已提交
6

L
Luo Tao 已提交
7
    http://www.apache.org/licenses/LICENSE-2.0
Y
Yibing Liu 已提交
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. */
Y
Yibing Liu 已提交
14 15 16

#pragma once

Y
Yi Wang 已提交
17 18
#include "paddle/fluid/framework/eigen.h"
#include "paddle/fluid/framework/op_registry.h"
19
#include "paddle/fluid/operators/eigen/eigen_function.h"
Y
Yibing Liu 已提交
20 21 22 23

namespace paddle {
namespace operators {

Q
QI JUN 已提交
24
template <typename DeviceContext, typename T>
Y
Yu Yang 已提交
25
class RankLossKernel : public framework::OpKernel<T> {
Y
Yibing Liu 已提交
26 27
 public:
  void Compute(const framework::ExecutionContext& ctx) const {
D
dangqingqing 已提交
28
    auto* out_t = ctx.Output<framework::Tensor>("Out");
Y
Yibing Liu 已提交
29 30 31 32
    auto* label_t = ctx.Input<framework::Tensor>("Label");
    auto* left_t = ctx.Input<framework::Tensor>("Left");
    auto* right_t = ctx.Input<framework::Tensor>("Right");
    out_t->mutable_data<T>(ctx.GetPlace());
Y
Yibing Liu 已提交
33

Y
Yibing Liu 已提交
34 35 36 37
    auto out = framework::EigenVector<T>::Flatten(*out_t);
    auto label = framework::EigenVector<T>::Flatten(*label_t);
    auto left = framework::EigenVector<T>::Flatten(*left_t);
    auto right = framework::EigenVector<T>::Flatten(*right_t);
Y
Yibing Liu 已提交
38

Q
QI JUN 已提交
39
    auto& dev = *ctx.template device_context<DeviceContext>().eigen_device();
40 41
    EigenRankLoss<std::decay_t<decltype(dev)>, T>::Eval(
        dev, out, label, left, right);
Y
Yibing Liu 已提交
42 43 44
  }
};

Q
QI JUN 已提交
45
template <typename DeviceContext, typename T>
Y
Yu Yang 已提交
46
class RankLossGradKernel : public framework::OpKernel<T> {
Y
Yibing Liu 已提交
47 48
 public:
  void Compute(const framework::ExecutionContext& ctx) const {
Y
Yibing Liu 已提交
49
    auto* d_left_t =
D
dangqingqing 已提交
50
        ctx.Output<framework::Tensor>(framework::GradVarName("Left"));
Y
Yibing Liu 已提交
51
    auto* d_right_t =
D
dangqingqing 已提交
52
        ctx.Output<framework::Tensor>(framework::GradVarName("Right"));
Y
Yibing Liu 已提交
53

Y
Yibing Liu 已提交
54 55 56 57
    auto* d_out_t = ctx.Input<framework::Tensor>(framework::GradVarName("Out"));
    auto* label_t = ctx.Input<framework::Tensor>("Label");
    auto* left_t = ctx.Input<framework::Tensor>("Left");
    auto* right_t = ctx.Input<framework::Tensor>("Right");
Y
Yibing Liu 已提交
58

Q
QI JUN 已提交
59
    auto& dev = *ctx.template device_context<DeviceContext>().eigen_device();
Y
Yibing Liu 已提交
60 61 62 63 64 65 66 67 68
    auto d_out = framework::EigenVector<T>::Flatten(*d_out_t);
    auto label = framework::EigenVector<T>::Flatten(*label_t);
    auto left = framework::EigenVector<T>::Flatten(*left_t);
    auto right = framework::EigenVector<T>::Flatten(*right_t);

    // compute d_left
    if (d_left_t) {
      d_left_t->mutable_data<T>(ctx.GetPlace());
      auto d_left = framework::EigenVector<T>::Flatten(*d_left_t);
69 70
      EigenRankLossGrad<std::decay_t<decltype(dev)>, T>::EvalLeft(
          dev, d_left, d_out, label, left, right);
Y
Yibing Liu 已提交
71 72 73 74 75
    }
    // compute d_right
    if (d_right_t) {
      d_right_t->mutable_data<T>(ctx.GetPlace());
      auto d_right = framework::EigenVector<T>::Flatten(*d_right_t);
76 77
      EigenRankLossGrad<std::decay_t<decltype(dev)>, T>::EvalRight(
          dev, d_right, d_out, label, left, right);
Y
Yibing Liu 已提交
78
    }
Y
Yibing Liu 已提交
79 80 81 82
  }
};
}  // namespace operators
}  // namespace paddle