attribute.h 12.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. */

15 16 17 18 19
#pragma once

#include <functional>
#include <string>
#include <unordered_map>
Y
Yu Yang 已提交
20
#include <unordered_set>
21
#include <vector>
Y
Yi Wang 已提交
22

Y
Yi Wang 已提交
23 24 25
#include "paddle/fluid/framework/framework.pb.h"
#include "paddle/fluid/framework/type_defs.h"
#include "paddle/fluid/platform/enforce.h"
26 27 28

namespace paddle {
namespace framework {
T
tangwei12 已提交
29 30 31 32 33 34 35 36 37 38 39

template <typename T>
struct ExtractAttribute {
  explicit ExtractAttribute(const std::string& attr_name)
      : attr_name_(attr_name) {}

  T* operator()(Attribute& attr) const {
    T* attr_value = nullptr;
    try {
      attr_value = &boost::get<T>(attr);
    } catch (boost::bad_get& bad_get) {
40 41 42 43
      PADDLE_THROW(platform::errors::InvalidArgument(
          "Cannot get attribute (%s) by type %s, its type is %s.", attr_name_,
          paddle::platform::demangle(typeid(T).name()),
          paddle::platform::demangle(attr.type().name())));
T
tangwei12 已提交
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
    }
    return attr_value;
  }

  const std::string& attr_name_;
};

// special handle bool
// FIXME(yuyang18): Currently we cast bool into int in python binding. It is
// hard to change the logic there. In another way, we should correct handle
// if the user set `some_flag=1`.
//
// FIX ME anytime if there is a better solution.
template <>
struct ExtractAttribute<bool> {
  explicit ExtractAttribute(const std::string& attr_name)
      : attr_name_(attr_name) {}

  bool* operator()(Attribute& attr) const {
    if (attr.type() == typeid(int)) {  // NOLINT
64
      int val = BOOST_GET_CONST(int, attr);
T
tangwei12 已提交
65 66
      attr = static_cast<bool>(val);
    } else if (attr.type() == typeid(float)) {  // NOLINT
67
      float val = BOOST_GET_CONST(float, attr);
T
tangwei12 已提交
68 69 70 71 72 73
      attr = static_cast<bool>(val);
    }
    bool* attr_value = nullptr;
    try {
      attr_value = &boost::get<bool>(attr);
    } catch (boost::bad_get& bad_get) {
74 75 76
      PADDLE_THROW(platform::errors::InvalidArgument(
          "Cannot get attribute (%s) by type bool, its type is %s.", attr_name_,
          paddle::platform::demangle(attr.type().name())));
T
tangwei12 已提交
77 78 79 80 81 82 83 84 85 86 87 88 89 90
    }
    return attr_value;
  }

  const std::string& attr_name_;
};

template <>
struct ExtractAttribute<int64_t> {
  explicit ExtractAttribute(const std::string& attr_name)
      : attr_name_(attr_name) {}

  int64_t* operator()(Attribute& attr) const {
    if (attr.type() == typeid(int)) {  // NOLINT
91
      int val = BOOST_GET_CONST(int, attr);
T
tangwei12 已提交
92 93
      attr = static_cast<int64_t>(val);
    } else if (attr.type() == typeid(float)) {  // NOLINT
94
      int val = BOOST_GET_CONST(float, attr);
T
tangwei12 已提交
95 96 97 98 99 100
      attr = static_cast<int64_t>(val);
    }
    int64_t* attr_value = nullptr;
    try {
      attr_value = &boost::get<int64_t>(attr);
    } catch (boost::bad_get& bad_get) {
101 102 103
      PADDLE_THROW(platform::errors::InvalidArgument(
          "Cannot get attribute (%s) by type int64_t, its type is %s.",
          attr_name_, paddle::platform::demangle(attr.type().name())));
T
tangwei12 已提交
104 105 106 107 108 109 110 111 112 113 114 115 116 117
    }
    return attr_value;
  }

  const std::string& attr_name_;
};

template <>
struct ExtractAttribute<std::vector<int64_t>> {
  explicit ExtractAttribute(const std::string& attr_name)
      : attr_name_(attr_name) {}

  std::vector<int64_t>* operator()(Attribute& attr) const {
    if (attr.type() == typeid(std::vector<int>)) {  // NOLINT
118
      std::vector<int> val = BOOST_GET_CONST(std::vector<int>, attr);
T
tangwei12 已提交
119 120 121
      std::vector<int64_t> vec(val.begin(), val.end());
      attr = vec;
    } else if (attr.type() == typeid(std::vector<float>)) {  // NOLINT
122
      std::vector<float> val = BOOST_GET_CONST(std::vector<float>, attr);
T
tangwei12 已提交
123 124 125 126 127 128 129
      std::vector<int64_t> vec(val.begin(), val.end());
      attr = vec;
    }
    std::vector<int64_t>* attr_value = nullptr;
    try {
      attr_value = &boost::get<std::vector<int64_t>>(attr);
    } catch (boost::bad_get& bad_get) {
130 131 132 133
      PADDLE_THROW(platform::errors::InvalidArgument(
          "Cannot get attribute (%s) by type std::vector<int64_t>, its type is "
          "%s.",
          attr_name_, paddle::platform::demangle(attr.type().name())));
T
tangwei12 已提交
134 135 136 137 138 139
    }
    return attr_value;
  }

  const std::string& attr_name_;
};
140 141 142 143 144 145 146 147

template <>
struct ExtractAttribute<float> {
  explicit ExtractAttribute(const std::string& attr_name)
      : attr_name_(attr_name) {}

  float* operator()(Attribute& attr) const {
    if (attr.type() == typeid(int)) {  // NOLINT
148
      int val = BOOST_GET_CONST(int, attr);
149 150
      attr = static_cast<float>(val);
    } else if (attr.type() == typeid(int64_t)) {  // NOLINT
151
      int64_t val = BOOST_GET_CONST(int64_t, attr);
152 153 154 155 156 157
      attr = static_cast<float>(val);
    }
    float* attr_value = nullptr;
    try {
      attr_value = &boost::get<float>(attr);
    } catch (boost::bad_get& bad_get) {
158 159 160
      PADDLE_THROW(platform::errors::InvalidArgument(
          "Cannot get attribute (%s) by type float, its type is %s.",
          attr_name_, paddle::platform::demangle(attr.type().name())));
161 162 163 164 165 166
    }
    return attr_value;
  }

  const std::string& attr_name_;
};
T
tangwei12 已提交
167

Y
Yi Wang 已提交
168
template <typename T>
169
inline proto::AttrType AttrTypeID() {
Y
Yu Yang 已提交
170
  Attribute tmp = T();
171
  return static_cast<proto::AttrType>(tmp.which() - 1);
Y
Yu Yang 已提交
172
}
Y
Yi Wang 已提交
173

174
Attribute GetAttrValue(const proto::OpDesc::Attr& attr_desc);
Y
Yi Wang 已提交
175

Q
Qiao Longfei 已提交
176 177 178 179 180 181
class AttrReader {
 public:
  explicit AttrReader(const AttributeMap& attrs) : attrs_(attrs) {}

  template <typename T>
  inline const T& Get(const std::string& name) const {
182 183 184
    PADDLE_ENFORCE_NE(attrs_.count(name), 0,
                      platform::errors::NotFound(
                          "Attribute (%s) should be in AttributeMap.", name));
T
tangwei12 已提交
185 186 187 188 189

    Attribute& attr = const_cast<Attribute&>(attrs_.at(name));
    ExtractAttribute<T> extract_attr(name);
    T* attr_value = extract_attr(attr);
    return *attr_value;
Q
Qiao Longfei 已提交
190 191 192 193 194 195
  }

 private:
  const AttributeMap& attrs_;
};

196 197
// check whether a value(attribute) fit a certain limit
template <typename T>
F
fengjiayi 已提交
198
class GreaterThanChecker {
199
 public:
F
fengjiayi 已提交
200
  explicit GreaterThanChecker(T lower_bound) : lower_bound_(lower_bound) {}
T
tangwei12 已提交
201
  void operator()(const T& value) const {
202 203 204 205
    PADDLE_ENFORCE_GT(
        value, lower_bound_,
        platform::errors::OutOfRange(
            "Check for attribute value greater than a certain value failed."));
206 207 208 209 210 211
  }

 private:
  T lower_bound_;
};

F
WIP  
fengjiayi 已提交
212
template <typename T>
F
fengjiayi 已提交
213
class EqualGreaterThanChecker {
F
WIP  
fengjiayi 已提交
214
 public:
F
fengjiayi 已提交
215
  explicit EqualGreaterThanChecker(T lower_bound) : lower_bound_(lower_bound) {}
T
tangwei12 已提交
216
  void operator()(const T& value) const {
217 218 219 220
    PADDLE_ENFORCE_GE(
        value, lower_bound_,
        platform::errors::OutOfRange("Check for attribute valur equal or "
                                     "greater than a certain value failed."));
F
WIP  
fengjiayi 已提交
221 222 223 224 225 226
  }

 private:
  T lower_bound_;
};

227 228 229 230 231 232
// we can provide users more common Checker, like 'LessThanChecker',
// 'BetweenChecker'...

template <typename T>
class DefaultValueSetter {
 public:
Y
Yi Wang 已提交
233 234
  explicit DefaultValueSetter(T default_value)
      : default_value_(default_value) {}
H
hong 已提交
235
  const T& operator()() const { return default_value_; }
236 237 238 239 240

 private:
  T default_value_;
};

Y
Yu Yang 已提交
241 242 243 244
template <typename T>
class EnumInContainer {
 public:
  explicit EnumInContainer(const std::unordered_set<T>& c) : container_(c) {}
T
tangwei12 已提交
245
  void operator()(const T& val) const {
246 247 248 249
    PADDLE_ENFORCE_NE(
        container_.find(val), container_.end(),
        platform::errors::NotFound("Value %s is not in enum container %s.", val,
                                   ContainerDebugString()));
Y
Yu Yang 已提交
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
  }

 private:
  std::string ContainerDebugString() const {
    std::ostringstream sout;
    sout << "[";
    size_t cnt = 0;
    for (auto& v : container_) {
      sout << v;
      ++cnt;
      if (cnt != container_.size()) {
        sout << " ,";
      }
    }
    sout << "]";
    return sout.str();
  }

  std::unordered_set<T> container_;
};

271 272 273 274
// check whether a certain attribute fit its limits
// an attribute can have more than one limits
template <typename T>
class TypedAttrChecker {
H
hong 已提交
275
  typedef std::function<const T&()> DefaultValueChecker;
T
tangwei12 已提交
276
  typedef std::function<void(const T&)> ValueChecker;
277 278

 public:
Y
Yi Wang 已提交
279 280
  explicit TypedAttrChecker(const std::string& attr_name)
      : attr_name_(attr_name) {}
281

Y
Yu Yang 已提交
282 283 284 285 286
  TypedAttrChecker& InEnum(const std::unordered_set<T>& range) {
    value_checkers_.push_back(EnumInContainer<T>(range));
    return *this;
  }

F
fengjiayi 已提交
287 288
  TypedAttrChecker& GreaterThan(const T& lower_bound) {
    value_checkers_.push_back(GreaterThanChecker<T>(lower_bound));
289 290 291
    return *this;
  }

F
fengjiayi 已提交
292 293
  TypedAttrChecker& EqualGreaterThan(const T& lower_bound) {
    value_checkers_.push_back(EqualGreaterThanChecker<T>(lower_bound));
F
WIP  
fengjiayi 已提交
294 295 296
    return *this;
  }

297 298 299
  // we can add more common limits, like LessThan(), Between()...

  TypedAttrChecker& SetDefault(const T& default_value) {
300 301 302 303 304
    PADDLE_ENFORCE_EQ(
        default_value_setter_.empty(), true,
        platform::errors::AlreadyExists(
            "Attribute (%s) has a default value and cannot be set repeatedly.",
            attr_name_));
305 306 307 308 309 310 311 312 313 314
    default_value_setter_.push_back(DefaultValueSetter<T>(default_value));
    return *this;
  }

  // allow users provide their own checker
  TypedAttrChecker& AddCustomChecker(const ValueChecker& checker) {
    value_checkers_.push_back(checker);
    return *this;
  }

315 316 317 318 319 320 321 322 323
  void operator()(AttributeMap* attr_map,
                  bool get_default_value_only = false) const {
    if (get_default_value_only) {
      if (!default_value_setter_.empty()) {
        attr_map->emplace(attr_name_, default_value_setter_[0]());
      }
      return;
    }

H
hong 已提交
324 325
    auto it = attr_map->find(attr_name_);
    if (it == attr_map->end()) {
326
      // user do not set this attr
327 328 329 330
      PADDLE_ENFORCE_EQ(
          default_value_setter_.empty(), false,
          platform::errors::InvalidArgument(
              "Attribute (%s) is not set correctly.", attr_name_));
331
      // default_value_setter_ has no more than one element
H
hong 已提交
332
      attr_map->emplace(attr_name_, default_value_setter_[0]());
333
    }
H
hong 已提交
334
    it = attr_map->find(attr_name_);
335
    ExtractAttribute<T> extract_attr(attr_name_);
H
hong 已提交
336
    T* attr_value = extract_attr(it->second);
337
    for (const auto& checker : value_checkers_) {
338
      checker(*attr_value);
339 340 341 342 343 344
    }
  }

 private:
  std::string attr_name_;
  std::vector<ValueChecker> value_checkers_;
T
tangwei12 已提交
345
  std::vector<DefaultValueChecker> default_value_setter_;
346 347 348 349
};

// check whether op's all attributes fit their own limits
class OpAttrChecker {
350
  typedef std::function<void(AttributeMap*, bool)> AttrChecker;
351 352 353 354 355 356 357 358 359

 public:
  template <typename T>
  TypedAttrChecker<T>& AddAttrChecker(const std::string& attr_name) {
    attr_checkers_.push_back(TypedAttrChecker<T>(attr_name));
    AttrChecker& checker = attr_checkers_.back();
    return *(checker.target<TypedAttrChecker<T>>());
  }

360 361 362 363 364
  void Check(AttributeMap* attr_map, bool explicit_only = false) const {
    auto checker_num = attr_checkers_.size();
    if (explicit_only) checker_num = explicit_checker_num_;
    for (size_t i = 0; i < checker_num; ++i) {
      attr_checkers_[i](attr_map, false);
365 366 367 368 369 370 371
    }
  }

  AttributeMap GetAttrsDefaultValuesMap() const {
    AttributeMap default_values_map;
    for (const auto& checker : attr_checkers_) {
      checker(&default_values_map, true);
372
    }
373
    return default_values_map;
374 375
  }

376 377 378 379
  void RecordExplicitCheckerNum() {
    explicit_checker_num_ = attr_checkers_.size();
  }

380 381
 private:
  std::vector<AttrChecker> attr_checkers_;
382 383 384 385 386 387 388 389 390

  // in order to improve the efficiency of dynamic graph mode,
  // we divede the attribute into explicit type and implicit type.
  // for explicit attribute, we mean the attribute added in the customized
  // op makers, usually it's defined in the overloaded Make method.
  // for implicit attribute, we mean the attribute added outside of the Make
  // method like "op_role", "op_role_var", and they are useless in dynamic graph
  // mode
  size_t explicit_checker_num_;
391 392 393 394
};

}  // namespace framework
}  // namespace paddle