File tree 3 files changed +3
-18
lines changed 3 files changed +3
-18
lines changed Original file line number Diff line number Diff line change 1
1
#include " glow/ExecutionEngine/ExecutionEngine.h"
2
2
#include " glow/Graph/Graph.h"
3
- #include " glow/Graph/Nodes.h"
4
- #include " glow/IR/IR.h"
5
- #include " glow/IR/IRBuilder.h"
6
- #include " glow/IR/Instrs.h"
7
3
#include " glow/Support/Support.h"
8
4
9
5
#include " llvm/Support/Timer.h"
10
6
11
7
#include < cassert>
12
- #include < cstddef>
13
- #include < cstdint>
14
8
#include < fstream>
15
9
#include < iostream>
16
- #include < iterator>
17
- #include < random>
18
- #include < string>
19
- #include < vector>
20
10
21
11
using namespace glow ;
22
12
@@ -100,7 +90,7 @@ void testCIFAR10() {
100
90
auto *SM = G.createSoftMax (" softmax" , RL3, E);
101
91
auto *result = G.createReturn (" ret" , SM);
102
92
103
- EE.getModule (). generateIR ();
93
+ EE.generateIR ();
104
94
EE.optimize (OptimizationMode::Train);
105
95
EE.initVars ();
106
96
Original file line number Diff line number Diff line change 5
5
#include " llvm/Support/Timer.h"
6
6
7
7
#include < cassert>
8
- #include < cstddef>
9
- #include < cstdint>
10
8
#include < fstream>
11
9
#include < iostream>
12
- #include < string>
13
- #include < vector>
14
10
15
11
using namespace glow ;
16
12
Original file line number Diff line number Diff line change 3
3
#include " glow/Base/Image.h"
4
4
#include " glow/Base/Tensor.h"
5
5
#include " glow/ExecutionEngine/ExecutionEngine.h"
6
- #include " glow/Graph/Graph.h"
7
- #include " glow/Graph/Nodes.h"
8
6
#include " glow/Importer/Caffe2.h"
9
- #include " glow/Interpreter/Interpreter.h"
7
+
8
+ #include < iostream>
10
9
11
10
using namespace glow ;
12
11
You can’t perform that action at this time.
0 commit comments