attribute.h 5.9 KB
Newer Older
Y
Yi Wang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

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
Yu Yang 已提交
23
#include "paddle/framework/framework.pb.h"
L
liaogang 已提交
24
#include "paddle/platform/enforce.h"
Y
Yu Yang 已提交
25
#include "paddle/platform/variant.h"
26 27 28 29

namespace paddle {
namespace framework {

Y
Yu Yang 已提交
30 31
// The order should be as same as framework.proto
typedef boost::variant<boost::blank, int, float, std::string, std::vector<int>,
Y
Yu Yang 已提交
32
                       std::vector<float>, std::vector<std::string>, bool,
Y
Yu Yang 已提交
33
                       std::vector<bool>, BlockDesc*>
34
    Attribute;
Y
Yi Wang 已提交
35

36 37
typedef std::unordered_map<std::string, Attribute> AttributeMap;

F
fengjiayi 已提交
38
ProgramDesc& GetProgramDesc();
39

Y
Yi Wang 已提交
40
template <typename T>
Y
Yu Yang 已提交
41 42 43 44
inline AttrType AttrTypeID() {
  Attribute tmp = T();
  return static_cast<AttrType>(tmp.which() - 1);
}
Y
Yi Wang 已提交
45

Y
Yu Yang 已提交
46
Attribute GetAttrValue(const OpDesc::Attr& attr_desc);
Y
Yi Wang 已提交
47

Q
Qiao Longfei 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
class AttrReader {
 public:
  explicit AttrReader(const AttributeMap& attrs) : attrs_(attrs) {}

  template <typename T>
  inline const T& Get(const std::string& name) const {
    PADDLE_ENFORCE(attrs_.count(name) != 0, "%s should be in AttributeMap",
                   name);
    return boost::get<T>(attrs_.at(name));
  }

 private:
  const AttributeMap& attrs_;
};

63 64
// check whether a value(attribute) fit a certain limit
template <typename T>
F
fengjiayi 已提交
65
class GreaterThanChecker {
66
 public:
F
fengjiayi 已提交
67
  explicit GreaterThanChecker(T lower_bound) : lower_bound_(lower_bound) {}
68
  void operator()(T& value) const {
F
fengjiayi 已提交
69
    PADDLE_ENFORCE(value > lower_bound_, "larger_than check fails.");
70 71 72 73 74 75
  }

 private:
  T lower_bound_;
};

F
WIP  
fengjiayi 已提交
76
template <typename T>
F
fengjiayi 已提交
77
class EqualGreaterThanChecker {
F
WIP  
fengjiayi 已提交
78
 public:
F
fengjiayi 已提交
79
  explicit EqualGreaterThanChecker(T lower_bound) : lower_bound_(lower_bound) {}
F
WIP  
fengjiayi 已提交
80
  void operator()(T& value) const {
F
fengjiayi 已提交
81
    PADDLE_ENFORCE_GE(value, lower_bound_, "equal_larger_than check fails.");
F
WIP  
fengjiayi 已提交
82 83 84 85 86 87
  }

 private:
  T lower_bound_;
};

88 89 90 91 92 93
// we can provide users more common Checker, like 'LessThanChecker',
// 'BetweenChecker'...

template <typename T>
class DefaultValueSetter {
 public:
Y
Yi Wang 已提交
94 95
  explicit DefaultValueSetter(T default_value)
      : default_value_(default_value) {}
96 97 98 99 100 101
  void operator()(T& value) const { value = default_value_; }

 private:
  T default_value_;
};

Y
Yu Yang 已提交
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
template <typename T>
class EnumInContainer {
 public:
  explicit EnumInContainer(const std::unordered_set<T>& c) : container_(c) {}
  void operator()(T& val) const {
    PADDLE_ENFORCE(container_.find(val) != container_.end(),
                   "Value %s is not in enum container %s", val,
                   ContainerDebugString());
  }

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

131 132 133 134 135 136 137
// check whether a certain attribute fit its limits
// an attribute can have more than one limits
template <typename T>
class TypedAttrChecker {
  typedef std::function<void(T&)> ValueChecker;

 public:
Y
Yi Wang 已提交
138 139
  explicit TypedAttrChecker(const std::string& attr_name)
      : attr_name_(attr_name) {}
140

Y
Yu Yang 已提交
141 142 143 144 145
  TypedAttrChecker& InEnum(const std::unordered_set<T>& range) {
    value_checkers_.push_back(EnumInContainer<T>(range));
    return *this;
  }

F
fengjiayi 已提交
146 147
  TypedAttrChecker& GreaterThan(const T& lower_bound) {
    value_checkers_.push_back(GreaterThanChecker<T>(lower_bound));
148 149 150
    return *this;
  }

F
fengjiayi 已提交
151 152
  TypedAttrChecker& EqualGreaterThan(const T& lower_bound) {
    value_checkers_.push_back(EqualGreaterThanChecker<T>(lower_bound));
F
WIP  
fengjiayi 已提交
153 154 155
    return *this;
  }

156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
  // we can add more common limits, like LessThan(), Between()...

  TypedAttrChecker& SetDefault(const T& default_value) {
    PADDLE_ENFORCE(default_value_setter_.empty(),
                   "%s can't have more than one default value!", attr_name_);
    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;
  }

  void operator()(AttributeMap& attr_map) const {
    if (!attr_map.count(attr_name_)) {
      // user do not set this attr
      PADDLE_ENFORCE(!default_value_setter_.empty(),
                     "Attribute '%s' is required!", attr_name_);
      // default_value_setter_ has no more than one element
      T val;
      (default_value_setter_[0])(val);
      attr_map[attr_name_] = val;
    }
    Attribute& attr = attr_map.at(attr_name_);
    T& attr_value = boost::get<T>(attr);
    for (const auto& checker : value_checkers_) {
      checker(attr_value);
    }
  }

 private:
  std::string attr_name_;
  std::vector<ValueChecker> value_checkers_;
  std::vector<ValueChecker> default_value_setter_;
};

// check whether op's all attributes fit their own limits
class OpAttrChecker {
  typedef std::function<void(AttributeMap&)> AttrChecker;

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

  void Check(AttributeMap& attr_map) const {
    for (const auto& checker : attr_checkers_) {
      checker(attr_map);
    }
  }

 private:
  std::vector<AttrChecker> attr_checkers_;
};

}  // namespace framework
}  // namespace paddle