pass.cc 1.9 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

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

#include "paddle/fluid/framework/ir/pass.h"
X
Xin Pan 已提交
16
#include "paddle/fluid/framework/ir/graph_helper.h"
X
start  
Xin Pan 已提交
17 18

namespace paddle {
X
Xin Pan 已提交
19 20
namespace framework {
namespace ir {
X
Xin Pan 已提交
21
std::unique_ptr<Graph> Pass::Apply(std::unique_ptr<Graph> graph) const {
22
  VLOG(3) << "apply pass -> " << Type();
X
Xin Pan 已提交
23
  PADDLE_ENFORCE(graph.get(), "graph passed to Pass::Apply() cannot be empty.");
X
Xin Pan 已提交
24 25
  for (const std::string& attr : required_pass_attrs_) {
    PADDLE_ENFORCE(attrs_.find(attr) != attrs_.end(),
X
Xin Pan 已提交
26
                   "Required pass atrribute %s not set.", attr);
X
Xin Pan 已提交
27 28
  }
  for (const std::string& attr : required_graph_attrs_) {
X
Xin Pan 已提交
29
    PADDLE_ENFORCE(graph->Has(attr), "Required graph atrribute %s not set.",
X
Xin Pan 已提交
30 31
                   attr);
  }
W
WangZhen 已提交
32
  auto* native_graph = graph.get();
X
Xin Pan 已提交
33 34 35 36
  auto applied_graph = ApplyImpl(std::move(graph));
  // TODO(panyx0718): Add more verifications.
  PADDLE_ENFORCE(!HasCircle(*applied_graph),
                 "Illegal Pass. Generated graph shouldn't has cycle.");
W
WangZhen 已提交
37 38 39
  PADDLE_ENFORCE(applied_graph.get() == native_graph,
                 "Pass::Apply() cannot delete the passed graph and shouldn't "
                 "return a new graph.(For the need of pybind11)");
X
Xin Pan 已提交
40
  applied_ = true;
X
Xin Pan 已提交
41 42 43
  return applied_graph;
}

X
Xin Pan 已提交
44 45 46 47 48 49
PassRegistry& PassRegistry::Instance() {
  static PassRegistry g_pass_info_map;
  return g_pass_info_map;
}
}  // namespace ir
}  // namespace framework
X
start  
Xin Pan 已提交
50
}  // namespace paddle