25 struct BenchmarkOption {
28 bool enable_profile =
false;
29 bool include_h2d_d2h =
false;
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, ";
37 output <<
"Running profiling for Runtime " 38 <<
"with H2D and D2H, ";
40 output <<
"Repeats: " << option.repeats <<
", " 41 <<
"Warmup: " << option.warmup;
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16