attribute.cc 2.4 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
Attribute GetAttrValue(const proto::OpDesc::Attr& attr_desc) {
Y
Yi Wang 已提交
21
  switch (attr_desc.type()) {
22
    case proto::AttrType::BOOLEAN: {
D
dangqingqing 已提交
23 24
      return attr_desc.b();
    }
25
    case proto::AttrType::INT: {
Y
Yi Wang 已提交
26 27
      return attr_desc.i();
    }
28
    case proto::AttrType::FLOAT: {
Y
Yi Wang 已提交
29 30
      return attr_desc.f();
    }
31
    case proto::AttrType::STRING: {
Y
Yi Wang 已提交
32 33
      return attr_desc.s();
    }
34
    case proto::AttrType::BOOLEANS: {
D
dangqingqing 已提交
35 36 37 38 39 40
      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;
    }
41
    case proto::AttrType::INTS: {
Y
Yi Wang 已提交
42 43 44 45 46 47
      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;
    }
48
    case proto::AttrType::FLOATS: {
Y
Yi Wang 已提交
49 50 51 52 53 54
      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;
    }
55
    case proto::AttrType::STRINGS: {
Y
Yi Wang 已提交
56 57 58 59 60 61
      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;
    }
62 63 64
    case proto::AttrType::LONG: {
      return attr_desc.l();
    }
T
tangwei12 已提交
65 66 67 68 69 70 71
    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;
    }
72
    default:
73 74
      PADDLE_THROW(platform::errors::Unavailable("Unsupport attribute type %d.",
                                                 attr_desc.type()));
Y
Yi Wang 已提交
75 76 77 78 79 80
  }
  return boost::blank();
}

}  // namespace framework
}  // namespace paddle