optimizer.h 1.9 KB
Newer Older
S
superjomn 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
// 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>
#include "paddle/fluid/lite/core/mir/pass_manager.h"
#include "paddle/fluid/lite/core/mir/ssa_graph.h"

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 已提交
30
  void Run(Program&& program, const std::vector<Place>& valid_places,
S
superjomn 已提交
31 32 33
           const std::vector<std::string>& passes = {}) {
    CHECK(!graph_) << "duplicate optimize found";
    graph_.reset(new mir::SSAGraph);
S
superjomn 已提交
34
    graph_->Build(program, valid_places);
S
superjomn 已提交
35 36 37 38
    RunPasses();
  }

  // Generate a new program based on the mir graph.
S
superjomn 已提交
39 40
  std::unique_ptr<Program> GenProgram() {
    std::unique_ptr<Program> res;
S
superjomn 已提交
41 42
    return res;
  }
S
superjomn 已提交
43 44 45 46 47 48 49 50 51 52 53

  // 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 已提交
54
  void RunPasses() { mir::PassManager::Global().Run(graph_); }
S
superjomn 已提交
55 56 57 58 59 60 61 62 63 64

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

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

}  // namespace lite
}  // namespace paddle