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"
Y
Yi Wang 已提交
16 17 18 19

namespace paddle {
namespace framework {

20
paddle::any GetAttrValue(const Attribute& attr) {
C
Chen Weihang 已提交
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
  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())));
52 53 54
  }
}

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

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

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

}  // namespace framework
}  // namespace paddle