fused_embedding_seq_pool_op.cc 6.8 KB
Newer Older
M
minqiyang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2016 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. */

M
minqiyang 已提交
15
#include "paddle/fluid/operators/fused/fused_embedding_seq_pool_op.h"
M
minqiyang 已提交
16 17 18 19 20
#include "paddle/fluid/framework/var_type_inference.h"

namespace paddle {
namespace operators {

21
class FusedEmbeddingSeqPoolOp : public framework::OperatorWithKernel {
M
minqiyang 已提交
22 23 24 25 26
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

  void InferShape(framework::InferShapeContext* ctx) const override {
    PADDLE_ENFORCE(ctx->HasInput("W"),
27
                   "Input W of FusedEmbeddingSeqPoolOp should not be null.");
M
minqiyang 已提交
28
    PADDLE_ENFORCE(ctx->HasInput("Ids"),
29
                   "Input Ids of FusedEmbeddingSeqPoolOp should not be null.");
M
minqiyang 已提交
30
    PADDLE_ENFORCE(ctx->HasOutput("Out"),
31
                   "Output of FusedEmbeddingSeqPoolOp should not be null.");
M
minqiyang 已提交
32 33 34

    auto table_dims = ctx->GetInputDim("W");
    auto ids_dims = ctx->GetInputDim("Ids");
35
    const std::string& combiner = ctx->Attrs().Get<std::string>("combiner");
M
minqiyang 已提交
36 37

    PADDLE_ENFORCE_EQ(table_dims.size(), 2);
M
minqiyang 已提交
38
    PADDLE_ENFORCE_GE(ids_dims.size(), 1,
39 40
                      "The dim size of the 'Ids' tensor must greater than 1.");
    PADDLE_ENFORCE_EQ(ids_dims[ids_dims.size() - 1], 1,
M
minqiyang 已提交
41
                      "The last dimension of the 'Ids' tensor must be 1.");
42 43
    // we only support sum now
    PADDLE_ENFORCE_EQ(combiner, "sum");
M
minqiyang 已提交
44

45 46 47 48 49
    int64_t last_dim = FusedEmbeddingSeqPoolLastDim(table_dims, ids_dims);
    // in compile time, the lod level of ids must be 1
    framework::VarDesc* ids_desc =
        boost::get<framework::VarDesc*>(ctx->GetInputVarPtrs("Ids")[0]);
    PADDLE_ENFORCE_EQ(ids_desc->GetLoDLevel(), 1);
M
minqiyang 已提交
50

51 52 53
    // in compile time, the shape from Ids -> output
    // should be [-1, 1] -> [-1, embedding_size]
    ctx->SetOutputDim("Out", framework::make_ddim({-1, last_dim}));
M
minqiyang 已提交
54 55 56 57 58 59 60 61 62 63
  }

 protected:
  framework::OpKernelType GetExpectedKernelType(
      const framework::ExecutionContext& ctx) const override {
    auto data_type = framework::GetDataTypeOfVar(ctx.InputVar("W"));
    return framework::OpKernelType(data_type, ctx.device_context());
  }
};

64
class FusedEmbeddingSeqPoolOpMaker : public framework::OpProtoAndCheckerMaker {
M
minqiyang 已提交
65 66 67 68 69 70 71 72 73 74
 public:
  void Make() override {
    AddInput("W",
             "(Tensor) The input represents embedding tensors, "
             "which is a learnable parameter.");
    AddInput("Ids",
             "An input with type int32 or int64 "
             "contains the ids to be looked up in W. "
             "The last dimension size must be 1.");
    AddOutput("Out", "The lookup results, which have the same type as W.");
75 76 77 78 79 80
    AddAttr<std::string>("combiner",
                         "(string, default sum) "
                         "A string specifying the reduction op. Currently sum "
                         "are supported, sum computes the weighted sum of the "
                         "embedding results for each row.")
        .SetDefault("sum");
M
minqiyang 已提交
81 82 83 84 85 86
    // NOTE(minqiyang): grad_inplace is an temporal attribute,
    // please do NOT set this attribute in python layer.
    AddAttr<bool>("grad_inplace",
                  "(boolean, default false) "
                  "If the grad op reuse the input's variable.")
        .SetDefault(false);
M
minqiyang 已提交
87 88 89 90
    AddAttr<bool>("is_sparse",
                  "(boolean, default false) "
                  "Sparse update.")
        .SetDefault(false);
L
luotao1 已提交
91
    AddAttr<bool>(framework::kAllKernelsMustComputeRuntimeShape, "")
92
        .SetDefault(true);
M
minqiyang 已提交
93
    AddComment(R"DOC(
94 95 96
FusedEmbeddingSeqPool Operator.

Computes embeddings for the given ids and weights.
M
minqiyang 已提交
97 98

This operator is used to perform lookups on the parameter W,
99 100
then computes the weighted sum of the lookups results for each row
and concatenated into a dense tensor.
M
minqiyang 已提交
101

102 103
The input Ids should carry the LoD (Level of Details) information.
And the output will change the LoD information with input Ids.
M
minqiyang 已提交
104 105 106 107 108

)DOC");
  }
};

109
class FusedEmbeddingSeqPoolOpGradDescMaker
M
minqiyang 已提交
110 111 112 113 114
    : public framework::DefaultGradOpDescMaker<true> {
  using ::paddle::framework::DefaultGradOpDescMaker<
      true>::DefaultGradOpDescMaker;

 protected:
115 116 117
  virtual std::string GradOpType() const {
    return "fused_embedding_seq_pool_grad";
  }
M
minqiyang 已提交
118 119
};

120
class FusedEmbeddingSeqPoolOpGrad : public framework::OperatorWithKernel {
M
minqiyang 已提交
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

  void InferShape(framework::InferShapeContext* ctx) const override {
    auto table_dims = ctx->GetInputDim("W");
    ctx->SetOutputDim(framework::GradVarName("W"), table_dims);
  }

 protected:
  framework::OpKernelType GetExpectedKernelType(
      const framework::ExecutionContext& ctx) const override {
    auto data_type = framework::GetDataTypeOfVar(ctx.InputVar("W"));
    return framework::OpKernelType(data_type, ctx.device_context());
  }
};

137 138
class FusedEmbeddingSeqPoolOpGradVarTypeInference
    : public framework::VarTypeInference {
M
minqiyang 已提交
139
 public:
M
minqiyang 已提交
140 141 142
  void operator()(framework::InferVarTypeContext& ctx) const override {
    auto out_var_name = ctx.Output(framework::GradVarName("W")).front();
    auto attr = ctx.GetAttr("is_sparse");
M
minqiyang 已提交
143 144
    bool is_sparse = boost::get<bool>(attr);
    if (is_sparse) {
145 146
      VLOG(3) << "fused_embedding_seq_pool_grad op "
              << framework::GradVarName("W") << " is set to SelectedRows";
M
minqiyang 已提交
147
      ctx.SetType(out_var_name, framework::proto::VarType::SELECTED_ROWS);
M
minqiyang 已提交
148
    } else {
149 150
      VLOG(3) << "fused_embedding_seq_pool_grad op "
              << framework::GradVarName("W") << " is set to LoDTensor";
M
minqiyang 已提交
151
      ctx.SetType(out_var_name, framework::proto::VarType::LOD_TENSOR);
M
minqiyang 已提交
152
    }
M
minqiyang 已提交
153
    ctx.SetDataType(out_var_name, ctx.GetDataType(ctx.Input("W")[0]));
M
minqiyang 已提交
154 155 156 157 158 159 160
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
161 162 163 164 165 166 167 168 169 170 171 172 173
REGISTER_OPERATOR(fused_embedding_seq_pool, ops::FusedEmbeddingSeqPoolOp,
                  ops::FusedEmbeddingSeqPoolOpGradDescMaker,
                  ops::FusedEmbeddingSeqPoolOpMaker);
REGISTER_OPERATOR(fused_embedding_seq_pool_grad,
                  ops::FusedEmbeddingSeqPoolOpGrad,
                  ops::FusedEmbeddingSeqPoolOpGradVarTypeInference);

REGISTER_OP_CPU_KERNEL(fused_embedding_seq_pool,
                       ops::FusedEmbeddingSeqPoolKernel<float>,
                       ops::FusedEmbeddingSeqPoolKernel<double>);
REGISTER_OP_CPU_KERNEL(fused_embedding_seq_pool_grad,
                       ops::FusedEmbeddingSeqPoolGradKernel<float>,
                       ops::FusedEmbeddingSeqPoolGradKernel<double>);