attribute.cc 4.0 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"
R
Ruibiao Chen 已提交
16
#include "boost/blank.hpp"
Y
Yi Wang 已提交
17 18 19 20

namespace paddle {
namespace framework {

21
paddle::any GetAttrValue(const Attribute& attr) {
C
Chen Weihang 已提交
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
  switch (AttrTypeID(attr)) {
    case proto::AttrType::INT:
      return BOOST_GET_CONST(int, attr);
    case proto::AttrType::FLOAT:
      return BOOST_GET_CONST(float, attr);
    case proto::AttrType::STRING:
      return BOOST_GET_CONST(std::string, attr);
    case proto::AttrType::INTS:
      return BOOST_GET_CONST(std::vector<int>, attr);
    case proto::AttrType::FLOATS:
      return BOOST_GET_CONST(std::vector<float>, attr);
    case proto::AttrType::STRINGS:
      return BOOST_GET_CONST(std::vector<std::string>, attr);
    case proto::AttrType::BOOLEAN:
      return BOOST_GET_CONST(bool, attr);
    case proto::AttrType::BOOLEANS:
      return BOOST_GET_CONST(std::vector<bool>, attr);
    case proto::AttrType::LONG:
      return BOOST_GET_CONST(int64_t, attr);
    case proto::AttrType::LONGS:
      return BOOST_GET_CONST(std::vector<int64_t>, attr);
    case proto::AttrType::FLOAT64S:
      return BOOST_GET_CONST(std::vector<double>, attr);
    case proto::AttrType::BLOCK:
      return BOOST_GET_CONST(BlockDesc*, attr);
    case proto::AttrType::BLOCKS:
      return BOOST_GET_CONST(std::vector<BlockDesc*>, attr);
    default:
      PADDLE_THROW(platform::errors::Unimplemented(
          "Unsupported Attribute value type `%s` for phi.",
          platform::demangle(attr.type().name())));
53 54 55
  }
}

56
Attribute GetAttrValue(const proto::OpDesc::Attr& attr_desc) {
Y
Yi Wang 已提交
57
  switch (attr_desc.type()) {
58
    case proto::AttrType::BOOLEAN: {
D
dangqingqing 已提交
59 60
      return attr_desc.b();
    }
61
    case proto::AttrType::INT: {
Y
Yi Wang 已提交
62 63
      return attr_desc.i();
    }
64
    case proto::AttrType::FLOAT: {
Y
Yi Wang 已提交
65 66
      return attr_desc.f();
    }
67
    case proto::AttrType::STRING: {
Y
Yi Wang 已提交
68 69
      return attr_desc.s();
    }
70
    case proto::AttrType::BOOLEANS: {
D
dangqingqing 已提交
71 72 73 74 75 76
      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;
    }
77
    case proto::AttrType::INTS: {
Y
Yi Wang 已提交
78 79 80 81 82 83
      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;
    }
84
    case proto::AttrType::FLOATS: {
Y
Yi Wang 已提交
85 86 87 88 89 90
      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;
    }
91
    case proto::AttrType::STRINGS: {
Y
Yi Wang 已提交
92 93 94 95 96 97
      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;
    }
98 99 100
    case proto::AttrType::LONG: {
      return attr_desc.l();
    }
T
tangwei12 已提交
101 102 103 104 105 106 107
    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;
    }
108 109 110 111 112 113 114 115 116

    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;
    }

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

}  // namespace framework
}  // namespace paddle