Home
last modified time | relevance | path

Searched refs:LOG_BENCHMARK_PARAM (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/lite/tools/benchmark/
Dbenchmark_model.cc122 LOG_BENCHMARK_PARAM(int32_t, "num_runs", "Min num runs", verbose); in LogParams()
123 LOG_BENCHMARK_PARAM(float, "min_secs", "Min runs duration (seconds)", in LogParams()
125 LOG_BENCHMARK_PARAM(float, "max_secs", "Max runs duration (seconds)", in LogParams()
127 LOG_BENCHMARK_PARAM(float, "run_delay", "Inter-run delay (seconds)", verbose); in LogParams()
128 LOG_BENCHMARK_PARAM(float, "run_frequency", in LogParams()
130 LOG_BENCHMARK_PARAM(int32_t, "num_threads", "Num threads", verbose); in LogParams()
131 LOG_BENCHMARK_PARAM(bool, "use_caching", "Use caching", verbose); in LogParams()
132 LOG_BENCHMARK_PARAM(std::string, "benchmark_name", "Benchmark name", verbose); in LogParams()
133 LOG_BENCHMARK_PARAM(std::string, "output_prefix", "Output prefix", verbose); in LogParams()
134 LOG_BENCHMARK_PARAM(int32_t, "warmup_runs", "Min warmup runs", verbose); in LogParams()
[all …]
Dbenchmark_tflite_model.cc334 LOG_BENCHMARK_PARAM(std::string, "graph", "Graph", /*verbose*/ true); in LogParams()
335 LOG_BENCHMARK_PARAM(std::string, "input_layer", "Input layers", verbose); in LogParams()
336 LOG_BENCHMARK_PARAM(std::string, "input_layer_shape", "Input shapes", in LogParams()
338 LOG_BENCHMARK_PARAM(std::string, "input_layer_value_range", in LogParams()
340 LOG_BENCHMARK_PARAM(std::string, "input_layer_value_files", in LogParams()
343 LOG_BENCHMARK_PARAM(bool, "allow_fp16", "Allow fp16", verbose); in LogParams()
344 LOG_BENCHMARK_PARAM(bool, "require_full_delegation", in LogParams()
346 LOG_BENCHMARK_PARAM(bool, "enable_op_profiling", "Enable op profiling", in LogParams()
348 LOG_BENCHMARK_PARAM(int32_t, "max_profiling_buffer_entries", in LogParams()
350 LOG_BENCHMARK_PARAM(std::string, "profiling_output_csv_file", in LogParams()
Dbenchmark_params.h27 #define LOG_BENCHMARK_PARAM(type, name, description, verbose) \ macro