beam_search_decode_op_xpu.cc 4.2 KB
Newer Older
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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
/* 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. */

#ifdef PADDLE_WITH_XPU

#include "paddle/fluid/operators/beam_search_decode_op_xpu.h"
#include "paddle/fluid/framework/op_registry.h"

namespace paddle {
namespace operators {

template <typename DeviceContext, typename T>
class BeamSearchDecodeXPUKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& context) const override {
    const LoDTensorArray* ids = context.Input<LoDTensorArray>("Ids");
    const LoDTensorArray* scores = context.Input<LoDTensorArray>("Scores");
    const size_t step_num = ids->size();
    PADDLE_ENFORCE_GT(
        step_num,
        0UL,
        platform::errors::InvalidArgument(
            "beam search steps, which is the"
            "size of Input(Ids) LoDTensorArray. beam search steps should "
            "be larger than 0, but received %d. ",
            step_num));

    const size_t source_num = ids->at(0).lod().at(0).size() - 1;
    PADDLE_ENFORCE_GT(
        source_num,
        0UL,
        platform::errors::InvalidArgument(
            "source_num is the sequence number of the"
            "first decoding step, indicating by Input(Ids)[0].lod[0].size. "
            "The number of source_num should be larger than"
            "0, but received %d. ",
            source_num));

    for (size_t i = 0; i < step_num; ++i) {
      PADDLE_ENFORCE_EQ(
          ids->at(i).lod().size(),
          2UL,
          platform::errors::InvalidArgument(
              "For the i step in beam search steps,"
              "the size of Input(Ids)[i].lod() should larger than 2,"
              "but received %d. ",
              ids->at(i).lod().size()));
    }

    size_t beam_size = context.Attr<int>("beam_size");
    int end_id = context.Attr<int>("end_id");

    // prepare output
    LoDTensor* sentenceIds = nullptr;
    LoDTensor* sentenceScores = nullptr;

    LoDTensor* sentenceIds_temp = context.Output<LoDTensor>("SentenceIds");
    LoDTensor* sentenceScores_temp =
        context.Output<LoDTensor>("SentenceScores");

    if (platform::is_xpu_place(ids->at(0).place())) {
      sentenceIds = new LoDTensor();
      sentenceIds->set_lod(sentenceIds_temp->lod());
    }

    if (platform::is_xpu_place(ids->at(0).place())) {
      sentenceScores = new LoDTensor();
      sentenceScores->set_lod(sentenceScores_temp->lod());
    }

    BeamSearchDecodeXPUFunctor bs_xpu(
        *ids, *scores, sentenceIds, sentenceScores, beam_size, end_id);
    bs_xpu.apply_xpu<T>();

    if (platform::is_xpu_place(ids->at(0).place())) {
      int r = 0;
      r = CopyTensorByXPU<int64_t>(
          *sentenceIds, sentenceIds_temp, 1, ids->at(0).place());
      PADDLE_ENFORCE_EQ(
          r,
          xpu::Error_t::SUCCESS,
          platform::errors::External(
              "Execute function CopyTensorByXPU failed by [%d]", r));

      r = CopyTensorByType(
          *sentenceScores, sentenceScores_temp, 1, ids->at(0).place());
      PADDLE_ENFORCE_EQ(
          r,
          xpu::Error_t::SUCCESS,
          platform::errors::External(
              "Execute function CopyTensorByXPU failed by [%d]", r));
    }
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
REGISTER_OP_XPU_KERNEL(
    beam_search_decode,
    ops::BeamSearchDecodeXPUKernel<paddle::platform::XPUDeviceContext, float>,
    ops::BeamSearchDecodeXPUKernel<paddle::platform::XPUDeviceContext, double>,
    ops::BeamSearchDecodeXPUKernel<paddle::platform::XPUDeviceContext,
                                   paddle::platform::float16>,
    ops::BeamSearchDecodeXPUKernel<paddle::platform::XPUDeviceContext, int>,
    ops::BeamSearchDecodeXPUKernel<paddle::platform::XPUDeviceContext,
                                   int64_t>);
#endif