attribute.cc 4.7 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 "paddle/utils/blank.h"
Y
Yi Wang 已提交
17 18 19 20

namespace paddle {
namespace framework {

21
paddle::any GetAttrValue(const Attribute& attr) {
C
Chen Weihang 已提交
22 23
  switch (AttrTypeID(attr)) {
    case proto::AttrType::INT:
R
Ruibiao Chen 已提交
24
      return PADDLE_GET_CONST(int, attr);
C
Chen Weihang 已提交
25
    case proto::AttrType::FLOAT:
R
Ruibiao Chen 已提交
26
      return PADDLE_GET_CONST(float, attr);
C
Chen Weihang 已提交
27
    case proto::AttrType::STRING:
R
Ruibiao Chen 已提交
28
      return PADDLE_GET_CONST(std::string, attr);
C
Chen Weihang 已提交
29
    case proto::AttrType::INTS:
R
Ruibiao Chen 已提交
30
      return PADDLE_GET_CONST(std::vector<int>, attr);
C
Chen Weihang 已提交
31
    case proto::AttrType::FLOATS:
R
Ruibiao Chen 已提交
32
      return PADDLE_GET_CONST(std::vector<float>, attr);
C
Chen Weihang 已提交
33
    case proto::AttrType::STRINGS:
R
Ruibiao Chen 已提交
34
      return PADDLE_GET_CONST(std::vector<std::string>, attr);
C
Chen Weihang 已提交
35
    case proto::AttrType::BOOLEAN:
R
Ruibiao Chen 已提交
36
      return PADDLE_GET_CONST(bool, attr);
C
Chen Weihang 已提交
37
    case proto::AttrType::BOOLEANS:
R
Ruibiao Chen 已提交
38
      return PADDLE_GET_CONST(std::vector<bool>, attr);
C
Chen Weihang 已提交
39
    case proto::AttrType::LONG:
R
Ruibiao Chen 已提交
40
      return PADDLE_GET_CONST(int64_t, attr);
C
Chen Weihang 已提交
41
    case proto::AttrType::LONGS:
R
Ruibiao Chen 已提交
42
      return PADDLE_GET_CONST(std::vector<int64_t>, attr);
C
Chen Weihang 已提交
43
    case proto::AttrType::FLOAT64S:
R
Ruibiao Chen 已提交
44
      return PADDLE_GET_CONST(std::vector<double>, attr);
45 46 47 48
    case proto::AttrType::VAR:
      return PADDLE_GET_CONST(VarDesc*, attr);
    case proto::AttrType::VARS:
      return PADDLE_GET_CONST(std::vector<VarDesc*>, attr);
C
Chen Weihang 已提交
49
    case proto::AttrType::BLOCK:
R
Ruibiao Chen 已提交
50
      return PADDLE_GET_CONST(BlockDesc*, attr);
C
Chen Weihang 已提交
51
    case proto::AttrType::BLOCKS:
R
Ruibiao Chen 已提交
52
      return PADDLE_GET_CONST(std::vector<BlockDesc*>, attr);
C
Chen Weihang 已提交
53 54 55 56
    default:
      PADDLE_THROW(platform::errors::Unimplemented(
          "Unsupported Attribute value type `%s` for phi.",
          platform::demangle(attr.type().name())));
57 58 59
  }
}

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

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

121
    default:
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
      PADDLE_THROW(platform::errors::Unavailable(
          "Unsupported attribute type %d.", attr_desc.type()));
  }
  return paddle::blank();
}

Attribute GetAttrValue(const proto::VarDesc::Attr& attr_desc) {
  switch (attr_desc.type()) {
    case proto::AttrType::INT: {
      return attr_desc.i();
    }
    case proto::AttrType::STRING: {
      return attr_desc.s();
    }
    case proto::AttrType::INTS: {
      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;
    }
    default:
      PADDLE_THROW(platform::errors::Unavailable(
          "Unsupported attribute type %d.", attr_desc.type()));
Y
Yi Wang 已提交
146
  }
R
Ruibiao Chen 已提交
147
  return paddle::blank();
Y
Yi Wang 已提交
148 149 150 151
}

}  // namespace framework
}  // namespace paddle