/* 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. */ #pragma once #include #include "framework/operator.h" #include "operators/op_param.h" namespace paddle_mobile { namespace operators { #ifdef ANCHOR_GENERATOR_OP template class AnchorGeneratorParam : public OpParam { public: AnchorGeneratorParam(const VariableNameMap &inputs, const VariableNameMap &outputs, const AttributeMap &attrs, Scope *scope) : OpParam(inputs, outputs, attrs, scope) { input_ = OpParam::GetVarValue("Input", inputs, *scope); output_anchors_ = OpParam::GetVarValue("Anchors", outputs, *scope); output_variances_ = OpParam::GetVarValue( "Variances", outputs, *scope); anchor_sizes_ = OpParam::GetAttr>("anchor_sizes", attrs); aspect_ratios_ = OpParam::GetAttr>("aspect_ratios", attrs); variances_ = OpParam::GetAttr>("variances", attrs); stride_ = OpParam::GetAttr>("stride", attrs); offset_ = OpParam::GetAttr("offset", attrs); } public: // input framework::Tensor *input_; // outputs framework::Tensor *output_anchors_; framework::Tensor *output_variances_; std::vector anchor_sizes_; std::vector aspect_ratios_; std::vector variances_; std::vector stride_; float offset_; }; DECLARE_KERNEL(AnchorGenerator, AnchorGeneratorParam); #endif #ifdef PROPOSAL_OP template class ProposalParam : public OpParam { public: ProposalParam(const VariableNameMap &inputs, const VariableNameMap &outputs, const AttributeMap &attrs, Scope *scope) : OpParam(inputs, outputs, attrs, scope) { scores_ = OpParam::GetVarValue("Scores", inputs, *scope); bbox_deltas_ = OpParam::GetVarValue("BboxDeltas", inputs, *scope); im_info_ = OpParam::GetVarValue("ImInfo", inputs, *scope); anchors_ = OpParam::GetVarValue("Anchors", inputs, *scope); variances_ = OpParam::GetVarValue("Variances", inputs, *scope); rpn_rois_ = OpParam::GetVarValue("RpnRois", outputs, *scope); rpn_probs_ = OpParam::GetVarValue("RpnRoiProbs", outputs, *scope); pre_nms_topn_ = OpParam::GetAttr("pre_nms_topN", attrs); post_nms_topn_ = OpParam::GetAttr("post_nms_topN", attrs); nms_thresh_ = OpParam::GetAttr("nms_thresh", attrs); min_size_ = OpParam::GetAttr("min_size", attrs); eta_ = OpParam::GetAttr("eta", attrs); } public: framework::Tensor *scores_; framework::Tensor *bbox_deltas_; framework::Tensor *im_info_; framework::Tensor *anchors_; framework::Tensor *variances_; std::shared_ptr score_index_; framework::LoDTensor *rpn_rois_; framework::LoDTensor *rpn_probs_; int pre_nms_topn_; int post_nms_topn_; float nms_thresh_; float min_size_; float eta_; #ifdef PADDLE_MOBILE_FPGA std::shared_ptr float_score, float_bbox; fpga::BypassArgs score_arg, bbox_arg; #endif }; DECLARE_KERNEL(Proposal, ProposalParam); #endif #ifdef PSROI_POOL_OP template class PSRoiPoolParam : public OpParam { public: PSRoiPoolParam(const VariableNameMap &inputs, const VariableNameMap &outputs, const AttributeMap &attrs, Scope *scope) : OpParam(inputs, outputs, attrs, scope) { input_x_ = OpParam::GetVarValue("X", inputs, *scope); input_rois_ = OpParam::GetVarValue("ROIs", inputs, *scope); output_ = OpParam::GetVarValue("Out", outputs, *scope); output_channels_ = OpParam::GetAttr("output_channels", attrs); pooled_height_ = OpParam::GetAttr("pooled_height", attrs); pooled_width_ = OpParam::GetAttr("pooled_width", attrs); spatial_scale_ = OpParam::GetAttr("spatial_scale", attrs); } public: framework::Tensor *input_x_; framework::LoDTensor *input_rois_; framework::Tensor *output_; int output_channels_; int pooled_height_; int pooled_width_; float spatial_scale_; #ifdef PADDLE_MOBILE_FPGA std::shared_ptr float_input, float_output; fpga::BypassArgs input_arg, output_arg; #endif }; DECLARE_KERNEL(PSRoiPool, PSRoiPoolParam); #endif #ifdef ROIALIGN_POOL_OP template class RoiAlignPoolParam : public OpParam { public: RoiAlignPoolParam(const VariableNameMap &inputs, const VariableNameMap &outputs, const AttributeMap &attrs, const Scope *scope) : OpParam(inputs, outputs, attrs, scope) { input_x_ = OpParam::GetVarValue("X", inputs, *scope); input_rois_ = OpParam::GetVarValue("ROIs", inputs, *scope); output_ = OpParam::GetVarValue("Out", outputs, *scope); pooled_height_ = OpParam::GetAttr("pooled_height", attrs); pooled_width_ = OpParam::GetAttr("pooled_width", attrs); spatial_scale_ = OpParam::GetAttr("spatial_scale", attrs); sampling_ratio_ = OpParam::GetAttr("sampling_ratio", attrs); } public: framework::Tensor *input_x_; framework::LoDTensor *input_rois_; framework::Tensor *output_; int pooled_height_; int pooled_width_; float spatial_scale_; int sampling_ratio_; #ifdef PADDLE_MOBILE_FPGA std::shared_ptr float_input, float_output; fpga::BypassArgs input_arg, output_arg; #endif }; DECLARE_KERNEL(RoiAlignPool, RoiAlignPoolParam); #endif #ifdef ROI_PERSPECTIVE_OP template class RoiPerspectiveParam : public OpParam { public: RoiPerspectiveParam(const VariableNameMap &inputs, const VariableNameMap &outputs, const AttributeMap &attrs, Scope *scope) : OpParam(inputs, outputs, attrs, scope) { input_x_ = OpParam::GetVarValue("X", inputs, *scope); input_rois_ = OpParam::GetVarValue("ROIs", inputs, *scope); output_ = OpParam::GetVarValue("Out", outputs, *scope); spatial_scale_ = OpParam::GetAttr("spatial_scale", attrs); transformed_height_ = OpParam::GetAttr("transformed_height", attrs); transformed_width_ = OpParam::GetAttr("transformed_width", attrs); } public: framework::Tensor *input_x_; framework::LoDTensor *input_rois_; framework::Tensor *output_; float spatial_scale_; int transformed_height_; int transformed_width_; }; DECLARE_KERNEL(RoiPerspective, RoiPerspectiveParam); #endif } // namespace operators } // namespace paddle_mobile