sequence_pool_op.h 4.3 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

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
16
#include <string>
17

Y
Yi Wang 已提交
18 19 20
#include "paddle/fluid/framework/eigen.h"
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/operators/math/sequence_pooling.h"
21
#include "paddle/phi/kernels/funcs/math_function.h"
22 23 24 25

namespace paddle {
namespace operators {

Q
QI JUN 已提交
26
template <typename DeviceContext, typename T>
Y
Yu Yang 已提交
27
class SequencePoolKernel : public framework::OpKernel<T> {
28 29
 public:
  void Compute(const framework::ExecutionContext& context) const override {
柠檬味~ 已提交
30 31
    auto* in = context.Input<phi::DenseTensor>("X");
    auto* out = context.Output<phi::DenseTensor>("Out");
D
dzhwinter 已提交
32
    std::string pooltype = context.Attr<std::string>("pooltype");
33
    T pad_value = static_cast<T>(context.Attr<float>("pad_value"));
34 35

    auto dims = in->dims();
Q
Qiao Longfei 已提交
36
    auto lod = in->lod();
37
    auto lod_level = lod.size();
Q
Qiao Longfei 已提交
38
    // InferShape by lod
柠檬味~ 已提交
39 40 41 42 43
    PADDLE_ENFORCE_GT(lod_level,
                      0,
                      platform::errors::InvalidArgument(
                          "Input(X) phi::DenseTensor of SequencePoolOp "
                          "does not contain LoD information."));
44 45
    PADDLE_ENFORCE_LE(lod_level,
                      2UL,
46 47 48 49
                      platform::errors::InvalidArgument(
                          "The lod level of input shall be no more than 2."
                          "Received lod level is %d.",
                          lod_level));
Q
Qiao Longfei 已提交
50 51
    PADDLE_ENFORCE_GE(
        dims[0],
52
        /*batch size = */ static_cast<int64_t>(lod[lod_level - 1].size() - 1),
53 54 55 56
        platform::errors::InvalidArgument(
            "The first dimension of Input(X) must be large than batch size."
            "But received first dimension of Input(X) is %d, while batch"
            "size is %d.",
57 58
            dims[0],
            static_cast<int64_t>(lod[lod_level - 1].size() - 1)));
59
    if (lod_level > 1UL) {
60 61
      PADDLE_ENFORCE_EQ(lod[0][lod[0].size() - 1],
                        lod[1].size() - 1,
62 63
                        platform::errors::InvalidArgument(
                            "The input lod information is illegal."));
64 65 66 67 68
      framework::LoD out_lod;
      out_lod.push_back(lod[0]);
      out->set_lod(out_lod);
    }
    dims[0] = lod[lod_level - 1].size() - 1;
Q
Qiao Longfei 已提交
69
    out->Resize({dims});
70
    out->mutable_data<T>(context.GetPlace());
71
    phi::DenseTensor* index = nullptr;
J
Jacek Czaja 已提交
72

73 74
    bool is_test =
        context.HasAttr("is_test") ? context.Attr<bool>("is_test") : false;
J
Jacek Czaja 已提交
75

76
    // Do not create index buffer for inference mode
J
Jacek Czaja 已提交
77 78 79
    if (pooltype == "MAX" &&
        (is_test == false ||
         platform::is_cpu_place(context.GetPlace()) == false)) {
80
      index = context.Output<phi::DenseTensor>("MaxIndex");
81 82
      index->Resize({dims});
      index->mutable_data<int>(context.GetPlace());
83
    }
D
dzhwinter 已提交
84
    math::SequencePoolFunctor<DeviceContext, T> pool;
85 86 87 88 89 90 91
    pool(context.template device_context<DeviceContext>(),
         pooltype,
         pad_value,
         *in,
         out,
         is_test,
         index);
92 93 94
  }
};

Q
QI JUN 已提交
95
template <typename DeviceContext, typename T>
Y
Yu Yang 已提交
96
class SequencePoolGradKernel : public framework::OpKernel<T> {
97 98
 public:
  void Compute(const framework::ExecutionContext& context) const override {
柠檬味~ 已提交
99 100 101
    auto* out_g =
        context.Input<phi::DenseTensor>(framework::GradVarName("Out"));
    auto* in_g = context.Output<phi::DenseTensor>(framework::GradVarName("X"));
D
dzhwinter 已提交
102
    std::string pooltype = context.Attr<std::string>("pooltype");
103
    const phi::DenseTensor* index = nullptr;
104
    if (pooltype == "MAX") {
105
      index = context.Input<phi::DenseTensor>("MaxIndex");
106
    }
D
dzhwinter 已提交
107 108
    in_g->mutable_data<T>(context.GetPlace());
    math::SequencePoolGradFunctor<DeviceContext, T> pool;
109 110 111 112 113
    pool(context.template device_context<DeviceContext>(),
         pooltype,
         *out_g,
         in_g,
         index);
114 115 116 117 118
  }
};

}  // namespace operators
}  // namespace paddle