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

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"
Q
Qiao Longfei 已提交
16

X
Xin Pan 已提交
17
#include "paddle/fluid/framework/ir/graph_helper.h"
W
wanghuancoder 已提交
18 19 20 21 22 23 24 25

namespace paddle {
namespace framework {
namespace ir {
class Graph;
}  // namespace ir
}  // namespace framework
}  // namespace paddle
26 27 28
#ifdef PADDLE_WITH_MKLDNN
#include "paddle/fluid/platform/mkldnn_helper.h"
#endif
X
start  
Xin Pan 已提交
29 30

namespace paddle {
X
Xin Pan 已提交
31 32
namespace framework {
namespace ir {
33

34
Graph* Pass::Apply(Graph* graph) const {
C
chengduo 已提交
35
  CheckPrevPass();
36 37
  PADDLE_ENFORCE_NOT_NULL(
      graph, platform::errors::InvalidArgument("Graph cannot be nullptr."));
X
Xin Pan 已提交
38
  for (const std::string& attr : required_pass_attrs_) {
39 40 41 42
    PADDLE_ENFORCE_NE(
        attrs_.find(attr), attrs_.end(),
        platform::errors::InvalidArgument(
            "Required atrribute %s for pass < %s > is not set.", attr, Type()));
X
Xin Pan 已提交
43 44
  }
  for (const std::string& attr : required_graph_attrs_) {
45 46 47
    PADDLE_ENFORCE_EQ(graph->Has(attr), true,
                      platform::errors::InvalidArgument(
                          "Required atrribute %s for graph is not set.", attr));
X
Xin Pan 已提交
48
  }
49
  ApplyImpl(graph);
X
Xin Pan 已提交
50
  // TODO(panyx0718): Add more verifications.
51 52 53 54 55 56 57 58
  PADDLE_ENFORCE_EQ(
      HasCircle(*graph), false,
      platform::errors::InvalidArgument(
          "Illegal pass %s. Generated graph shouldn't contain cycle.", Type()));
  PADDLE_ENFORCE_EQ(
      VarDescIsConsistency(*graph), true,
      platform::errors::InvalidArgument(
          "The VarDescs of persistable variable are not consistency."));
X
Xin Pan 已提交
59
  applied_ = true;
C
chengduo 已提交
60 61 62 63
  if (!graph->Has(kPassRecorder)) {
    graph->Set<PassRecorder>(kPassRecorder, new PassRecorder);
  }
  graph->Get<PassRecorder>(kPassRecorder).insert(Type());
64 65 66
#ifdef PADDLE_WITH_MKLDNN
  // Clear mkl-dnn cache,
  // Passes can change params, tensors, so caching need to be discarded
67
  ClearMKLDNNCache(paddle::platform::CPUPlace());
68
#endif
69
  return graph;
X
Xin Pan 已提交
70 71
}

72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
void Pass::Apply(ProgramDesc* main_program,
                 ProgramDesc* startup_program) const {
  PADDLE_ENFORCE_NOT_NULL(main_program, platform::errors::InvalidArgument(
                                            "main program must be provided"));
  PADDLE_ENFORCE_NOT_NULL(
      startup_program,
      platform::errors::InvalidArgument("startup program must be provided"));

  Graph graph(*main_program);
  Apply(&graph);

  // TODO(zjl): support details::kStartupProgramDescs and details::kProgramDescs
  ProgramDesc new_main_program;
  GraphToProgram(graph, &new_main_program);
  main_program->CopyFrom(*new_main_program.Proto());

  startup_program->Flush();
  main_program->Flush();
}

X
Xin Pan 已提交
92 93 94 95 96 97
PassRegistry& PassRegistry::Instance() {
  static PassRegistry g_pass_info_map;
  return g_pass_info_map;
}
}  // namespace ir
}  // namespace framework
X
start  
Xin Pan 已提交
98
}  // namespace paddle