Caffe2 - C++ API
A deep learning, cross platform ML framework
emulator.h
1 #pragma once
2 #include "caffe2/core/logging.h"
3 
4 namespace caffe2 {
5 namespace emulator {
6 
7 /*
8  * A net emulator. In short, it can run nets with given @iterations.
9  */
10 class Emulator {
11  public:
12  virtual void init() = 0;
13 
14  virtual void run(const uint64_t iterations) = 0;
15 
16  virtual ~Emulator() noexcept {}
17 };
18 
19 } // namespace emulator
20 } // namespace caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition: blob.h:13