pass.h 13.2 KB
Newer Older
X
Xin Pan 已提交
1
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
X
start  
Xin Pan 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

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. */

#pragma once

X
Xin Pan 已提交
17 18
#include <functional>
#include <map>
19
#include <memory>
X
Xin Pan 已提交
20
#include <string>
21 22
#include <unordered_map>
#include <unordered_set>
C
chengduo 已提交
23
#include <vector>
W
wanghuancoder 已提交
24

X
Xin Pan 已提交
25 26 27
#include "paddle/fluid/framework/ir/graph.h"
#include "paddle/fluid/framework/ir/node.h"
#include "paddle/fluid/framework/program_desc.h"
28
#include "paddle/phi/core/macros.h"
29
#include "paddle/utils/any.h"
X
Xin Pan 已提交
30

X
start  
Xin Pan 已提交
31
namespace paddle {
X
Xin Pan 已提交
32
namespace framework {
33 34 35 36 37 38
namespace details {
using ProgramDescs = std::vector<ProgramDesc>;
constexpr char kProgramDescs[] = "program_descs";
constexpr char kStartupProgramDescs[] = "startup_program_descs";
}  // namespace details

39
namespace ir {
W
wanghuancoder 已提交
40
class Graph;
41

X
Xin Pan 已提交
42 43
template <typename PassType>
struct PassRegistrar;
X
Xin Pan 已提交
44

C
chengduo 已提交
45 46
typedef std::unordered_set<std::string> PassRecorder;
constexpr char kPassRecorder[] = "pass_recorder";
47 48 49
constexpr char kEmbEltwiseLayernormPass[] =
    "embedding_eltwise_layernorm_fuse_pass_flag";
constexpr char kMultiheadMatmulPass[] = "multihead_matmul_fuse_pass_flag";
50 51 52 53 54 55 56 57 58 59 60 61
constexpr char kFusedMultiTransformerEncoderPass[] =
    "fused_multi_transformer_encoder_pass_flag";
constexpr char kFusedMultiTransformerDecoderPass[] =
    "fused_multi_transformer_decoder_pass_flag";
constexpr char kFusedMultiTransformerEncoderFuseQKVPass[] =
    "fused_multi_transformer_encoder_fuse_qkv_pass_flag";
constexpr char kFusedMultiTransformerDecoderFuseQKVPass[] =
    "fused_multi_transformer_decoder_fuse_qkv_pass_flag";
constexpr char kMultiDevicesFusedMultiTransformerEncoderFuseQKVPass[] =
    "multi_devices_fused_multi_transformer_encoder_fuse_qkv_pass_flag";
constexpr char kMultiDevicesFusedMultiTransformerDecoderFuseQKVPass[] =
    "multi_devices_fused_multi_transformer_decoder_fuse_qkv_pass_flag";
62 63 64 65
constexpr char kFusedMultiTransformerEncoderFusionCount[] =
    "fused_multi_transformer_encoder_fusion_count";
constexpr char kFusedMultiTransformerDecoderFusionCount[] =
    "fused_multi_transformer_decoder_fusion_count";
66 67
constexpr char kPrelnEmbEltwiseLayernormPass[] =
    "preln_embedding_eltwise_layernorm_fuse_pass_flag";
C
chengduo 已提交
68

X
Xin Pan 已提交
69 70 71
class Pass {
 public:
  Pass() = default;
X
Xin Pan 已提交
72 73 74 75 76 77 78 79 80
  virtual ~Pass() {
    for (auto &attr : attrs_) {
      if (attr_dels_.find(attr.first) != attr_dels_.end()) {
        attr_dels_[attr.first]();
      }
    }
    attrs_.clear();
    attr_dels_.clear();
  }
X
Xin Pan 已提交
81

82 83
  std::string Type() const { return type_; }

84
  Graph *Apply(Graph *graph) const;
X
Xin Pan 已提交
85

X
Xin Pan 已提交
86
  // Get a reference to the attributed previously set.
X
Xin Pan 已提交
87 88
  template <typename AttrType>
  AttrType &Get(const std::string &attr_name) const {
89 90
    PADDLE_ENFORCE_NE(attrs_.find(attr_name),
                      attrs_.end(),
91 92
                      platform::errors::InvalidArgument(
                          "Attribute %s not registered for pass.", attr_name));
S
sneaxiy 已提交
93
    try {
94 95
      return *paddle::any_cast<AttrType *>(attrs_.at(attr_name));
    } catch (paddle::bad_any_cast &) {
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
      auto TypeToString = [](const std::type_info &info) -> std::string {
        if (std::type_index(info) == std::type_index(typeid(bool *))) {
          return "bool";
        } else if (std::type_index(info) == std::type_index(typeid(int *))) {
          return "int";
        } else if (std::type_index(info) ==
                   std::type_index(typeid(const int *))) {
          return "const int";
        } else if (std::type_index(info) ==
                   std::type_index(typeid(std::string *))) {
          return "std::string";
        }
        return info.name();
      };

      PADDLE_THROW(platform::errors::InvalidArgument(
112 113
          "Invalid type for attritube %s, expected: %s, actual: %s.",
          attr_name,
114 115
          TypeToString(typeid(AttrType *)),
          TypeToString(attrs_.at(attr_name).type())));
S
sneaxiy 已提交
116
    }
X
Xin Pan 已提交
117 118
  }

X
fix  
Xin Pan 已提交
119
  bool Has(const std::string &attr_name) const {
S
sneaxiy 已提交
120
    return attrs_.count(attr_name) > 0;
X
fix  
Xin Pan 已提交
121 122 123 124 125 126 127 128 129 130 131 132 133
  }

  void Erase(const std::string &attr_name) {
    if (!Has(attr_name)) {
      return;
    }
    if (attr_dels_.find(attr_name) != attr_dels_.end()) {
      attr_dels_[attr_name]();
      attr_dels_.erase(attr_name);
    }
    attrs_.erase(attr_name);
  }

X
Xin Pan 已提交
134
  // Set a pointer to the attribute. Pass takes ownership of the attribute.
X
Xin Pan 已提交
135 136
  template <typename AttrType>
  void Set(const std::string &attr_name, AttrType *attr) {
137
    if (default_pass_attrs_.count(attr_name) == 0) {
138
      PADDLE_ENFORCE_EQ(
139 140
          attrs_.count(attr_name),
          0,
141 142
          platform::errors::AlreadyExists(
              "Attribute %s already set in the pass.", attr_name));
143 144 145 146
    } else {
      VLOG(3) << "Setting the attribute " << attr_name << " for the pass "
              << type_;
    }
X
Xin Pan 已提交
147 148
    attrs_[attr_name] = attr;
    attr_dels_[attr_name] = [attr, attr_name]() {
M
minqiyang 已提交
149
      VLOG(3) << "deleting " << attr_name;
X
Xin Pan 已提交
150 151 152 153
      delete attr;
    };
  }

X
Xin Pan 已提交
154 155
  // Set a pointer to the attribute. Pass doesn't take ownership. Caller
  // should delete the attribute.
X
Xin Pan 已提交
156 157
  template <typename AttrType>
  void SetNotOwned(const std::string &attr_name, AttrType *attr) {
158 159
    PADDLE_ENFORCE_EQ(attrs_.count(attr_name),
                      0,
160 161
                      platform::errors::AlreadyExists(
                          "Attribute %s already set in the pass.", attr_name));
X
Xin Pan 已提交
162 163 164
    attrs_[attr_name] = attr;
  }

165 166 167 168 169 170
  static void ApplyPassesToProgram(const std::vector<const Pass *> &passes,
                                   ProgramDesc *main_program,
                                   ProgramDesc *startup_program);

  virtual bool SupportApplyProgramViaGraph() const { return true; }

X
Xin Pan 已提交
171
 protected:
172
  virtual void ApplyImpl(Graph *graph) const {
173
    PADDLE_THROW(platform::errors::Unimplemented(
174
        "The virtual pass called is not implemented."));
175
  }
X
Xin Pan 已提交
176

177 178 179
  virtual void ApplyImpl(ProgramDesc *main_program,
                         ProgramDesc *startup_program) const;

180 181
  static void ConvertToPrograms(ir::Graph *graph,
                                ProgramDesc *main_program,
182
                                ProgramDesc *startup_program);
183

C
chengduo 已提交
184 185 186 187
  // Some Pass must be placed before this Pass, and some
  // Pass must be placed after this Pass.
  virtual void CheckPrevPass() const {}

X
Xin Pan 已提交
188
 private:
X
Xin Pan 已提交
189 190 191 192 193 194 195 196 197 198 199 200
  template <typename PassType>
  friend struct PassRegistrar;

  void RegisterRequiredPassAttrs(const std::unordered_set<std::string> &attrs) {
    required_pass_attrs_.insert(attrs.begin(), attrs.end());
  }

  void RegisterRequiredGraphAttrs(
      const std::unordered_set<std::string> &attrs) {
    required_graph_attrs_.insert(attrs.begin(), attrs.end());
  }

201 202
  // Pass doesn't take ownership. PassRegistrar should delete default_attrs
  void RegisterDefaultPassAttrs(
203
      std::map<std::string, paddle::any> default_attr_values) {
204 205 206 207 208 209
    for (auto const &attr_name : default_attr_values) {
      default_pass_attrs_.insert(attr_name.first);
    }
    attrs_.insert(default_attr_values.begin(), default_attr_values.end());
  }

210 211
  void RegisterType(const std::string &type) { type_ = type; }

X
Xin Pan 已提交
212
  mutable bool applied_{false};
213
  std::string type_;
X
Xin Pan 已提交
214
  std::unordered_set<std::string> required_pass_attrs_;
215
  std::unordered_set<std::string> default_pass_attrs_;
X
Xin Pan 已提交
216
  std::unordered_set<std::string> required_graph_attrs_;
217
  std::map<std::string, paddle::any> attrs_;
X
Xin Pan 已提交
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
  std::map<std::string, std::function<void(void)>> attr_dels_;
};

using PassCreator = std::function<std::unique_ptr<Pass>()>;

class Registrar {
 public:
  // In our design, various kinds of passes,
  // have their corresponding registry and registrar. The action of
  // registration is in the constructor of a global registrar variable, which
  // are not used in the code that calls package framework, and would
  // be removed from the generated binary file by the linker. To avoid such
  // removal, we add Touch to all registrar classes and make USE_PASS macros to
  // call this method. So, as long as the callee code calls USE_PASS, the global
  // registrar variable won't be removed by the linker.
  void Touch() {}
234
};
X
Xin Pan 已提交
235 236 237 238 239 240 241 242 243

class PassRegistry {
 public:
  static PassRegistry &Instance();

  bool Has(const std::string &pass_type) const {
    return map_.find(pass_type) != map_.end();
  }

X
Xin Pan 已提交
244
  void Insert(const std::string &pass_type, const PassCreator &pass_creator) {
245 246
    PADDLE_ENFORCE_NE(Has(pass_type),
                      true,
247 248
                      platform::errors::AlreadyExists(
                          "Pass %s has been registered.", pass_type));
X
Xin Pan 已提交
249
    map_.insert({pass_type, pass_creator});
X
Xin Pan 已提交
250 251
  }

X
Xin Pan 已提交
252
  std::unique_ptr<Pass> Get(const std::string &pass_type) const {
253
    if (pass_type == "tensorrt_subgraph_pass") {
254 255
      PADDLE_ENFORCE_EQ(Has(pass_type),
                        true,
256 257 258 259 260 261 262
                        platform::errors::InvalidArgument(
                            "Pass %s has not been registered. Please "
                            "use the paddle inference library "
                            "compiled with tensorrt or disable "
                            "the tensorrt engine in inference configuration! ",
                            pass_type));
    } else {
263 264
      PADDLE_ENFORCE_EQ(Has(pass_type),
                        true,
265 266 267
                        platform::errors::InvalidArgument(
                            "Pass %s has not been registered.", pass_type));
    }
X
Xin Pan 已提交
268
    return map_.at(pass_type)();
X
Xin Pan 已提交
269 270 271 272 273 274 275 276 277 278 279 280
  }

 private:
  PassRegistry() = default;
  std::unordered_map<std::string, PassCreator> map_;

  DISABLE_COPY_AND_ASSIGN(PassRegistry);
};

template <typename PassType>
struct PassRegistrar : public Registrar {
  explicit PassRegistrar(const char *pass_type) {
281
    PADDLE_ENFORCE_EQ(
282 283
        PassRegistry::Instance().Has(pass_type),
        false,
284 285
        platform::errors::AlreadyExists(
            "Pass '%s' is registered more than once.", pass_type));
X
Xin Pan 已提交
286
    PassRegistry::Instance().Insert(
287
        pass_type, [this, pass_type]() -> std::unique_ptr<Pass> {
X
Xin Pan 已提交
288 289 290
          std::unique_ptr<Pass> pass(new PassType());
          pass->RegisterRequiredPassAttrs(this->required_pass_attrs_);
          pass->RegisterRequiredGraphAttrs(this->required_graph_attrs_);
291
          pass->RegisterDefaultPassAttrs(this->default_attr_values_);
292
          pass->RegisterType(pass_type);
X
Xin Pan 已提交
293 294
          return pass;
        });
X
Xin Pan 已提交
295
  }
X
Xin Pan 已提交
296

297 298 299 300 301 302 303 304 305 306
  ~PassRegistrar() {
    for (auto &attr : default_attr_values_) {
      if (default_attr_dels_.find(attr.first) != default_attr_dels_.end()) {
        default_attr_dels_[attr.first]();
      }
    }
    default_attr_values_.clear();
    default_attr_dels_.clear();
  }

X
Xin Pan 已提交
307 308 309 310 311
  PassRegistrar<PassType> &RequirePassAttr(const std::string &attr) {
    required_pass_attrs_.insert(attr);
    return *this;
  }

312 313 314 315 316 317 318 319 320 321 322
  // PassRegistrar takes ownership of default_attr_value
  template <typename AttrType>
  PassRegistrar<PassType> &DefaultPassAttr(const std::string &attr,
                                           AttrType &&default_attr_value) {
    default_attr_values_[attr] = default_attr_value;
    default_attr_dels_[attr] = [default_attr_value, attr]() {
      delete default_attr_value;
    };
    return *this;
  }

X
Xin Pan 已提交
323 324 325 326 327 328 329 330
  PassRegistrar<PassType> &RequireGraphAttr(const std::string &attr) {
    required_graph_attrs_.insert(attr);
    return *this;
  }

 private:
  std::unordered_set<std::string> required_pass_attrs_;
  std::unordered_set<std::string> required_graph_attrs_;
331
  std::map<std::string, paddle::any> default_attr_values_;
332
  std::map<std::string, std::function<void(void)>> default_attr_dels_;
X
Xin Pan 已提交
333 334 335 336 337 338 339 340
};

#define STATIC_ASSERT_PASS_GLOBAL_NAMESPACE(uniq_name, msg)                   \
  struct __test_global_namespace_##uniq_name##__ {};                          \
  static_assert(std::is_same<::__test_global_namespace_##uniq_name##__,       \
                             __test_global_namespace_##uniq_name##__>::value, \
                msg)

X
Xin Pan 已提交
341
// Register a new pass that can be applied on the IR.
P
peizhilin 已提交
342 343 344 345 346 347 348 349 350 351 352 353
#define REGISTER_PASS(pass_type, pass_class)                \
  STATIC_ASSERT_PASS_GLOBAL_NAMESPACE(                      \
      __reg_pass__##pass_type,                              \
      "REGISTER_PASS must be called in global namespace");  \
  static ::paddle::framework::ir::PassRegistrar<pass_class> \
      __pass_registrar_##pass_type##__(#pass_type);         \
  int TouchPassRegistrar_##pass_type() {                    \
    __pass_registrar_##pass_type##__.Touch();               \
    return 0;                                               \
  }                                                         \
  static ::paddle::framework::ir::PassRegistrar<pass_class> \
      &__pass_tmp_registrar_##pass_type##__ UNUSED =        \
X
Xin Pan 已提交
354
          __pass_registrar_##pass_type##__
X
Xin Pan 已提交
355

P
peizhilin 已提交
356 357 358 359 360 361
#define USE_PASS(pass_type)                           \
  STATIC_ASSERT_PASS_GLOBAL_NAMESPACE(                \
      __use_pass_itself_##pass_type,                  \
      "USE_PASS must be called in global namespace"); \
  extern int TouchPassRegistrar_##pass_type();        \
  static int use_pass_itself_##pass_type##_ UNUSED =  \
X
Xin Pan 已提交
362 363
      TouchPassRegistrar_##pass_type()

364
}  // namespace ir
X
Xin Pan 已提交
365
}  // namespace framework
X
start  
Xin Pan 已提交
366
}  // namespace paddle