FastDeploy  latest
Fast & Easy to Deploy!
option.h
1 // Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 #pragma once
15 
16 namespace fastdeploy {
17 
21 namespace benchmark {
22 
23 // @brief Option object used to control the behavior of the benchmark profiling.
24 //
25 struct BenchmarkOption {
26  int warmup = 50;
27  int repeats = 100;
28  bool enable_profile = false;
29  bool include_h2d_d2h = false;
30 
31  friend std::ostream& operator<<(
32  std::ostream& output, const BenchmarkOption &option) {
33  if (!option.include_h2d_d2h) {
34  output << "Running profiling for Runtime "
35  << "without H2D and D2H, ";
36  } else {
37  output << "Running profiling for Runtime "
38  << "with H2D and D2H, ";
39  }
40  output << "Repeats: " << option.repeats << ", "
41  << "Warmup: " << option.warmup;
42  return output;
43  }
44 };
45 
46 } // namespace benchmark
47 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16