optimizer.h 2.1 KB
Newer Older
S
superjomn 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// Copyright (c) 2019 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.

#pragma once
#include <string>
#include <vector>
S
Superjomn 已提交
18
#include "paddle/fluid/lite/core/mir/generate_program_pass.h"
S
superjomn 已提交
19 20
#include "paddle/fluid/lite/core/mir/pass_manager.h"
#include "paddle/fluid/lite/core/mir/ssa_graph.h"
S
Superjomn 已提交
21
#include "paddle/fluid/lite/core/program.h"
S
superjomn 已提交
22 23 24 25 26 27 28 29 30 31

namespace paddle {
namespace lite {

/*
 * lite::Optimizer optimize a program. It utilize the mir passes to analysis the
 * program and export an optimized program.
 */
class Optimizer {
 public:
S
superjomn 已提交
32
  void Run(Program&& program, const std::vector<Place>& valid_places,
S
superjomn 已提交
33 34 35
           const std::vector<std::string>& passes = {}) {
    CHECK(!graph_) << "duplicate optimize found";
    graph_.reset(new mir::SSAGraph);
S
superjomn 已提交
36
    graph_->Build(program, valid_places);
S
superjomn 已提交
37 38 39 40
    RunPasses();
  }

  // Generate a new program based on the mir graph.
S
Superjomn 已提交
41
  std::unique_ptr<RuntimeProgram> GenRuntimeProgram() {
S
superjomn 已提交
42
    std::unique_ptr<Program> res;
S
Superjomn 已提交
43 44 45
    auto pass = mir::PassManager::Global().LookUp<mir::GenerateProgramPass>(
        "generate_program_pass");
    return pass->GenProgram();
S
superjomn 已提交
46
  }
S
superjomn 已提交
47 48 49 50 51 52 53 54 55 56 57

  // Generate C++ code which combines the inference program, model and weights.
  void GenCode(const std::string& code_dir);

  const mir::SSAGraph& ssa_graph() const {
    CHECK(graph_);
    return *graph_;
  }

 protected:
  // Run the default passes registered in the PassManager.
S
superjomn 已提交
58
  void RunPasses() { mir::PassManager::Global().Run(graph_); }
S
superjomn 已提交
59 60 61 62 63 64 65 66 67 68

  // Specify the passes and run them.
  void RunPasses(std::vector<std::string>& passes);

 private:
  std::unique_ptr<mir::SSAGraph> graph_;
};

}  // namespace lite
}  // namespace paddle