pass_builder.cc 1.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.

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_builder.h"
C
chengduo 已提交
16 17
#include <memory>
#include <utility>
18 19 20 21 22

namespace paddle {
namespace framework {
namespace ir {

W
wanghuancoder 已提交
23 24
class Pass;

25
std::shared_ptr<Pass> PassBuilder::AppendPass(const std::string& pass_type) {
C
chengduo 已提交
26
  VLOG(1) << "Append " << pass_type;
27 28 29 30 31 32
  auto pass = ir::PassRegistry::Instance().Get(pass_type);
  passes_.emplace_back(pass.release());
  return passes_.back();
}

void PassBuilder::RemovePass(size_t idx) {
33 34 35 36
  PADDLE_ENFORCE_GT(
      passes_.size(), idx,
      platform::errors::InvalidArgument(
          "Passes size is %d, %d is not a valid index.", passes_.size(), idx));
37 38 39 40 41
  passes_.erase(passes_.begin() + idx);
}

std::shared_ptr<Pass> PassBuilder::InsertPass(size_t idx,
                                              const std::string& pass_type) {
42 43 44 45
  PADDLE_ENFORCE_GE(
      passes_.size(), idx,
      platform::errors::InvalidArgument(
          "Passes size is %d, %d is not a valid index.", passes_.size(), idx));
46 47 48 49 50 51 52 53 54
  std::shared_ptr<Pass> pass(
      ir::PassRegistry::Instance().Get(pass_type).release());
  passes_.insert(passes_.begin() + idx, std::move(pass));
  return passes_[idx];
}

}  // namespace ir
}  // namespace framework
}  // namespace paddle