// Copyright (c) 2018 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 "paddle/fluid/inference/anakin/convert/density_prior_box.h" #include #include #include using anakin::graph::GraphGlobalMem; using anakin::AK_FLOAT; using anakin::saber::NV; using anakin::saber::Shape; using anakin::PTuple; namespace paddle { namespace inference { namespace anakin { void DensityPriorBoxOpConverter::operator()(const framework::proto::OpDesc &op, const framework::Scope &scope, bool test_mode) { framework::OpDesc op_desc(op, nullptr); auto input_name = op_desc.Input("Input").front(); auto image_name = op_desc.Input("Image").front(); auto output_name = op_desc.Output("Boxes").front(); auto op_name = op_desc.Type() + ":" + op_desc.Output("Boxes").front(); auto fixed_sizes = boost::get>(op_desc.GetAttr("fixed_sizes")); auto fixed_ratios = boost::get>(op_desc.GetAttr("fixed_ratios")); auto densities = boost::get>(op_desc.GetAttr("densities")); // lack flip auto clip = boost::get(op_desc.GetAttr("clip")); auto variances = boost::get>(op_desc.GetAttr("variances")); // lack img_h, img_w auto step_h = boost::get(op_desc.GetAttr("step_h")); auto step_w = boost::get(op_desc.GetAttr("step_w")); auto offset = boost::get(op_desc.GetAttr("offset")); std::vector order = {"MIN", "COM", "MAX"}; std::vector temp_v = {}; engine_->AddOp(op_name, "PriorBox", {input_name, image_name}, {output_name}); engine_->AddOpAttr>(op_name, "min_size", temp_v); engine_->AddOpAttr>(op_name, "max_size", temp_v); engine_->AddOpAttr>(op_name, "aspect_ratio", temp_v); engine_->AddOpAttr>(op_name, "fixed_sizes", fixed_sizes); engine_->AddOpAttr>(op_name, "fixed_ratios", fixed_ratios); engine_->AddOpAttr>(op_name, "density", densities); engine_->AddOpAttr(op_name, "is_flip", false); engine_->AddOpAttr(op_name, "is_clip", clip); engine_->AddOpAttr>(op_name, "variance", variances); engine_->AddOpAttr(op_name, "img_h", static_cast(0)); engine_->AddOpAttr(op_name, "img_w", static_cast(0)); engine_->AddOpAttr(op_name, "step_h", step_h); engine_->AddOpAttr(op_name, "step_w", step_w); engine_->AddOpAttr(op_name, "offset", offset); engine_->AddOpAttr>(op_name, "order", order); } } // namespace anakin } // namespace inference } // namespace paddle REGISTER_ANAKIN_OP_CONVERTER(density_prior_box, DensityPriorBoxOpConverter);