sequence_unpad_op.h 3.6 KB
Newer Older
Y
Yibing Liu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.

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

#include <vector>
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/memory/memcpy.h"
#include "paddle/fluid/operators/math/math_function.h"
#include "paddle/fluid/operators/math/sequence_padding.h"

namespace paddle {
namespace operators {

using LoDTensor = framework::LoDTensor;
using LoD = framework::LoD;

template <typename DeviceContext, typename T>
class SequenceUnpadOpKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
    auto* x_t = ctx.Input<LoDTensor>("X");
    auto* len_t = ctx.Input<LoDTensor>("Length");
    auto* out_t = ctx.Output<LoDTensor>("Out");

37 38 39
    auto& dev_ctx = ctx.template device_context<DeviceContext>();
    framework::Tensor seq_len_cpu =
        ctx.AllocateTmpTensor<T, DeviceContext>(len_t->dims(), dev_ctx);
Y
Yibing Liu 已提交
40
    if (platform::is_gpu_place(ctx.GetPlace())) {
41 42
      seq_len_cpu.mutable_data<int64_t>(platform::CPUPlace());
      framework::TensorCopySync(*len_t, platform::CPUPlace(), &seq_len_cpu);
Y
Yibing Liu 已提交
43
    } else {
44
      seq_len_cpu = *len_t;
Y
Yibing Liu 已提交
45 46
    }

47 48
    const int64_t* seq_len_ptr = seq_len_cpu.data<int64_t>();
    int64_t batch_size = len_t->dims()[0];
Y
Yibing Liu 已提交
49
    std::vector<size_t> out_lod0(batch_size + 1, 0);
50 51
    for (int64_t i = 0; i < batch_size; ++i) {
      out_lod0[i + 1] = out_lod0[i] + static_cast<size_t>(seq_len_ptr[i]);
Y
Yibing Liu 已提交
52 53 54 55 56 57 58 59 60
    }

    framework::LoD out_lod;
    out_lod.push_back(out_lod0);
    out_t->set_lod(out_lod);
    std::vector<int64_t> out_dims_vec{static_cast<int64_t>(out_lod0.back())};
    if (x_t->dims().size() == 2) {
      out_dims_vec.push_back(1);
    } else {
T
Tao Luo 已提交
61
      for (int i = 2; i < x_t->dims().size(); ++i) {
Y
Yibing Liu 已提交
62 63 64 65 66
        out_dims_vec.push_back(x_t->dims()[i]);
      }
    }
    out_t->Resize(framework::make_ddim(out_dims_vec));

W
wawltor 已提交
67 68 69
    // after set the lod of output, allocate the memory
    out_t->mutable_data<T>(ctx.GetPlace());

Y
Yibing Liu 已提交
70 71
    int64_t padded_length = x_t->dims()[1];
    math::UnpaddingLoDTensorFunctor<DeviceContext, T>()(
72 73
        dev_ctx, *x_t, out_t, padded_length, 0, false, false, false,
        math::kBatchLengthWidth);
Y
Yibing Liu 已提交
74 75 76 77 78 79 80 81 82 83 84 85
  }
};

template <typename DeviceContext, typename T>
class SequenceUnpadGradOpKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
    auto* d_x = ctx.Output<LoDTensor>(framework::GradVarName("X"));
    if (d_x) {
      const auto* d_out = ctx.Input<LoDTensor>(framework::GradVarName("Out"));
      d_x->mutable_data<T>(ctx.GetPlace());

86
      int padded_length = d_x->dims()[1];
Y
Yibing Liu 已提交
87 88 89 90 91 92 93 94 95 96

      LoDTensor zero_pads;
      zero_pads.Resize({1, 1});
      zero_pads.mutable_data<T>(ctx.GetPlace());
      math::SetConstant<DeviceContext, T> set_zero;
      auto& dev_ctx = ctx.template device_context<DeviceContext>();
      set_zero(dev_ctx, &zero_pads, static_cast<T>(0));

      math::PaddingLoDTensorFunctor<DeviceContext, T>()(
          ctx.template device_context<DeviceContext>(), *d_out, d_x, zero_pads,
97
          padded_length, 0, false, false, false, math::kBatchLengthWidth);
Y
Yibing Liu 已提交
98 99 100 101 102 103
    }
  }
};

}  // namespace operators
}  // namespace paddle