forked from dusty-nv/jetson-inference
-
Notifications
You must be signed in to change notification settings - Fork 8
/
tensorNet.cpp
296 lines (224 loc) · 8.31 KB
/
tensorNet.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
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
/*
* http://github.com/dusty-nv/jetson-inference
*/
#include "tensorNet.h"
#include "cudaMappedMemory.h"
#include "cudaResize.h"
#include <iostream>
#include <fstream>
static const int MAX_BATCH_SIZE = 2;
// constructor
tensorNet::tensorNet()
{
mEngine = NULL;
mInfer = NULL;
mContext = NULL;
mWidth = 0;
mHeight = 0;
mInputSize = 0;
mInputCPU = NULL;
mInputCUDA = NULL;
mEnableFP16 = false;
memset(&mInputDims, 0, sizeof(nvinfer1::Dims3));
}
// Destructor
tensorNet::~tensorNet()
{
if( mEngine != NULL )
{
mEngine->destroy();
mEngine = NULL;
}
if( mInfer != NULL )
{
mInfer->destroy();
mInfer = NULL;
}
}
// Create an optimized GIE network from caffe prototxt and model file
bool tensorNet::ProfileModel(const std::string& deployFile, // name for caffe prototxt
const std::string& modelFile, // name for model
const std::vector<std::string>& outputs, // network outputs
unsigned int maxBatchSize, // batch size - NB must be at least as large as the batch we want to run with)
std::ostream& gieModelStream) // output stream for the GIE model
{
// create API root class - must span the lifetime of the engine usage
nvinfer1::IBuilder* builder = createInferBuilder(gLogger);
nvinfer1::INetworkDefinition* network = builder->createNetwork();
builder->setMinFindIterations(3); // allow time for TX1 GPU to spin up
builder->setAverageFindIterations(2);
// parse the caffe model to populate the network, then set the outputs
nvcaffeparser1::ICaffeParser* parser = nvcaffeparser1::createCaffeParser();
mEnableFP16 = builder->platformHasFastFp16();
printf(LOG_GIE "platform %s FP16 support.\n", mEnableFP16 ? "has" : "does not have");
printf(LOG_GIE "loading %s %s\n", deployFile.c_str(), modelFile.c_str());
nvinfer1::DataType modelDataType = mEnableFP16 ? nvinfer1::DataType::kHALF : nvinfer1::DataType::kFLOAT; // create a 16-bit model if it's natively supported
const nvcaffeparser1::IBlobNameToTensor *blobNameToTensor =
parser->parse(deployFile.c_str(), // caffe deploy file
modelFile.c_str(), // caffe model file
*network, // network definition that the parser will populate
modelDataType);
if( !blobNameToTensor )
{
printf(LOG_GIE "failed to parse caffe network\n");
return false;
}
// the caffe file has no notion of outputs, so we need to manually say which tensors the engine should generate
const size_t num_outputs = outputs.size();
for( size_t n=0; n < num_outputs; n++ )
network->markOutput(*blobNameToTensor->find(outputs[n].c_str()));
// Build the engine
printf(LOG_GIE "configuring CUDA engine\n");
builder->setMaxBatchSize(maxBatchSize);
builder->setMaxWorkspaceSize(16 << 20);
// set up the network for paired-fp16 format
if(mEnableFP16)
builder->setHalf2Mode(true);
printf(LOG_GIE "building CUDA engine\n");
nvinfer1::ICudaEngine* engine = builder->buildCudaEngine(*network);
if( !engine )
{
printf(LOG_GIE "failed to build CUDA engine\n");
return false;
}
// we don't need the network any more, and we can destroy the parser
network->destroy();
parser->destroy(); //delete parser;
// serialize the engine, then close everything down
engine->serialize(gieModelStream);
engine->destroy();
builder->destroy();
return true;
}
// LoadNetwork
bool tensorNet::LoadNetwork( const char* prototxt_path, const char* model_path, const char* mean_path, const char* input_blob, const char* output_blob)
{
std::vector<std::string> outputs;
outputs.push_back(output_blob);
return LoadNetwork(prototxt_path, model_path, mean_path, input_blob, outputs);
}
// LoadNetwork
bool tensorNet::LoadNetwork( const char* prototxt_path, const char* model_path, const char* mean_path, const char* input_blob, const std::vector<std::string>& output_blobs)
{
if( !prototxt_path || !model_path )
return false;
/*
* attempt to load network from cache before profiling with tensorRT
*/
std::stringstream gieModelStream;
gieModelStream.seekg(0, gieModelStream.beg);
char cache_path[512];
sprintf(cache_path, "%s.tensorcache", model_path);
printf(LOG_GIE "attempting to open cache file %s\n", cache_path);
std::ifstream cache( cache_path );
if( !cache )
{
printf(LOG_GIE "cache file not found, profiling network model\n");
if( !ProfileModel(prototxt_path, model_path, output_blobs, MAX_BATCH_SIZE, gieModelStream) )
{
printf("failed to load %s\n", model_path);
return 0;
}
printf(LOG_GIE "network profiling complete, writing cache to %s\n", cache_path);
std::ofstream outFile;
outFile.open(cache_path);
outFile << gieModelStream.rdbuf();
outFile.close();
gieModelStream.seekg(0, gieModelStream.beg);
printf(LOG_GIE "completed writing cache to %s\n", cache_path);
}
else
{
printf(LOG_GIE "loading network profile from cache... %s\n", cache_path);
gieModelStream << cache.rdbuf();
cache.close();
// test for half FP16 support
nvinfer1::IBuilder* builder = createInferBuilder(gLogger);
if( builder != NULL )
{
mEnableFP16 = builder->platformHasFastFp16();
printf(LOG_GIE "platform %s FP16 support.\n", mEnableFP16 ? "has" : "does not have");
builder->destroy();
}
}
printf(LOG_GIE "%s loaded\n", model_path);
/*
* create runtime inference engine execution context
*/
nvinfer1::IRuntime* infer = createInferRuntime(gLogger);
if( !infer )
{
printf(LOG_GIE "failed to create InferRuntime\n");
return 0;
}
nvinfer1::ICudaEngine* engine = infer->deserializeCudaEngine(gieModelStream);
if( !engine )
{
printf(LOG_GIE "failed to create CUDA engine\n");
return 0;
}
nvinfer1::IExecutionContext* context = engine->createExecutionContext();
if( !context )
{
printf(LOG_GIE "failed to create execution context\n");
return 0;
}
printf(LOG_GIE "CUDA engine context initialized with %u bindings\n", engine->getNbBindings());
mInfer = infer;
mEngine = engine;
mContext = context;
/*
* determine dimensions of network input bindings
*/
const int inputIndex = engine->getBindingIndex(input_blob);
printf(LOG_GIE "%s input binding index: %i\n", model_path, inputIndex);
nvinfer1::Dims3 inputDims = engine->getBindingDimensions(inputIndex);
size_t inputSize = inputDims.c * inputDims.h * inputDims.w * sizeof(float);
printf(LOG_GIE "%s input dims (c=%u h=%u w=%u) size=%zu\n", model_path, inputDims.c, inputDims.h, inputDims.w, inputSize);
/*
* allocate memory to hold the input image
*/
if( !cudaAllocMapped((void**)&mInputCPU, (void**)&mInputCUDA, inputSize) )
{
printf("failed to alloc CUDA mapped memory for tensorNet input, %zu bytes\n", inputSize);
return false;
}
mInputSize = inputSize;
mWidth = inputDims.w;
mHeight = inputDims.h;
/*
* setup network output buffers
*/
const int numOutputs = output_blobs.size();
for( int n=0; n < numOutputs; n++ )
{
const int outputIndex = engine->getBindingIndex(output_blobs[n].c_str());
printf(LOG_GIE "%s output %i %s binding index: %i\n", model_path, n, output_blobs[n].c_str(), outputIndex);
nvinfer1::Dims3 outputDims = engine->getBindingDimensions(outputIndex);
size_t outputSize = outputDims.c * outputDims.h * outputDims.w * sizeof(float);
printf(LOG_GIE "%s output %i %s dims (c=%u h=%u w=%u) size=%zu\n", model_path, n, output_blobs[n].c_str(), outputDims.c, outputDims.h, outputDims.w, outputSize);
// allocate output memory
void* outputCPU = NULL;
void* outputCUDA = NULL;
if( !cudaAllocMapped((void**)&outputCPU, (void**)&outputCUDA, outputSize) )
{
printf("failed to alloc CUDA mapped memory for %u output classes\n", outputDims.c);
return false;
}
outputLayer l;
l.CPU = (float*)outputCPU;
l.CUDA = (float*)outputCUDA;
l.size = outputSize;
l.dims = outputDims;
l.name = output_blobs[n];
mOutputs.push_back(l);
}
mInputDims = inputDims;
mPrototxtPath = prototxt_path;
mModelPath = model_path;
mInputBlobName = input_blob;
if( mean_path != NULL )
mMeanPath = mean_path;
printf("%s initialized.\n", mModelPath.c_str());
return true;
}