attribute.cc 4.3 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Y
Yi Wang 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14

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. */

Y
Yi Wang 已提交
15
#include "paddle/fluid/framework/attribute.h"
Y
Yi Wang 已提交
16 17 18 19

namespace paddle {
namespace framework {

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
paddle::any GetAttrValue(const Attribute& attr) {
  if (attr.type() == typeid(int)) {
    return paddle::any(BOOST_GET_CONST(int, attr));
  } else if (attr.type() == typeid(float)) {
    return paddle::any(BOOST_GET_CONST(float, attr));
  } else if (attr.type() == typeid(std::string)) {
    return paddle::any(BOOST_GET_CONST(std::string, attr));
  } else if (attr.type() == typeid(std::vector<int>)) {
    return paddle::any(BOOST_GET_CONST(std::vector<int>, attr));
  } else if (attr.type() == typeid(std::vector<float>)) {
    return paddle::any(BOOST_GET_CONST(std::vector<float>, attr));
  } else if (attr.type() == typeid(std::vector<std::string>)) {
    return paddle::any(BOOST_GET_CONST(std::vector<std::string>, attr));
  } else if (attr.type() == typeid(bool)) {
    return paddle::any(BOOST_GET_CONST(bool, attr));
  } else if (attr.type() == typeid(std::vector<bool>)) {
    return paddle::any(BOOST_GET_CONST(std::vector<bool>, attr));
  } else if (attr.type() == typeid(BlockDesc*)) {
    return paddle::any(BOOST_GET_CONST(BlockDesc*, attr));
  } else if (attr.type() == typeid(int64_t)) {
    return paddle::any(BOOST_GET_CONST(int64_t, attr));
  } else if (attr.type() == typeid(std::vector<BlockDesc*>)) {
    return paddle::any(BOOST_GET_CONST(std::vector<BlockDesc*>, attr));
  } else if (attr.type() == typeid(std::vector<int64_t>)) {
    return paddle::any(BOOST_GET_CONST(std::vector<int64_t>, attr));
  } else if (attr.type() == typeid(std::vector<double>)) {
    return paddle::any(BOOST_GET_CONST(std::vector<double>, attr));
  } else {
    PADDLE_THROW(
        platform::errors::Unimplemented("Unsupported Attribute value type."));
  }
}

53
Attribute GetAttrValue(const proto::OpDesc::Attr& attr_desc) {
Y
Yi Wang 已提交
54
  switch (attr_desc.type()) {
55
    case proto::AttrType::BOOLEAN: {
D
dangqingqing 已提交
56 57
      return attr_desc.b();
    }
58
    case proto::AttrType::INT: {
Y
Yi Wang 已提交
59 60
      return attr_desc.i();
    }
61
    case proto::AttrType::FLOAT: {
Y
Yi Wang 已提交
62 63
      return attr_desc.f();
    }
64
    case proto::AttrType::STRING: {
Y
Yi Wang 已提交
65 66
      return attr_desc.s();
    }
67
    case proto::AttrType::BOOLEANS: {
D
dangqingqing 已提交
68 69 70 71 72 73
      std::vector<bool> val(attr_desc.bools_size());
      for (int i = 0; i < attr_desc.bools_size(); ++i) {
        val[i] = attr_desc.bools(i);
      }
      return val;
    }
74
    case proto::AttrType::INTS: {
Y
Yi Wang 已提交
75 76 77 78 79 80
      std::vector<int> val(attr_desc.ints_size());
      for (int i = 0; i < attr_desc.ints_size(); ++i) {
        val[i] = attr_desc.ints(i);
      }
      return val;
    }
81
    case proto::AttrType::FLOATS: {
Y
Yi Wang 已提交
82 83 84 85 86 87
      std::vector<float> val(attr_desc.floats_size());
      for (int i = 0; i < attr_desc.floats_size(); ++i) {
        val[i] = attr_desc.floats(i);
      }
      return val;
    }
88
    case proto::AttrType::STRINGS: {
Y
Yi Wang 已提交
89 90 91 92 93 94
      std::vector<std::string> val(attr_desc.strings_size());
      for (int i = 0; i < attr_desc.strings_size(); ++i) {
        val[i] = attr_desc.strings(i);
      }
      return val;
    }
95 96 97
    case proto::AttrType::LONG: {
      return attr_desc.l();
    }
T
tangwei12 已提交
98 99 100 101 102 103 104
    case proto::AttrType::LONGS: {
      std::vector<int64_t> val(attr_desc.longs_size());
      for (int i = 0; i < attr_desc.longs_size(); ++i) {
        val[i] = attr_desc.longs(i);
      }
      return val;
    }
105 106 107 108 109 110 111 112 113

    case proto::AttrType::FLOAT64S: {
      std::vector<double> val(attr_desc.float64s_size());
      for (int i = 0; i < attr_desc.float64s_size(); ++i) {
        val[i] = attr_desc.float64s(i);
      }
      return val;
    }

114
    default:
115 116
      PADDLE_THROW(platform::errors::Unavailable("Unsupport attribute type %d.",
                                                 attr_desc.type()));
Y
Yi Wang 已提交
117 118 119 120 121 122
  }
  return boost::blank();
}

}  // namespace framework
}  // namespace paddle