Caffe2 - C++ API
A deep learning, cross platform ML framework
output_formatter.h
1 #pragma once
2 #include "caffe2/core/logging.h"
3 
4 namespace caffe2 {
5 namespace emulator {
6 
7 /*
8  * An interface that formats the output of the emulator runs.
9  */
11  public:
12  virtual std::string format(
13  const std::vector<float>& durations_ms,
14  uint64_t threads,
15  uint64_t iterations) = 0;
16 
17  virtual ~OutputFormatter() noexcept {}
18 };
19 
20 } // namespace emulator
21 } // namespace caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition: blob.h:13