// Copyright (c) 2019 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. #include "lite/operators/beam_search_op.h" #include "lite/core/op_registry.h" namespace paddle { namespace lite { namespace operators { bool BeamSearchOp::CheckShape() const { CHECK_OR_FALSE(param_.pre_ids); CHECK_OR_FALSE(param_.pre_scores); CHECK_OR_FALSE(param_.ids); CHECK_OR_FALSE(param_.scores); CHECK_OR_FALSE(param_.selected_ids); CHECK_OR_FALSE(param_.selected_scores); CHECK_OR_FALSE(param_.parent_idx); return true; } bool BeamSearchOp::InferShape() const { return true; } bool BeamSearchOp::AttachImpl(const cpp::OpDesc &opdesc, lite::Scope *scope) { param_.pre_ids = scope->FindVar(opdesc.Input("pre_ids").front()) ->GetMutable(); param_.pre_scores = scope->FindVar(opdesc.Input("pre_scores").front()) ->GetMutable(); param_.ids = scope->FindVar(opdesc.Input("ids").front())->GetMutable(); param_.scores = scope->FindVar(opdesc.Input("scores").front()) ->GetMutable(); param_.selected_ids = scope->FindVar(opdesc.Output("selected_ids").front()) ->GetMutable(); param_.selected_scores = scope->FindVar(opdesc.Output("selected_scores").front()) ->GetMutable(); param_.parent_idx = scope->FindVar(opdesc.Output("parent_idx").front()) ->GetMutable(); CHECK(param_.pre_ids) << "id null"; CHECK(param_.pre_scores) << "pre score null"; CHECK(param_.ids) << "ids null"; CHECK(param_.scores) << "scores null"; CHECK(param_.selected_ids) << "select ids null"; CHECK(param_.selected_scores) << "select score null"; CHECK(param_.parent_idx) << "parent idx null"; param_.level = opdesc.GetAttr("level"); param_.beam_size = opdesc.GetAttr("beam_size"); param_.end_id = opdesc.GetAttr("end_id"); param_.is_accumulated = opdesc.GetAttr("is_accumulated"); return true; } } // namespace operators } // namespace lite } // namespace paddle REGISTER_LITE_OP(beam_search, paddle::lite::operators::BeamSearchOp);