pass.cc 2.5 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 17 18 19

#include <memory>
#include <utility>

X
Xin Pan 已提交
20
#include "paddle/fluid/framework/ir/graph_helper.h"
21
#include "paddle/fluid/platform/device_context.h"
X
start  
Xin Pan 已提交
22 23

namespace paddle {
X
Xin Pan 已提交
24 25
namespace framework {
namespace ir {
26

27
Graph* Pass::Apply(Graph* graph) const {
C
chengduo 已提交
28
  CheckPrevPass();
29
  PADDLE_ENFORCE(graph, "graph passed to Pass::Apply() cannot be empty.");
X
Xin Pan 已提交
30
  for (const std::string& attr : required_pass_attrs_) {
31 32 33 34
    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 已提交
35 36
  }
  for (const std::string& attr : required_graph_attrs_) {
37 38 39
    PADDLE_ENFORCE_EQ(graph->Has(attr), true,
                      platform::errors::InvalidArgument(
                          "Required atrribute %s for graph is not set.", attr));
X
Xin Pan 已提交
40
  }
41
  ApplyImpl(graph);
X
Xin Pan 已提交
42
  // TODO(panyx0718): Add more verifications.
43
  PADDLE_ENFORCE(!HasCircle(*graph),
44 45
                 "Illegal Pass %s. Generated graph shouldn't have cycle.",
                 Type());
46 47
  PADDLE_ENFORCE(VarDescIsConsistency(*graph),
                 "The VarDescs of persistable variable are not consistency.");
X
Xin Pan 已提交
48
  applied_ = true;
C
chengduo 已提交
49 50 51 52
  if (!graph->Has(kPassRecorder)) {
    graph->Set<PassRecorder>(kPassRecorder, new PassRecorder);
  }
  graph->Get<PassRecorder>(kPassRecorder).insert(Type());
53 54 55 56 57 58 59 60
#ifdef PADDLE_WITH_MKLDNN
  // Clear mkl-dnn cache,
  // Passes can change params, tensors, so caching need to be discarded
  platform::DeviceContextPool& pool = platform::DeviceContextPool::Instance();
  platform::MKLDNNDeviceContext* dev_ctx =
      (platform::MKLDNNDeviceContext*)pool.Get(paddle::platform::CPUPlace());
  dev_ctx->ResetBlobMap();
#endif
61
  return graph;
X
Xin Pan 已提交
62 63
}

X
Xin Pan 已提交
64 65 66 67 68 69
PassRegistry& PassRegistry::Instance() {
  static PassRegistry g_pass_info_map;
  return g_pass_info_map;
}
}  // namespace ir
}  // namespace framework
X
start  
Xin Pan 已提交
70
}  // namespace paddle