analysis_predictor.h 3.2 KB
Newer Older
Y
Yan Chunwei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// 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.

15
#pragma once
16 17
#include <string>
#include <vector>
18
#include "paddle/fluid/framework/naive_executor.h"
Y
Yan Chunwei 已提交
19 20 21
#include "paddle/fluid/inference/analysis/analyzer.h"
#include "paddle/fluid/inference/api/api_impl.h"
#include "paddle/fluid/inference/api/paddle_inference_api.h"
22
#include "paddle/fluid/string/printf.h"
Y
Yan Chunwei 已提交
23 24 25 26 27 28

namespace paddle {

using inference::analysis::Argument;
using inference::analysis::Analyzer;
using framework::proto::ProgramDesc;
29 30
using framework::NaiveExecutor;
using contrib::AnalysisConfig;
Y
Yan Chunwei 已提交
31 32 33 34 35

/* This predictor is based on the original native predictor with IR and Analysis
 * support. It will optimize IR and Parameters in the runtime.
 * TODO(Superjomn) Replace the Navive predictor?
 */
36
class AnalysisPredictor : public PaddlePredictor {
Y
Yan Chunwei 已提交
37
 public:
38
  explicit AnalysisPredictor(const AnalysisConfig &config) : config_(config) {}
Y
Yan Chunwei 已提交
39

40 41
  bool Init(const std::shared_ptr<framework::Scope> &parent_scope,
            const std::shared_ptr<framework::ProgramDesc> &program = nullptr);
Y
Yan Chunwei 已提交
42

43 44 45 46 47 48 49 50 51 52 53 54
  bool Run(const std::vector<PaddleTensor> &inputs,
           std::vector<PaddleTensor> *output_data,
           int batch_size = -1) override;

  std::unique_ptr<ZeroCopyTensor> GetInputTensor(
      const std::string &name) override;
  std::unique_ptr<ZeroCopyTensor> GetOutputTensor(
      const std::string &name) override;

  bool ZeroCopyRun() override;

  void PrepareFeedFetch();
Y
Yan Chunwei 已提交
55 56 57

  void OptimizeInferenceProgram();

58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
  Argument &analysis_argument() { return argument_; }

  std::unique_ptr<PaddlePredictor> Clone() override;

  framework::Scope *scope() { return executor_->scope(); }
  framework::ProgramDesc &program() { return *inference_program_; }

 protected:
  bool LoadProgramDesc();

  bool SetFeed(const std::vector<PaddleTensor> &input_datas,
               framework::Scope *scope);
  bool GetFetch(std::vector<PaddleTensor> *output_data,
                framework::Scope *scope);
  template <typename T>
  void GetFetchOne(const framework::LoDTensor &fetchs,
                   PaddleTensor *output_data);
Y
Yan Chunwei 已提交
75 76

 private:
Y
Yan Chunwei 已提交
77
  contrib::AnalysisConfig config_;
Y
Yan Chunwei 已提交
78
  Argument argument_;
79 80 81 82 83 84 85 86 87 88 89
  std::unique_ptr<NaiveExecutor> executor_;
  platform::Place place_;
  std::shared_ptr<framework::Scope> scope_;
  framework::Scope *sub_scope_{nullptr};
  std::shared_ptr<framework::ProgramDesc> inference_program_;
  std::vector<framework::OpDesc *> feeds_;
  std::map<std::string, size_t> feed_names_;
  std::vector<framework::OpDesc *> fetchs_;
  // Memory buffer for feed inputs. The temporary LoDTensor will cause serious
  // concurrency problems, so cache them.
  std::vector<framework::LoDTensor> feed_tensors_;
Y
Yan Chunwei 已提交
90 91 92
};

}  // namespace paddle