max_sequence_len_op.cc 2.4 KB
Newer Older
L
Luo Tao 已提交
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
F
fengjiayi 已提交
2

L
Luo Tao 已提交
3 4 5
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
F
fengjiayi 已提交
6

L
Luo Tao 已提交
7
    http://www.apache.org/licenses/LICENSE-2.0
F
fengjiayi 已提交
8

L
Luo Tao 已提交
9 10 11 12 13
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. */
F
fengjiayi 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

#include "paddle/framework/lod_rank_table.h"
#include "paddle/framework/op_registry.h"
#include "paddle/framework/operator.h"

namespace paddle {
namespace operators {

class MaxSeqenceLenOp : public framework::OperatorBase {
 public:
  MaxSeqenceLenOp(const std::string &type,
                  const framework::VariableNameMap &inputs,
                  const framework::VariableNameMap &outputs,
                  const framework::AttributeMap &attrs)
      : OperatorBase(type, inputs, outputs, attrs) {}

  void Run(const framework::Scope &scope,
D
dzhwinter 已提交
31
           const platform::Place &dev_place) const override {
F
fengjiayi 已提交
32 33 34 35 36 37 38 39 40 41 42
    auto &rank_table =
        scope.FindVar(Input("RankTable"))->Get<framework::LoDRankTable>();
    auto *out =
        scope.FindVar(Output("Out"))->GetMutable<framework::LoDTensor>();
    int64_t *out_ptr = out->mutable_data<int64_t>({1}, platform::CPUPlace());
    *out_ptr = rank_table.items()[0].length;
  }
};

class MaxSeqenceLenOpProtoMaker : public framework::OpProtoAndCheckerMaker {
 public:
43
  MaxSeqenceLenOpProtoMaker(OpProto *proto, OpAttrChecker *op_checker)
F
fengjiayi 已提交
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
      : OpProtoAndCheckerMaker(proto, op_checker) {
    AddInput("RankTable", "The lod_rank_table.");
    AddOutput("Out", "The max sequence length.");
    AddComment(
        R"DOC(Calculate the max sequence length through lod_rank_table.)DOC");
  }
};

class MaxSeqenceLenInferShape : public framework::InferShapeBase {
 public:
  void operator()(framework::InferShapeContext *context) const override {
    PADDLE_ENFORCE(context->HasInput("RankTable"));
    context->SetOutputDim("Out", {1});
  }
};
}  // namespace operators
}  // namespace paddle

REGISTER_OPERATOR(max_sequence_len, paddle::operators::MaxSeqenceLenOp,
                  paddle::operators::MaxSeqenceLenOpProtoMaker,
                  paddle::operators::MaxSeqenceLenInferShape,
                  paddle::framework::EmptyGradOpMaker);