-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtflite_exploder.cpp
179 lines (147 loc) · 7.01 KB
/
tflite_exploder.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
/*
tflite_exploder takes a given .tflite file and breaks it up
into a separate .tflite file, each containing a single op.
The intent here is to make it easy to microbenchmark and/or test individual ops
vs reference implementations (eg TFLite itself) with minimum of special casing.
Usage is basically something like:
$ mkdir -p ~/local_testdata/some_big_pipeline
$ bin/host/tflite_exploder some_big_pipeline.tflite ~/local_testdata/some_big_pipeline
$ ls -l ~/local_testdata/some_big_pipeline
total 7320
-rw-r--r-- 1 srj primarygroup 2016 Oct 22 17:14 0.tflite
-rw-r--r-- 1 srj primarygroup 1536 Oct 22 17:14 1.tflite
...
-rw-r--r-- 1 srj primarygroup 800 Oct 22 17:14 64.tflite
(In this example there are 65 ops in `some_big_pipeline`)
Then you may want to run them all thru the benchmark, eg
$ for f in ~/local_testdata/some_big_pipeline/*; do bin/host/benchmark $f; done
TODO: consider adding an option to strip out the data in the tensors (ie the buffers)?
TODO: consider adding a filter to only extract ops of a certain type (eg Conv2D)?
*/
#include <fstream>
#include <iomanip>
#include <iostream>
#include <map>
#include <sstream>
#include <string>
#include <vector>
#include "flatbuffers/flatbuffers.h"
#include "tflite_schema_direct_generated.h"
#include "util/error_util.h"
#include "util/file_util.h"
using tflite_exploder::read_entire_file;
using tflite_exploder::write_entire_file;
namespace {
tflite::BuiltinOperator get_builtin_code(const tflite::OperatorCode *op_code) {
return std::max(
op_code->builtin_code(),
static_cast<tflite::BuiltinOperator>(op_code->deprecated_builtin_code()));
}
} // namespace
int main(int argc, char **argv) {
if (argc != 3) {
printf("Usage: %s input.tflite output_dir\n", argv[0]);
return 0;
}
std::string input_file = argv[1];
std::string output_dir = argv[2];
std::vector<char> buffer = read_entire_file(input_file);
const tflite::Model *model = tflite::GetModel(buffer.data());
const auto *opcodes = model->operator_codes();
const auto *subgraphs = model->subgraphs();
for (size_t subgraph_index = 0; subgraph_index < subgraphs->size(); subgraph_index++) {
const tflite::SubGraph *subgraph = subgraphs->Get(subgraph_index);
int op_index = -1;
for (const tflite::Operator *op : *subgraph->operators()) {
op_index++;
const auto *opcode = opcodes->Get(op->opcode_index());
std::string op_name = tflite::EnumNameBuiltinOperator(get_builtin_code(opcode));
std::map<int32_t, int32_t> old_to_new_tensor_map;
CHECK(op->inputs() != nullptr);
for (int32_t i : *op->inputs()) {
old_to_new_tensor_map[i] = 0;
}
CHECK(op->outputs() != nullptr);
for (int32_t i : *op->outputs()) {
old_to_new_tensor_map[i] = 0;
}
// Apparently, iterating over a null flatbuffer::Vector will just provide
// weird garbage values, so check for null
if (op->intermediates() != nullptr) {
for (int32_t i : *op->intermediates()) {
old_to_new_tensor_map[i] = 0;
}
}
std::map<uint32_t, uint32_t> old_to_new_buffer_map;
// buffer 0 is reserved for 'nothing'
old_to_new_buffer_map[0] = 0;
for (auto &m : old_to_new_tensor_map) {
const tflite::Tensor *t = subgraph->tensors()->Get(m.first);
old_to_new_buffer_map[t->buffer()] = 0; // placeholder, will fill in below
}
std::vector<std::unique_ptr<tflite::BufferT>> new_buffers;
new_buffers.emplace_back(model->buffers()->Get(0)->UnPack());
for (auto &m : old_to_new_buffer_map) {
if (m.first == 0) {
continue; // special case
}
m.second = (int32_t)new_buffers.size();
new_buffers.emplace_back(model->buffers()->Get(m.first)->UnPack());
}
std::vector<std::unique_ptr<tflite::TensorT>> new_tensors;
for (auto &m : old_to_new_tensor_map) {
m.second = (int32_t)new_tensors.size();
new_tensors.emplace_back(subgraph->tensors()->Get(m.first)->UnPack());
auto *t = new_tensors.back().get();
t->buffer = old_to_new_buffer_map[t->buffer];
}
// Make a copy of the op we can modify in place; all we need to do is update the tensor indices
std::unique_ptr<tflite::OperatorT> new_op(op->UnPack());
for (int32_t &i : new_op->inputs) {
i = old_to_new_tensor_map[i];
}
for (int32_t &i : new_op->outputs) {
i = old_to_new_tensor_map[i];
}
for (int32_t &i : new_op->intermediates) {
i = old_to_new_tensor_map[i];
}
// Inputs and Outputs to the op are also the inputs and outputs to the subgraph.
auto new_subgraph = std::make_unique<tflite::SubGraphT>();
new_subgraph->tensors = std::move(new_tensors);
for (int32_t i : new_op->inputs) {
new_subgraph->inputs.emplace_back(i);
}
for (int32_t i : new_op->outputs) {
new_subgraph->outputs.emplace_back(i);
}
new_subgraph->operators.emplace_back(std::move(new_op));
std::unique_ptr<tflite::ModelT> new_model = tflite::UnPackModel(buffer.data());
new_model->subgraphs.resize(1);
new_model->subgraphs[0] = std::move(new_subgraph);
if (!new_model->description.empty()) {
new_model->description += " (tflite_exploder/" + std::to_string(op_index) + ")";
}
new_model->buffers = std::move(new_buffers);
// Blow away all the metadata (we'll just assume we can live without it).
new_model->metadata_buffer.clear();
new_model->metadata.clear();
// signature_defs is optional -- not sure if we need it for our purposes.
// TODO: might need to translate it.
new_model->signature_defs.clear();
flatbuffers::FlatBufferBuilder fbb;
auto model_offset = tflite::Model::Pack(fbb, new_model.get());
fbb.Finish(model_offset, tflite::ModelIdentifier());
std::stringstream outpath;
outpath << output_dir << "/";
if (subgraphs->size() > 1) {
// If multiple subgraphs, prepend with subgraph index
outpath << std::setfill('0') << std::setw(3) << subgraph_index << "_";
}
outpath << std::setfill('0') << std::setw(3) << op_index << "." << op_name << ".tflite";
std::cerr << "Writing to " << outpath.str() << "\n";
write_entire_file(outpath.str(), fbb.GetBufferPointer(), fbb.GetSize());
}
}
return 0;
}