analyzer_image_classification_tester.cc 4.9 KB
Newer Older
T
Tao Luo 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* 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 <fstream>
#include <iostream>
#include "paddle/fluid/inference/tests/api/tester_helper.h"

19 20
DEFINE_bool(disable_mkldnn_fc, false, "Disable usage of MKL-DNN's FC op");

T
Tao Luo 已提交
21 22 23 24
namespace paddle {
namespace inference {
namespace analysis {

T
Tao Luo 已提交
25
void SetConfig(AnalysisConfig *cfg) {
26 27 28 29
  cfg->SetModel(FLAGS_infer_model + "/model", FLAGS_infer_model + "/params");
  cfg->DisableGpu();
  cfg->SwitchIrOptim();
  cfg->SwitchSpecifyInputNames();
30
  cfg->SetCpuMathLibraryNumThreads(FLAGS_cpu_num_threads);
T
Tao Luo 已提交
31 32 33
}

void SetInput(std::vector<std::vector<PaddleTensor>> *inputs) {
T
Tao Luo 已提交
34
  SetFakeImageInput(inputs, FLAGS_infer_model);
T
Tao Luo 已提交
35 36
}

37
void SetOptimConfig(AnalysisConfig *cfg) {
38
  std::string optimModelPath = FLAGS_infer_model + "/saved_optim_model";
39 40 41 42
  cfg->SetModel(optimModelPath + "/model", optimModelPath + "/params");
  cfg->DisableGpu();
  cfg->SwitchIrOptim();
  cfg->SwitchSpecifyInputNames();
43
  cfg->SetCpuMathLibraryNumThreads(FLAGS_cpu_num_threads);
44 45
}

T
Tao Luo 已提交
46
// Easy for profiling independently.
T
Tao Luo 已提交
47
void profile(bool use_mkldnn = false) {
T
Tao Luo 已提交
48 49
  AnalysisConfig cfg;
  SetConfig(&cfg);
50 51 52

  if (use_mkldnn) {
    cfg.EnableMKLDNN();
53
    if (!FLAGS_disable_mkldnn_fc) {
54
      cfg.pass_builder()->AppendPass("fc_mkldnn_pass");
55 56
      cfg.pass_builder()->AppendPass("fc_act_mkldnn_fuse_pass");
    }
57
  }
58
  std::vector<std::vector<PaddleTensor>> outputs;
T
Tao Luo 已提交
59 60 61

  std::vector<std::vector<PaddleTensor>> input_slots_all;
  SetInput(&input_slots_all);
62 63
  TestPrediction(reinterpret_cast<const PaddlePredictor::Config *>(&cfg),
                 input_slots_all, &outputs, FLAGS_num_threads);
T
Tao Luo 已提交
64 65
}

T
Tao Luo 已提交
66
TEST(Analyzer_resnet50, profile) { profile(); }
67
#ifdef PADDLE_WITH_MKLDNN
T
Tao Luo 已提交
68 69 70
TEST(Analyzer_resnet50, profile_mkldnn) { profile(true /* use_mkldnn */); }
#endif

T
Tao Luo 已提交
71 72 73 74 75
// Check the fuse status
TEST(Analyzer_resnet50, fuse_statis) {
  AnalysisConfig cfg;
  SetConfig(&cfg);
  int num_ops;
T
Tao Luo 已提交
76 77 78
  auto predictor = CreatePaddlePredictor<AnalysisConfig>(cfg);
  auto fuse_statis = GetFuseStatis(
      static_cast<AnalysisPredictor *>(predictor.get()), &num_ops);
79
  LOG(INFO) << "num_ops: " << num_ops;
T
Tao Luo 已提交
80 81 82
}

// Compare result of NativeConfig and AnalysisConfig
T
Tao Luo 已提交
83
void compare(bool use_mkldnn = false) {
T
Tao Luo 已提交
84 85
  AnalysisConfig cfg;
  SetConfig(&cfg);
86 87
  if (use_mkldnn) {
    cfg.EnableMKLDNN();
88
    if (!FLAGS_disable_mkldnn_fc) {
89
      cfg.pass_builder()->AppendPass("fc_mkldnn_pass");
90 91
      cfg.pass_builder()->AppendPass("fc_act_mkldnn_fuse_pass");
    }
92
  }
T
Tao Luo 已提交
93 94 95

  std::vector<std::vector<PaddleTensor>> input_slots_all;
  SetInput(&input_slots_all);
96 97
  CompareNativeAndAnalysis(
      reinterpret_cast<const PaddlePredictor::Config *>(&cfg), input_slots_all);
T
Tao Luo 已提交
98 99
}

T
Tao Luo 已提交
100
TEST(Analyzer_resnet50, compare) { compare(); }
T
Tao Luo 已提交
101
#ifdef PADDLE_WITH_MKLDNN
T
Tao Luo 已提交
102
TEST(Analyzer_resnet50, compare_mkldnn) { compare(true /* use_mkldnn */); }
T
Tao Luo 已提交
103
#endif
T
Tao Luo 已提交
104

L
luotao1 已提交
105 106 107 108 109 110 111 112 113 114
// Compare Deterministic result
TEST(Analyzer_resnet50, compare_determine) {
  AnalysisConfig cfg;
  SetConfig(&cfg);
  std::vector<std::vector<PaddleTensor>> input_slots_all;
  SetInput(&input_slots_all);
  CompareDeterministic(reinterpret_cast<const PaddlePredictor::Config *>(&cfg),
                       input_slots_all);
}

115 116 117
// Save optim model
TEST(Analyzer_resnet50, save_optim_model) {
  AnalysisConfig cfg;
118
  std::string optimModelPath = FLAGS_infer_model + "/saved_optim_model";
119 120 121
#ifdef _WIN32
  _mkdir(optimModelPath.c_str());
#else
122
  mkdir(optimModelPath.c_str(), 0777);
123
#endif
124 125
  SetConfig(&cfg);
  SaveOptimModel(&cfg, optimModelPath);
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
}

void CompareOptimAndOrig(const PaddlePredictor::Config *orig_config,
                         const PaddlePredictor::Config *optim_config,
                         const std::vector<std::vector<PaddleTensor>> &inputs) {
  PrintConfig(orig_config, true);
  PrintConfig(optim_config, true);
  std::vector<std::vector<PaddleTensor>> orig_outputs, optim_outputs;
  TestOneThreadPrediction(orig_config, inputs, &orig_outputs, false);
  TestOneThreadPrediction(optim_config, inputs, &optim_outputs, false);
  CompareResult(orig_outputs.back(), optim_outputs.back());
}

TEST(Analyzer_resnet50, compare_optim_orig) {
  AnalysisConfig orig_cfg;
  AnalysisConfig optim_cfg;
  SetConfig(&orig_cfg);
  SetOptimConfig(&optim_cfg);
  std::vector<std::vector<PaddleTensor>> input_slots_all;
  SetInput(&input_slots_all);
  CompareOptimAndOrig(
      reinterpret_cast<const PaddlePredictor::Config *>(&orig_cfg),
      reinterpret_cast<const PaddlePredictor::Config *>(&optim_cfg),
      input_slots_all);
}

T
Tao Luo 已提交
152 153 154
}  // namespace analysis
}  // namespace inference
}  // namespace paddle