/* 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. */ #pragma once #include #include #include #include "gflags/gflags.h" #include "glog/logging.h" #include "gtest/gtest.h" #include "paddle/fluid/inference/tests/api/tester_helper.h" namespace paddle { namespace inference { DEFINE_bool(use_tensorrt, true, "Test the performance of TensorRT engine."); DEFINE_string(prog_filename, "", "Name of model file."); DEFINE_string(param_filename, "", "Name of parameters file."); template void SetConfig(ConfigType* config, std::string model_dir, bool use_gpu, bool use_tensorrt = false, int batch_size = -1) { if (!FLAGS_prog_filename.empty() && !FLAGS_param_filename.empty()) { config->prog_file = model_dir + "/" + FLAGS_prog_filename; config->param_file = model_dir + "/" + FLAGS_param_filename; } else { config->model_dir = model_dir; } if (use_gpu) { config->use_gpu = true; config->device = 0; config->fraction_of_gpu_memory = 0.15; } } template <> void SetConfig(AnalysisConfig* config, std::string model_dir, bool use_gpu, bool use_tensorrt, int batch_size) { if (!FLAGS_prog_filename.empty() && !FLAGS_param_filename.empty()) { config->SetModel(model_dir + "/" + FLAGS_prog_filename, model_dir + "/" + FLAGS_param_filename); } else { config->SetModel(model_dir); } if (use_gpu) { config->EnableUseGpu(100, 0); if (use_tensorrt) { config->EnableTensorRtEngine(1 << 10, batch_size, 3, AnalysisConfig::Precision::kFloat32, false); config->pass_builder()->DeletePass("conv_bn_fuse_pass"); config->pass_builder()->DeletePass("fc_fuse_pass"); config->pass_builder()->TurnOnDebug(); } else { config->EnableCUDNN(); config->SwitchIrOptim(); } } } void profile(std::string model_dir, bool use_analysis, bool use_tensorrt) { std::vector> inputs_all; if (!FLAGS_prog_filename.empty() && !FLAGS_param_filename.empty()) { SetFakeImageInput(&inputs_all, model_dir, true, FLAGS_prog_filename, FLAGS_param_filename); } else { SetFakeImageInput(&inputs_all, model_dir, false, "__model__", ""); } std::vector> outputs; if (use_analysis || use_tensorrt) { AnalysisConfig config; config.EnableUseGpu(100, 0); config.pass_builder()->TurnOnDebug(); SetConfig(&config, model_dir, true, use_tensorrt, FLAGS_batch_size); TestPrediction(reinterpret_cast(&config), inputs_all, &outputs, FLAGS_num_threads, true); } else { NativeConfig config; SetConfig(&config, model_dir, true, false); TestPrediction(reinterpret_cast(&config), inputs_all, &outputs, FLAGS_num_threads, false); } } void compare(std::string model_dir, bool use_tensorrt) { std::vector> inputs_all; if (!FLAGS_prog_filename.empty() && !FLAGS_param_filename.empty()) { SetFakeImageInput(&inputs_all, model_dir, true, FLAGS_prog_filename, FLAGS_param_filename); } else { SetFakeImageInput(&inputs_all, model_dir, false, "__model__", ""); } AnalysisConfig analysis_config; SetConfig(&analysis_config, model_dir, true, use_tensorrt, FLAGS_batch_size); CompareNativeAndAnalysis( reinterpret_cast(&analysis_config), inputs_all); } void compare_continuous_input(std::string model_dir, bool use_tensorrt) { AnalysisConfig analysis_config; SetConfig(&analysis_config, model_dir, true, use_tensorrt, FLAGS_batch_size); auto config = reinterpret_cast(&analysis_config); auto native_pred = CreateTestPredictor(config, false); auto analysis_pred = CreateTestPredictor(config, true); for (int i = 0; i < 20; i++) { std::vector> inputs_all; if (!FLAGS_prog_filename.empty() && !FLAGS_param_filename.empty()) { SetFakeImageInput(&inputs_all, model_dir, true, FLAGS_prog_filename, FLAGS_param_filename, nullptr, i); } else { SetFakeImageInput(&inputs_all, model_dir, false, "__model__", "", nullptr, i); } CompareNativeAndAnalysis(native_pred.get(), analysis_pred.get(), inputs_all); } } void delete_cache_files(std::string path) { DIR* dir = opendir(path.c_str()); if (dir == NULL) return; struct dirent* ptr; while ((ptr = readdir(dir)) != NULL) { if (std::strcmp(ptr->d_name, ".") == 0 || std::strcmp(ptr->d_name, "..") == 0) { continue; } else if (ptr->d_type == 8) { std::string file_rm = path + "/" + ptr->d_name; remove(file_rm.c_str()); } } } } // namespace inference } // namespace paddle