You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
3.1 KiB
86 lines
3.1 KiB
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
|
|
|
|
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. */
|
|
|
|
#include "paddle/operators/lookup_table_op.h"
|
|
|
|
namespace paddle {
|
|
namespace operators {
|
|
|
|
class LookupTableOp : public framework::OperatorWithKernel {
|
|
public:
|
|
using framework::OperatorWithKernel::OperatorWithKernel;
|
|
|
|
protected:
|
|
void InferShape(const framework::InferShapeContext &ctx) const override {
|
|
PADDLE_ENFORCE_NOT_NULL(ctx.InputVar("W"),
|
|
"Input(W) of LookupTableOp should not be null.");
|
|
PADDLE_ENFORCE_NOT_NULL(ctx.InputVar("Ids"),
|
|
"Input(Ids) of LookupTableOp should not be null.");
|
|
PADDLE_ENFORCE_NOT_NULL(ctx.OutputVar("Out"),
|
|
"Output(Out) of LookupTableOp should not be null.");
|
|
|
|
auto table_t = ctx.Input<Tensor>("W");
|
|
auto ids_t = ctx.Input<Tensor>("Ids");
|
|
auto output_t = ctx.Output<framework::Tensor>("Out");
|
|
|
|
output_t->Resize({ids_t->dims()[0], table_t->dims()[1]});
|
|
ctx.ShareLoD("Ids", /*->*/ "Out");
|
|
}
|
|
};
|
|
|
|
class LookupTableOpMaker : public framework::OpProtoAndCheckerMaker {
|
|
public:
|
|
LookupTableOpMaker(framework::OpProto *proto,
|
|
framework::OpAttrChecker *op_checker)
|
|
: OpProtoAndCheckerMaker(proto, op_checker) {
|
|
AddInput("W",
|
|
"An 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.");
|
|
AddOutput("Out", "The lookup results, which have the same type with W.");
|
|
AddComment(R"DOC(
|
|
This operator is used to perform lookups on the parameter W,
|
|
then concatenated into a dense tensor.
|
|
|
|
The input `Ids` can carry the LoD (Level of Details) information,
|
|
or not. And the output only shares the LoD with input `Ids`.
|
|
)DOC");
|
|
}
|
|
};
|
|
|
|
class LookupTableOpGrad : public framework::OperatorWithKernel {
|
|
public:
|
|
using framework::OperatorWithKernel::OperatorWithKernel;
|
|
|
|
protected:
|
|
void InferShape(const framework::InferShapeContext &context) const override {
|
|
auto table = context.Input<Tensor>("W");
|
|
auto d_table =
|
|
context.Output<framework::Tensor>(framework::GradVarName("W"));
|
|
d_table->Resize(table->dims());
|
|
}
|
|
};
|
|
|
|
} // namespace operators
|
|
} // namespace paddle
|
|
|
|
namespace ops = paddle::operators;
|
|
REGISTER_OP(lookup_table, ops::LookupTableOp, ops::LookupTableOpMaker,
|
|
lookup_table_grad, ops::LookupTableOpGrad);
|
|
|
|
REGISTER_OP_CPU_KERNEL(lookup_table, ops::LookupTableKernel<float>);
|
|
REGISTER_OP_CPU_KERNEL(lookup_table_grad, ops::LookupTableGradKernel<float>);
|