/* 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 #include #include #include "common/enforce.h" #include "common/log.h" #include "common/variant.h" #include "framework/framework.pb-c.h" namespace paddle_mobile { namespace framework { using std::string; using std::vector; class BlockDesc; class Attribute { public: static Attribute GetAttrValue( PaddleMobile__Framework__Proto__OpDesc__Attr *attr_desc) { Attribute attr; switch (attr_desc->type) { case PADDLE_MOBILE__FRAMEWORK__PROTO__ATTR_TYPE__BOOLEAN: { attr.Set(attr_desc->b); break; } case PADDLE_MOBILE__FRAMEWORK__PROTO__ATTR_TYPE__INT: { attr.Set(attr_desc->i); break; } case PADDLE_MOBILE__FRAMEWORK__PROTO__ATTR_TYPE__FLOAT: { attr.Set(attr_desc->f); break; } case PADDLE_MOBILE__FRAMEWORK__PROTO__ATTR_TYPE__STRING: { attr.Set(std::string(attr_desc->s)); break; } case PADDLE_MOBILE__FRAMEWORK__PROTO__ATTR_TYPE__BOOLEANS: { vector val(attr_desc->n_bools); for (int i = 0; i < attr_desc->n_bools; ++i) { val[i] = attr_desc->bools[i]; } attr.Set>(val); break; } case PADDLE_MOBILE__FRAMEWORK__PROTO__ATTR_TYPE__INTS: { vector val(attr_desc->n_ints); for (int i = 0; i < attr_desc->n_ints; ++i) { val[i] = attr_desc->ints[i]; } attr.Set>(val); break; } case PADDLE_MOBILE__FRAMEWORK__PROTO__ATTR_TYPE__FLOATS: { vector val(attr_desc->n_floats); for (int i = 0; i < attr_desc->n_floats; ++i) { val[i] = attr_desc->floats[i]; } attr.Set>(val); break; } case PADDLE_MOBILE__FRAMEWORK__PROTO__ATTR_TYPE__STRINGS: { vector val(attr_desc->n_strings); for (int i = 0; i < attr_desc->n_strings; ++i) { val[i] = attr_desc->strings[i]; } attr.Set>(val); break; } case PADDLE_MOBILE__FRAMEWORK__PROTO__ATTR_TYPE__LONG: { attr.Set(attr_desc->l); break; } default: PADDLE_MOBILE_THROW_EXCEPTION("attr type not support"); } return attr; } Attribute() {} template Attribute &Set(Args &&... args) { variant_.Set(args...); return *this; } template T &Get() const { return variant_.Get(); } template static typename Vistor::type_t ApplyVistor(Vistor vistor, Attribute attr) { if (attr.variant_.TypeId() == typeid(int).hash_code()) { return vistor(attr.variant_.Get()); } else if (attr.variant_.TypeId() == typeid(float).hash_code()) { return vistor(attr.variant_.Get()); } else if (attr.variant_.TypeId() == typeid(string).hash_code()) { return vistor(attr.variant_.Get()); } else if (attr.variant_.TypeId() == typeid(vector).hash_code()) { return vistor(attr.variant_.Get>()); } else if (attr.variant_.TypeId() == typeid(vector).hash_code()) { return vistor(attr.variant_.Get>()); } else if (attr.variant_.TypeId() == typeid(vector).hash_code()) { return vistor(attr.variant_.Get>()); } else if (attr.variant_.TypeId() == typeid(bool).hash_code()) { return vistor(attr.variant_.Get()); } else if (attr.variant_.TypeId() == typeid(vector).hash_code()) { return vistor(attr.variant_.Get>()); } else if (attr.variant_.TypeId() == typeid(int64_t).hash_code()) { return vistor(attr.variant_.Get()); } else { PADDLE_MOBILE_THROW_EXCEPTION("type not support"); exit(0); } } private: Variant, vector, vector, bool, vector, BlockDesc *, int64_t> variant_; }; using AttributeMap = std::unordered_map; class AttrReader { public: explicit AttrReader(const AttributeMap &attrs) : attrs_(attrs) {} template inline T Get(const string &name) const { PADDLE_MOBILE_ENFORCE(attrs_.count(name) != 0, "%s should be in AttributeMap", name); return ((Attribute)attrs_.at(name)).Get(); } private: const AttributeMap &attrs_; }; Print &operator<<(Print &printer, const Attribute &op_desc); } // namespace framework } // namespace paddle_mobile