sequence_softmax_op.h 3.6 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

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. */

#pragma once

Y
Yi Wang 已提交
17 18
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/operators/math/softmax.h"
19 20 21 22 23 24 25

namespace paddle {
namespace operators {

using Tensor = framework::Tensor;
using LoDTensor = framework::LoDTensor;

Q
QI JUN 已提交
26
template <typename DeviceContext, typename T>
27
class SequenceSoftmaxKernel : public framework::OpKernel<T> {
28 29 30 31 32 33
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
    auto* x = ctx.Input<LoDTensor>("X");
    auto* out = ctx.Output<LoDTensor>("Out");

    auto lod = x->lod();
34 35
    auto dims = x->dims();

36
    const size_t level = lod.size() - 1;
37 38 39 40
    PADDLE_ENFORCE_EQ(dims[0], static_cast<int64_t>(lod[level].back()),
                      "The first dimension of Input(X) should be equal to the "
                      "sum of all sequences' lengths.");
    PADDLE_ENFORCE_EQ(dims[0], x->numel(),
41 42
                      "The width of each timestep in Input(X) of "
                      "SequenceSoftmaxOp should be 1.");
43 44 45 46 47

    out->mutable_data<T>(ctx.GetPlace());
    for (int i = 0; i < static_cast<int>(lod[level].size()) - 1; ++i) {
      int start_pos = static_cast<int>(lod[level][i]);
      int end_pos = static_cast<int>(lod[level][i + 1]);
48 49
      Tensor x_i = x->Slice(start_pos, end_pos);
      Tensor out_i = out->Slice(start_pos, end_pos);
50

51
      // Reshape from (end_pos - start_pos) x 1UL to 1UL x (end_pos - start_pos)
52 53 54
      framework::DDim dims_i = framework::make_ddim({1UL, end_pos - start_pos});
      x_i.Resize(dims_i);
      out_i.Resize(dims_i);
Q
QI JUN 已提交
55 56
      math::SoftmaxFunctor<DeviceContext, T>()(
          ctx.template device_context<DeviceContext>(), &x_i, &out_i);
57 58 59 60
    }
  }
};

Q
QI JUN 已提交
61
template <typename DeviceContext, typename T>
62
class SequenceSoftmaxGradKernel : public framework::OpKernel<T> {
63
 public:
64 65 66 67 68
  void Compute(const framework::ExecutionContext& ctx) const override {
    auto* out = ctx.Input<LoDTensor>("Out");
    auto* out_grad = ctx.Input<LoDTensor>(framework::GradVarName("Out"));
    auto* x = ctx.Input<LoDTensor>("X");
    auto* x_grad = ctx.Output<LoDTensor>(framework::GradVarName("X"));
69 70 71
    if (x_grad) {
      x_grad->set_lod(x->lod());
    }
72 73 74 75 76 77 78 79 80

    auto lod = x->lod();
    const size_t level = lod.size() - 1;

    x_grad->mutable_data<T>(ctx.GetPlace());
    for (int i = 0; i < static_cast<int>(lod[level].size()) - 1; ++i) {
      int start_pos = static_cast<int>(lod[level][i]);
      int end_pos = static_cast<int>(lod[level][i + 1]);

81 82 83
      Tensor out_i = out->Slice(start_pos, end_pos);
      Tensor out_grad_i = out_grad->Slice(start_pos, end_pos);
      Tensor x_grad_i = x_grad->Slice(start_pos, end_pos);
84 85 86 87 88 89

      // Reshape from (end_pos - start_pos) x 1UL to 1UL x (end_pos - start_pos)
      framework::DDim dims_i = framework::make_ddim({1UL, end_pos - start_pos});
      out_i.Resize(dims_i);
      out_grad_i.Resize(dims_i);
      x_grad_i.Resize(dims_i);
Q
QI JUN 已提交
90 91 92
      math::SoftmaxGradFunctor<DeviceContext, T>()(
          ctx.template device_context<DeviceContext>(), &out_i, &out_grad_i,
          &x_grad_i);
93 94
    }
  }
95 96 97 98
};

}  // namespace operators
}  // namespace paddle