-
Notifications
You must be signed in to change notification settings - Fork 544
/
Status.hpp
356 lines (320 loc) · 16.4 KB
/
Status.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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
/*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#include "NvOnnxParser.h"
#include <algorithm>
#include <iterator>
#include <cassert>
#include <sstream>
#include <string>
#ifndef ENABLE_STD_PLUGIN
#define ENABLE_STD_PLUGIN 1
#endif // ENABLE_STD_PLUGIN
#ifndef ENABLE_SAFE_PLUGIN
#define ENABLE_SAFE_PLUGIN 0
#endif // ENABLE_SAFE_PLUGIN
#ifndef USE_LITE_PROTOBUF
#define USE_LITE_PROTOBUF 0
#endif // USE_LITE_PROTOBUF
// Used to strip out build path information from debug prints
#if defined(SOURCE_LENGTH)
#define __FILENAME__ (__FILE__ + SOURCE_LENGTH)
#else
#define __FILENAME__ (__FILE__)
#endif
// Logging macros
#define LOG(msg, severity) \
do \
{ \
std::stringstream ss{}; \
if (severity <= nvinfer1::ILogger::Severity::kWARNING) \
ss << __FILENAME__ << ":" << __LINE__ << ": "; \
ss << msg; \
ctx->logger().log(severity, ss.str().c_str()); \
} while (0)
#define LOG_VERBOSE(msg) LOG(msg, nvinfer1::ILogger::Severity::kVERBOSE)
#define LOG_INFO(msg) LOG(msg, nvinfer1::ILogger::Severity::kINFO)
#define LOG_WARNING(msg) LOG(msg, nvinfer1::ILogger::Severity::kWARNING)
#define LOG_ERROR(msg) LOG(msg, nvinfer1::ILogger::Severity::kERROR)
#define MAKE_ERROR(desc, code) onnx2trt::Status((code), (desc), __FILENAME__, __LINE__, __func__)
#define ASSERT(condition, error_code) \
do \
{ \
if (!(condition)) \
{ \
return MAKE_ERROR("Assertion failed: " #condition, (error_code)); \
} \
} while (0)
#define MAKE_NODE_ERROR(desc, code, node, index) \
onnx2trt::Status((code), (desc), __FILENAME__, __LINE__, __func__, (index), (node.name()), (node.op_type()))
#define ASSERT_NODE(condition, msg, node, index, error_code) \
do \
{ \
if (!(condition)) \
{ \
std::stringstream error; \
error << "Assertion failed: " << #condition << ": " << msg; \
return MAKE_NODE_ERROR((error.str()), (error_code), node, index); \
} \
} while (0)
#define MAKE_STATIC_ERROR(desc, code, node, index) \
onnx2trt::Status((code), (desc), __FILENAME__, __LINE__, __func__, (index), (node.name()), (node.op_type()))
#define ADD_STATIC_ERROR(desc, code, node, index, error_list) \
do \
{ \
size_t stackSize = ctx->localFunctionStack().size(); \
std::vector<std::string> localFunctionStackString{}; \
std::vector<char const*> localFunctionStackChar{}; \
for (size_t i = 0; i < stackSize; i++) \
{ \
auto const& func = ctx->localFunctionStack()[i]; \
localFunctionStackString.push_back(func.nodeName + " (" + func.functionName + ")"); \
} \
ctx->localFunctionErrors().push_back(localFunctionStackString); \
for (size_t i = 0; i < stackSize; i++) \
{ \
localFunctionStackChar.push_back(ctx->localFunctionErrors().back()[i].c_str()); \
} \
error_list.push_back(onnx2trt::Status((code), (desc), __FILENAME__, __LINE__, __func__, (index), \
(node.name()), (node.op_type()), localFunctionStackChar)); \
} while (0)
#define STATIC_CHECK(condition, error_code, node, error_list, index) \
do \
{ \
if (!(condition)) \
{ \
ADD_STATIC_ERROR(#condition, (error_code), node, index, error_list); \
} \
} while (0)
#define MAKE_INPUT_ERROR(desc, code, name) Status((code), (desc), name, __LINE__, __func__)
#define CHECK_INPUT(condition, error_code, name, error_list) \
do \
{ \
if (!(condition)) \
{ \
error_list.push_back(MAKE_INPUT_ERROR("Assertion failed: " #condition, (error_code), (name))); \
} \
} while (0)
#define ASSERT_C(condition, error_code) \
do \
{ \
if (!(condition)) \
{ \
return error_code; \
} \
} while (0)
#define GET_VALUE(value_or_error_, result_ptr) \
do \
{ \
auto const& value_or_error = value_or_error_; \
if (value_or_error.is_error()) \
{ \
return value_or_error.error(); \
} \
else \
{ \
*result_ptr = value_or_error.value(); \
} \
} while (0)
#define CHECK_STATUS(call) \
do \
{ \
onnx2trt::Status status = call; \
if (!status.is_success()) \
{ \
return status; \
} \
} while (0)
// Nullptr check for added layers and tensors. All added layers and their output tensors
// should be non-null, so throw an exception here if it is null. This exception
// will be caught by the parseNode function.
template <typename T>
T* N_CHECK(T* inputPtr)
{
if (!inputPtr)
{
throw std::runtime_error("Internal Error!");
}
return inputPtr;
}
// Overloads of operator<< on TensorRT types must be defined inside nvinfer1
// so that argument-dependent lookup works as expected. Declared static to
// avoid symbol clashing when statically linking with other TensorRT libraries
namespace nvinfer1
{
template <typename T>
static std::ostream& printSequence(std::ostream& stream, const T* begin, int count)
{
stream << "(";
if (count > 0)
{
std::copy_n(begin, count - 1, std::ostream_iterator<T>(stream, ", "));
stream << begin[count - 1];
}
stream << ")";
return stream;
}
static std::ostream& operator<<(std::ostream& stream, nvinfer1::Dims const& shape)
{
return printSequence(stream, shape.d, shape.nbDims);
}
static std::ostream& operator<<(std::ostream& stream, nvinfer1::Permutation const& perm)
{
return printSequence(stream, perm.order, nvinfer1::Dims::MAX_DIMS);
}
static std::ostream& operator<<(std::ostream& stream, nvinfer1::DataType const& dtype)
{
switch (dtype)
{
case nvinfer1::DataType::kFLOAT: return stream << "float32";
case nvinfer1::DataType::kHALF: return stream << "float16";
case nvinfer1::DataType::kBF16: return stream << "bfloat16";
case nvinfer1::DataType::kINT8: return stream << "int8";
case nvinfer1::DataType::kUINT8: return stream << "uint8";
case nvinfer1::DataType::kINT32: return stream << "int32";
case nvinfer1::DataType::kINT64: return stream << "int64";
case nvinfer1::DataType::kBOOL: return stream << "bool";
case nvinfer1::DataType::kFP8: return stream << "float8";
case nvinfer1::DataType::kINT4: return stream << "int4";
default: throw std::runtime_error("Unknown dtype");
}
}
} // namespace nvinfer1
namespace onnx2trt
{
using nvonnxparser::ErrorCode;
class Status : public nvonnxparser::IParserError
{
ErrorCode _code;
std::string _desc;
std::string _file;
int _line;
std::string _func;
int _node;
std::string _nodeName;
std::string _nodeOperator;
std::vector<char const*> _localFunctionStack;
public:
static Status success()
{
return Status(ErrorCode::kSUCCESS);
}
Status() {}
explicit Status(ErrorCode code, std::string desc = "", std::string file = "", int line = 0, std::string func = "",
int node = -1, std::string nodeName = "", std::string nodeOperator = "",
std::vector<char const*> localFunctionStack = {})
: _code(code)
, _desc(desc)
, _file(file)
, _line(line)
, _func(func)
, _node(node)
, _nodeName(nodeName)
, _nodeOperator(nodeOperator)
, _localFunctionStack(localFunctionStack)
{
}
ErrorCode code() const override
{
return _code;
}
char const* desc() const override
{
return _desc.c_str();
}
char const* file() const override
{
return _file.c_str();
}
int line() const override
{
return _line;
}
char const* func() const override
{
return _func.c_str();
}
int node() const override
{
return _node;
}
bool is_error() const
{
return _code != ErrorCode::kSUCCESS;
}
bool is_success() const
{
return _code == ErrorCode::kSUCCESS;
}
void setNode(int node)
{
_node = node;
}
char const* nodeName() const override
{
return _nodeName.c_str();
}
char const* nodeOperator() const override
{
return _nodeOperator.c_str();
}
char const* const* localFunctionStack() const override
{
return _localFunctionStack.data();
}
int32_t localFunctionStackSize() const override
{
return _localFunctionStack.size();
}
};
template <typename T>
class ValueOrStatus
{
bool _is_error;
T _value;
Status _error;
public:
ValueOrStatus(T const& value)
: _is_error(false)
, _value(value)
, _error(Status::success())
{
}
ValueOrStatus(T&& value)
: _is_error(false)
, _value(value)
, _error(Status::success())
{
}
ValueOrStatus(Status const& error)
: _is_error(true)
, _error(error)
{
}
ValueOrStatus(Status&& error)
: _is_error(true)
, _error(error)
{
}
bool is_error() const
{
return _is_error;
}
T const& value() const
{
assert(!_is_error);
return _value;
}
T& value()
{
assert(!_is_error);
return _value;
}
Status const& error() const
{
assert(_is_error);
return _error;
}
};
} // namespace onnx2trt