Caffe2 - C++ API
A deep learning, cross platform ML framework
Related Pages
Modules
Data Structures
Files
C++ API
Python API
GitHub
File List
Globals
caffe2
predictor
emulator
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
caffe2::emulator::Emulator
Definition:
emulator.h:10
caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition:
blob.h:13
Generated on Thu Mar 21 2019 13:06:20 for Caffe2 - C++ API by
1.8.11