forked from onnx/onnx-tensorrt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImporterContext.hpp
342 lines (315 loc) · 10.5 KB
/
ImporterContext.hpp
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
/*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#include "onnx2trt.hpp"
#include "onnx2trt_utils.hpp"
#include "onnxErrorRecorder.hpp"
#include <list>
#include <string>
#include <unordered_map>
#include <utility>
namespace onnx2trt
{
class ErrorRecorderWrapper
{
public:
ErrorRecorderWrapper(nvinfer1::INetworkDefinition* network, nvinfer1::ILogger* logger)
: mNetwork(network)
, mLogger(logger)
{
if (mNetwork)
{
mUserErrorRecorder = mNetwork->getErrorRecorder();
mOnnxErrorRecorder = ONNXParserErrorRecorder::create(logger, mUserErrorRecorder);
if (mOnnxErrorRecorder)
{
if (mUserErrorRecorder)
{
mUserErrorRecorder->incRefCount();
}
mNetwork->setErrorRecorder(mOnnxErrorRecorder);
}
}
}
~ErrorRecorderWrapper()
{
if (mNetwork && mOnnxErrorRecorder)
{
if (mUserErrorRecorder)
{
mNetwork->setErrorRecorder(mUserErrorRecorder);
mUserErrorRecorder->decRefCount();
}
ONNXParserErrorRecorder::destroy(mOnnxErrorRecorder);
}
}
bool hasError() const
{
return mOnnxErrorRecorder != nullptr && mOnnxErrorRecorder->getNbErrors() != 0;
}
//! Return recorder used by hasError().
nvinfer1::IErrorRecorder* getErrorRecorder() const
{
return mOnnxErrorRecorder ? mOnnxErrorRecorder : nullptr;
}
private:
nvinfer1::INetworkDefinition* mNetwork{nullptr};
nvinfer1::ILogger* mLogger{nullptr};
ONNXParserErrorRecorder* mOnnxErrorRecorder{nullptr};
nvinfer1::IErrorRecorder* mUserErrorRecorder{nullptr};
};
class ImporterContext final : public IImporterContext
{
nvinfer1::INetworkDefinition* mNetwork;
nvinfer1::ILogger* mLogger;
std::list<std::vector<uint8_t>> mTempBufs;
StringMap<nvinfer1::ITensor*> mUserInputs;
StringMap<nvinfer1::ITensor**> mUserOutputs;
StringMap<int64_t> mOpsets;
StringMap<TensorOrWeights> mTensors; // All tensors in the graph mapped to their names.
StringMap<nvinfer1::TensorLocation> mTensorLocations;
StringMap<float> mTensorRangeMins;
StringMap<float> mTensorRangeMaxes;
StringMap<nvinfer1::DataType> mLayerPrecisions;
std::set<std::string> mTensorNames; // Keep track of how many times a tensor name shows up, to avoid duplicate naming in TRT.
std::set<std::string> mLayerNames; // Keep track of how many times a tensor name shows up, to avoid duplicate naming in TRT.
int64_t mSuffixCounter{0}; // increasing suffix counter used to uniquify layer names.
std::unordered_set<std::string> mUnsupportedShapeTensors; // Container to hold output tensor names of layers that produce shape tensor outputs but do not natively support them.
StringMap<std::string> mLoopTensors; // Container to map subgraph tensors to their original outer graph names.
std::string mOnnxFileLocation; // Keep track of the directory of the parsed ONNX file
std::unique_ptr<ErrorRecorderWrapper> mErrorWrapper; // error recorder to control TRT errors
StringMap<nvinfer1::IConstantLayer*> mConstantLayers;
bool mConvertINT64Logged{false};
bool mConvertINT64OutOfBoundsLogged{false};
bool mConvertDoubleLogged{false};
bool mConvertDoubleOutOfBoundsLogged{false};
nvonnxparser::OnnxParserFlags mOnnxParserFlags; // OnnxParserFlags specified by the parser
// Logical library names for VC plugin libraries. This gets translated to library paths
// when getUsedVCPluginLibraries() is called.
std::set<std::string> mLogicalVCPluginLibraries;
//! Stack of names defined by nested ONNX graphs, with information about how to
//! restore their associated values when popping back to the surrounding scope.
//!
//! The stack is empty when processing the top-level ONNX graph.
//! back() corresponds to the innermost ONNX graph being processed.
//!
//! For each entry {name, {bool, TensorOrWeights}}:
//!
//! * If the bool is true, the name was newly introduced by the scope.
//!
//! * If the bool is false, the name shadows a name in a surrounding scope,
//! and TensorOrWeights was the name's value before being shadowed.
//!
std::vector<StringMap<std::pair<bool, TensorOrWeights>>> mBaseNameScopeStack;
public:
ImporterContext(nvinfer1::INetworkDefinition* network, nvinfer1::ILogger* logger)
: mNetwork(network)
, mLogger(logger)
, mErrorWrapper(std::make_unique<ErrorRecorderWrapper>(mNetwork, logger))
{
}
nvinfer1::INetworkDefinition* network() override
{
return mNetwork;
}
StringMap<TensorOrWeights>& tensors() override
{
return mTensors;
}
StringMap<nvinfer1::TensorLocation>& tensorLocations() override
{
return mTensorLocations;
}
StringMap<float>& tensorRangeMins() override
{
return mTensorRangeMins;
}
StringMap<float>& tensorRangeMaxes() override
{
return mTensorRangeMaxes;
}
StringMap<nvinfer1::DataType>& layerPrecisions() override
{
return mLayerPrecisions;
}
std::unordered_set<std::string>& unsupportedShapeTensors() override
{
return mUnsupportedShapeTensors;
}
StringMap<std::string>& loopTensors() override
{
return mLoopTensors;
}
void setOnnxFileLocation(std::string location) override
{
mOnnxFileLocation = location;
}
std::string getOnnxFileLocation() override
{
return mOnnxFileLocation;
}
void pushBaseNameScope() override;
void popBaseNameScope() override;
// This actually handles weights as well, but is named this way to be consistent with the tensors()
void registerTensor(
TensorOrWeights tensor, std::string const& basename, bool const checkUniqueName = false) override;
void registerLayer(nvinfer1::ILayer* layer, std::string const& basename, ::ONNX_NAMESPACE::NodeProto const* node) override;
void registerLayer(nvinfer1::ILayer* layer, ::ONNX_NAMESPACE::NodeProto const& node) override;
nvinfer1::ILogger& logger() override
{
return *mLogger;
}
ShapedWeights createTempWeights(ShapedWeights::DataType type, nvinfer1::Dims shape, uint8_t value = 0) override
{
std::string const& name = generateUniqueName(mTensorNames, "tmp_weight");
ShapedWeights weights(type, nullptr, shape);
weights.setName(name.c_str());
mTempBufs.push_back(std::vector<uint8_t>(weights.size_bytes(), value));
weights.values = mTempBufs.back().data();
return weights;
}
bool setUserInput(const char* name, nvinfer1::ITensor* input)
{
mUserInputs[name] = input;
return true;
}
bool setUserOutput(const char* name, nvinfer1::ITensor** output)
{
mUserOutputs[name] = output;
return true;
}
nvinfer1::ITensor* getUserInput(const char* name)
{
if (!mUserInputs.count(name))
{
return nullptr;
}
else
{
return mUserInputs.at(name);
}
}
nvinfer1::ITensor** getUserOutput(const char* name)
{
if (!mUserOutputs.count(name))
{
return nullptr;
}
else
{
return mUserOutputs.at(name);
}
}
StringMap<nvinfer1::ITensor**> const& getUserOutputs() const
{
return mUserOutputs;
}
void clearOpsets()
{
mOpsets.clear();
}
void addOpset(std::string domain, int64_t version)
{
mOpsets.emplace(domain, version);
}
int64_t getOpsetVersion(const char* domain = "") const override
{
if (mOpsets.empty())
{
return 1;
}
else if (mOpsets.size() == 1)
{
return mOpsets.begin()->second;
}
else if (mOpsets.count(domain))
{
return mOpsets.at(domain);
}
else
{
domain = "ai.onnx";
assert(mOpsets.count(domain));
return mOpsets.at(domain);
}
}
bool hasError() const noexcept override
{
return mErrorWrapper != nullptr && mErrorWrapper->hasError();
}
nvinfer1::IErrorRecorder* getErrorRecorder() const noexcept override
{
return mErrorWrapper ? mErrorWrapper->getErrorRecorder() : nullptr;
}
nvinfer1::IConstantLayer* getConstantLayer(const char* name) const final
{
if (name == nullptr)
{
return nullptr;
}
auto const iter = mConstantLayers.find(name);
if (iter == mConstantLayers.end())
{
return nullptr;
}
return iter->second;
}
void setFlags(nvonnxparser::OnnxParserFlags const& onnxParserFlags) override
{
mOnnxParserFlags = onnxParserFlags;
}
nvonnxparser::OnnxParserFlags getFlags() const override
{
return mOnnxParserFlags;
}
virtual void addUsedVCPluginLibrary(
::ONNX_NAMESPACE::NodeProto const& node, char const* pluginName, char const* pluginLib) final;
virtual std::vector<std::string> getUsedVCPluginLibraries() final;
bool isConvertINT64Logged()
{
return mConvertINT64Logged;
}
void setConvertINT64Logged(bool logged)
{
mConvertINT64Logged = logged;
}
bool isConvertINT64OutOfBoundsLogged()
{
return mConvertINT64OutOfBoundsLogged;
}
void setConvertINT64OutOfBoundsLogged(bool logged)
{
mConvertINT64OutOfBoundsLogged = logged;
}
bool isConvertDoubleLogged()
{
return mConvertDoubleLogged;
}
void setConvertDoubleLogged(bool logged)
{
mConvertDoubleLogged = logged;
}
bool isConvertDoubleOutOfBoundsLogged()
{
return mConvertDoubleOutOfBoundsLogged;
}
void setConvertDoubleOutOfBoundsLogged(bool logged)
{
mConvertDoubleOutOfBoundsLogged = logged;
}
private:
std::string const& generateUniqueName(std::set<std::string>& namesSet, const std::string& basename)
{
std::string candidate = basename;
while (namesSet.find(candidate) != namesSet.end())
{
candidate = basename + "_" + std::to_string(mSuffixCounter);
++mSuffixCounter;
}
namesSet.insert(candidate);
// Return reference to newly inserted string to avoid any c_str()'s going out of scope
return *namesSet.find(candidate);
}
};
} // namespace onnx2trt