forked from dusty-nv/jetson-inference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tensorNet.cpp
951 lines (758 loc) · 27.6 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
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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
/*
* Copyright (c) 2017, NVIDIA CORPORATION. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
#include "tensorNet.h"
#include "randInt8Calibrator.h"
#include "cudaMappedMemory.h"
#include "cudaResize.h"
#include "filesystem.h"
#include "NvCaffeParser.h"
#if NV_TENSORRT_MAJOR >= 5
#include "NvOnnxParser.h"
#endif
#include <iostream>
#include <fstream>
#include <map>
#if NV_TENSORRT_MAJOR > 1
#define CREATE_INFER_BUILDER nvinfer1::createInferBuilder
#define CREATE_INFER_RUNTIME nvinfer1::createInferRuntime
#else
#define CREATE_INFER_BUILDER createInferBuilder
#define CREATE_INFER_RUNTIME createInferRuntime
#endif
//---------------------------------------------------------------------
const char* precisionTypeToStr( precisionType type )
{
switch(type)
{
case TYPE_DISABLED: return "DISABLED";
case TYPE_FASTEST: return "FASTEST";
case TYPE_FP32: return "FP32";
case TYPE_FP16: return "FP16";
case TYPE_INT8: return "INT8";
}
}
precisionType precisionTypeFromStr( const char* str )
{
if( !str )
return TYPE_DISABLED;
for( int n=0; n < NUM_PRECISIONS; n++ )
{
if( strcasecmp(str, precisionTypeToStr((precisionType)n)) == 0 )
return (precisionType)n;
}
return TYPE_DISABLED;
}
static inline nvinfer1::DataType precisionTypeToTRT( precisionType type )
{
switch(type)
{
case TYPE_FP16: return nvinfer1::DataType::kHALF;
case TYPE_INT8: return nvinfer1::DataType::kINT8;
}
return nvinfer1::DataType::kFLOAT;
}
static inline bool isFp16Enabled( nvinfer1::IBuilder* builder )
{
#if NV_TENSORRT_MAJOR < 4
return builder->getHalf2Mode();
#else
return builder->getFp16Mode();
#endif
}
#if NV_TENSORRT_MAJOR >= 4
static inline const char* dataTypeToStr( nvinfer1::DataType type )
{
switch(type)
{
case nvinfer1::DataType::kFLOAT: return "FP32";
case nvinfer1::DataType::kHALF: return "FP16";
case nvinfer1::DataType::kINT8: return "INT8";
case nvinfer1::DataType::kINT32: return "INT32";
}
}
static inline const char* dimensionTypeToStr( nvinfer1::DimensionType type )
{
switch(type)
{
case nvinfer1::DimensionType::kSPATIAL: return "SPATIAL";
case nvinfer1::DimensionType::kCHANNEL: return "CHANNEL";
case nvinfer1::DimensionType::kINDEX: return "INDEX";
case nvinfer1::DimensionType::kSEQUENCE: return "SEQUENCE";
}
}
#endif
#if NV_TENSORRT_MAJOR > 1
static inline nvinfer1::Dims validateDims( const nvinfer1::Dims& dims )
{
if( dims.nbDims == nvinfer1::Dims::MAX_DIMS )
return dims;
nvinfer1::Dims dims_out = dims;
// TRT doesn't set the higher dims, so make sure they are 1
for( int n=dims_out.nbDims; n < nvinfer1::Dims::MAX_DIMS; n++ )
dims_out.d[n] = 1;
return dims_out;
}
#endif
const char* deviceTypeToStr( deviceType type )
{
switch(type)
{
case DEVICE_GPU: return "GPU";
case DEVICE_DLA_0: return "DLA_0";
case DEVICE_DLA_1: return "DLA_1";
}
}
deviceType deviceTypeFromStr( const char* str )
{
if( !str )
return DEVICE_GPU;
for( int n=0; n < NUM_DEVICES; n++ )
{
if( strcasecmp(str, deviceTypeToStr((deviceType)n)) == 0 )
return (deviceType)n;
}
if( strcasecmp(str, "DLA") == 0 )
return DEVICE_DLA;
return DEVICE_GPU;
}
#if NV_TENSORRT_MAJOR >= 5
static inline nvinfer1::DeviceType deviceTypeToTRT( deviceType type )
{
switch(type)
{
case DEVICE_GPU: return nvinfer1::DeviceType::kGPU;
//case DEVICE_DLA: return nvinfer1::DeviceType::kDLA;
#if NV_TENSORRT_MAJOR == 5 && NV_TENSORRT_MINOR == 0 && NV_TENSORRT_PATCH == 0
case DEVICE_DLA_0: return nvinfer1::DeviceType::kDLA0;
case DEVICE_DLA_1: return nvinfer1::DeviceType::kDLA1;
#else
case DEVICE_DLA_0: return nvinfer1::DeviceType::kDLA;
case DEVICE_DLA_1: return nvinfer1::DeviceType::kDLA;
#endif
}
}
#endif
const char* modelFormatToStr( modelFormat format )
{
switch(format)
{
case MODEL_CUSTOM: return "custom";
case MODEL_CAFFE: return "caffe";
case MODEL_ONNX: return "ONNX";
case MODEL_UFF: return "UFF";
}
}
modelFormat modelFormatFromStr( const char* str )
{
if( !str )
return MODEL_CUSTOM;
if( strcasecmp(str, "caffemodel") == 0 || strcasecmp(str, "caffe") == 0 )
return MODEL_CAFFE;
else if( strcasecmp(str, "onnx") == 0 )
return MODEL_ONNX;
else if( strcasecmp(str, "uff") == 0 )
return MODEL_UFF;
return MODEL_CUSTOM;
}
//---------------------------------------------------------------------
// constructor
tensorNet::tensorNet()
{
mEngine = NULL;
mInfer = NULL;
mContext = NULL;
mStream = NULL;
mWidth = 0;
mHeight = 0;
mInputSize = 0;
mMaxBatchSize = 0;
mInputCPU = NULL;
mInputCUDA = NULL;
mEnableDebug = false;
mEnableProfiler = false;
mModelFormat = MODEL_CUSTOM;
mPrecision = TYPE_FASTEST;
mDevice = DEVICE_GPU;
mAllowGPUFallback = false;
memset(mEvents, 0, sizeof(mEvents));
#if NV_TENSORRT_MAJOR < 2
memset(&mInputDims, 0, sizeof(Dims3));
#endif
}
// Destructor
tensorNet::~tensorNet()
{
if( mEngine != NULL )
{
mEngine->destroy();
mEngine = NULL;
}
if( mInfer != NULL )
{
mInfer->destroy();
mInfer = NULL;
}
}
// EnableProfiler
void tensorNet::EnableProfiler()
{
mEnableProfiler = true;
if( mContext != NULL )
mContext->setProfiler(&gProfiler);
}
// EnableDebug
void tensorNet::EnableDebug()
{
mEnableDebug = true;
}
// DetectNativePrecisions()
std::vector<precisionType> tensorNet::DetectNativePrecisions( deviceType device )
{
std::vector<precisionType> types;
Logger logger;
// create a temporary builder for querying the supported types
nvinfer1::IBuilder* builder = CREATE_INFER_BUILDER(logger);
if( !builder )
{
printf(LOG_TRT "QueryNativePrecisions() failed to create TensorRT IBuilder instance\n");
return types;
}
#if NV_TENSORRT_MAJOR >= 5
if( device == DEVICE_DLA_0 || device == DEVICE_DLA_1 )
builder->setFp16Mode(true);
builder->setDefaultDeviceType( deviceTypeToTRT(device) );
#endif
// FP32 is supported on all platforms
types.push_back(TYPE_FP32);
// detect fast (native) FP16
if( builder->platformHasFastFp16() )
types.push_back(TYPE_FP16);
#if NV_TENSORRT_MAJOR >= 4
// detect fast (native) INT8
if( builder->platformHasFastInt8() )
types.push_back(TYPE_INT8);
#endif
// print out supported precisions (optional)
const uint32_t numTypes = types.size();
printf(LOG_TRT "native precisions detected for %s: ", deviceTypeToStr(device));
for( uint32_t n=0; n < numTypes; n++ )
{
printf("%s", precisionTypeToStr(types[n]));
if( n < numTypes - 1 )
printf(", ");
}
printf("\n");
builder->destroy();
return types;
}
// DetectNativePrecision
bool tensorNet::DetectNativePrecision( const std::vector<precisionType>& types, precisionType type )
{
const uint32_t numTypes = types.size();
for( uint32_t n=0; n < numTypes; n++ )
{
if( types[n] == type )
return true;
}
return false;
}
// DetectNativePrecision
bool tensorNet::DetectNativePrecision( precisionType precision, deviceType device )
{
std::vector<precisionType> types = DetectNativePrecisions(device);
return DetectNativePrecision(types, precision);
}
// FindFastestPrecision
precisionType tensorNet::FindFastestPrecision( deviceType device, bool allowInt8 )
{
std::vector<precisionType> types = DetectNativePrecisions(device);
if( allowInt8 && DetectNativePrecision(types, TYPE_INT8) )
return TYPE_INT8;
else if( DetectNativePrecision(types, TYPE_FP16) )
return TYPE_FP16;
else
return TYPE_FP32;
}
// 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
precisionType precision,
deviceType device, bool allowGPUFallback,
nvinfer1::IInt8Calibrator* calibrator,
std::ostream& gieModelStream) // output stream for the GIE model
{
// create API root class - must span the lifetime of the engine usage
nvinfer1::IBuilder* builder = CREATE_INFER_BUILDER(gLogger);
nvinfer1::INetworkDefinition* network = builder->createNetwork();
builder->setDebugSync(mEnableDebug);
builder->setMinFindIterations(3); // allow time for TX1 GPU to spin up
builder->setAverageFindIterations(2);
//mEnableFP16 = (mOverride16 == true) ? false : builder->platformHasFastFp16();
//printf(LOG_GIE "platform %s fast FP16 support\n", mEnableFP16 ? "has" : "does not have");
printf(LOG_GIE "device %s, loading %s %s\n", deviceTypeToStr(device), deployFile.c_str(), modelFile.c_str());
// parse the different types of model formats
if( mModelFormat == MODEL_CAFFE )
{
// parse the caffe model to populate the network, then set the outputs
nvcaffeparser1::ICaffeParser* parser = nvcaffeparser1::createCaffeParser();
nvinfer1::DataType modelDataType = (precision == TYPE_FP16) ? nvinfer1::DataType::kHALF : nvinfer1::DataType::kFLOAT; // import INT8 weights as FP32
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 "device %s, failed to parse caffe network\n", deviceTypeToStr(device));
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++ )
{
nvinfer1::ITensor* tensor = blobNameToTensor->find(outputs[n].c_str());
if( !tensor )
printf(LOG_GIE "failed to retrieve tensor for Output \"%s\"\n", outputs[n].c_str());
else
{
#if NV_TENSORRT_MAJOR >= 4
nvinfer1::Dims3 dims = static_cast<nvinfer1::Dims3&&>(tensor->getDimensions());
printf(LOG_GIE "retrieved Output tensor \"%s\": %ix%ix%i\n", tensor->getName(), dims.d[0], dims.d[1], dims.d[2]);
#endif
}
network->markOutput(*tensor);
}
//parser->destroy();
}
#if NV_TENSORRT_MAJOR >= 5
else if( mModelFormat == MODEL_ONNX )
{
nvonnxparser::IParser* parser = nvonnxparser::createParser(*network, gLogger);
if( !parser )
{
printf(LOG_TRT "failed to create nvonnxparser::IParser instance\n");
return false;
}
if( !parser->parseFromFile(modelFile.c_str(), (int)nvinfer1::ILogger::Severity::kWARNING) )
{
printf(LOG_TRT "failed to parse ONNX model '%s'\n", modelFile.c_str());
return false;
}
//parser->destroy();
}
#endif
#if NV_TENSORRT_MAJOR >= 4
// extract the dimensions of the network input blobs
std::map<std::string, nvinfer1::Dims3> inputDimensions;
for( int i=0, n=network->getNbInputs(); i < n; i++ )
{
nvinfer1::Dims3 dims = static_cast<nvinfer1::Dims3&&>(network->getInput(i)->getDimensions());
inputDimensions.insert(std::make_pair(network->getInput(i)->getName(), dims));
std::cout << LOG_TRT << "retrieved Input tensor \"" << network->getInput(i)->getName() << "\": " << dims.d[0] << "x" << dims.d[1] << "x" << dims.d[2] << std::endl;
}
#endif
// build the engine
printf(LOG_GIE "device %s, configuring CUDA engine\n", deviceTypeToStr(device));
builder->setMaxBatchSize(maxBatchSize);
builder->setMaxWorkspaceSize(16 << 20);
// set up the builder for the desired precision
if( precision == TYPE_INT8 )
{
#if NV_TENSORRT_MAJOR >= 4
builder->setInt8Mode(true);
//builder->setFp16Mode(true); // TODO: experiment for benefits of both INT8/FP16
if( !calibrator )
{
calibrator = new randInt8Calibrator(1, mCacheCalibrationPath, inputDimensions);
printf(LOG_TRT "warning: device %s using INT8 precision with RANDOM calibration\n", deviceTypeToStr(device));
}
builder->setInt8Calibrator(calibrator);
#else
printf(LOG_TRT "INT8 precision requested, and TensorRT %u.%u doesn't meet minimum version for INT8\n", NV_TENSORRT_MAJOR, NV_TENSORRT_MINOR);
printf(LOG_TRT "please use minumum version of TensorRT 4.0 or newer for INT8 support\n");
return false;
#endif
}
else if( precision == TYPE_FP16 )
{
#if NV_TENSORRT_MAJOR < 4
builder->setHalf2Mode(true);
#else
builder->setFp16Mode(true);
#endif
}
// set the default device type
#if NV_TENSORRT_MAJOR >= 5
builder->setDefaultDeviceType(deviceTypeToTRT(device));
if( allowGPUFallback )
builder->allowGPUFallback(true);
#if !(NV_TENSORRT_MAJOR == 5 && NV_TENSORRT_MINOR == 0 && NV_TENSORRT_PATCH == 0)
if( device == DEVICE_DLA_0 )
builder->setDLACore(0);
else if( device == DEVICE_DLA_1 )
builder->setDLACore(1);
#endif
#else
if( device != DEVICE_GPU )
{
printf(LOG_TRT "device %s is not supported in TensorRT %u.%u\n", deviceTypeToStr(device), NV_TENSORRT_MAJOR, NV_TENSORRT_MINOR);
return false;
}
#endif
// build CUDA engine
printf(LOG_TRT "device %s, building FP16: %s\n", deviceTypeToStr(device), isFp16Enabled(builder) ? "ON" : "OFF");
printf(LOG_TRT "device %s, building INT8: %s\n", deviceTypeToStr(device), builder->getInt8Mode() ? "ON" : "OFF");
printf(LOG_GIE "device %s, building CUDA engine\n", deviceTypeToStr(device));
nvinfer1::ICudaEngine* engine = builder->buildCudaEngine(*network);
if( !engine )
{
printf(LOG_GIE "device %s, failed to build CUDA engine\n", deviceTypeToStr(device));
return false;
}
printf(LOG_GIE "device %s, completed building CUDA engine\n", deviceTypeToStr(device));
// we don't need the network definition any more, and we can destroy the parser
network->destroy();
//parser->destroy();
// serialize the engine, then close everything down
#if NV_TENSORRT_MAJOR > 1
nvinfer1::IHostMemory* serMem = engine->serialize();
if( !serMem )
{
printf(LOG_GIE "device %s, failed to serialize CUDA engine\n", deviceTypeToStr(device));
return false;
}
gieModelStream.write((const char*)serMem->data(), serMem->size());
#else
engine->serialize(gieModelStream);
#endif
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, uint32_t maxBatchSize,
precisionType precision, deviceType device, bool allowGPUFallback,
nvinfer1::IInt8Calibrator* calibrator, cudaStream_t stream )
{
std::vector<std::string> outputs;
outputs.push_back(output_blob);
return LoadNetwork(prototxt_path, model_path, mean_path, input_blob, outputs, maxBatchSize, precision, device, allowGPUFallback );
}
// 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,
uint32_t maxBatchSize, precisionType precision,
deviceType device, bool allowGPUFallback,
nvinfer1::IInt8Calibrator* calibrator, cudaStream_t stream )
{
if( /*!prototxt_path_ ||*/ !model_path_ )
return false;
printf(LOG_GIE "TensorRT version %u.%u.%u\n", NV_TENSORRT_MAJOR, NV_TENSORRT_MINOR, NV_TENSORRT_PATCH);
/*
* verify the prototxt and model paths
*/
const std::string model_path = locateFile(model_path_);
const std::string prototxt_path = locateFile(prototxt_path_ != NULL ? prototxt_path_ : "");
const std::string model_ext = fileExtension(model_path_);
const modelFormat model_fmt = modelFormatFromStr(model_ext.c_str());
printf(LOG_TRT "detected model format - %s (extension '.%s')\n", modelFormatToStr(model_fmt), model_ext.c_str());
if( model_fmt == MODEL_CUSTOM || model_fmt == MODEL_UFF )
{
printf(LOG_TRT "model format '%s' not supported by jetson-inference\n", modelFormatToStr(model_fmt));
return false;
}
#if NV_TENSORRT_MAJOR < 5
else if( model_fmt == MODEL_ONNX )
{
printf(LOG_TRT "importing ONNX models is not supported in TensorRT %u.%u (version >= 5.0 required)\n", NV_TENSORRT_MAJOR, NV_TENSORRT_MINOR);
return false;
}
#endif
else if( model_fmt == MODEL_CAFFE && !prototxt_path_ )
{
printf(LOG_TRT "attempted to load caffe model without specifying prototxt file\n");
return false;
}
mModelFormat = model_fmt;
/*
* if the precision is left unspecified, detect the fastest
*/
printf(LOG_TRT "desired precision specified for %s: %s\n", deviceTypeToStr(device), precisionTypeToStr(precision));
if( precision == TYPE_DISABLED )
{
printf(LOG_TRT "skipping network specified with precision TYPE_DISABLE\n");
printf(LOG_TRT "please specify a valid precision to create the network\n");
return false;
}
else if( precision == TYPE_FASTEST )
{
if( !calibrator )
printf(LOG_TRT "requested fasted precision for device %s without providing valid calibrator, disabling INT8\n", deviceTypeToStr(device));
precision = FindFastestPrecision(device, (calibrator != NULL));
printf(LOG_TRT "selecting fastest native precision for %s: %s\n", deviceTypeToStr(device), precisionTypeToStr(precision));
}
else
{
if( !DetectNativePrecision(precision, device) )
{
printf(LOG_TRT "precision %s is not supported for device %s\n", precisionTypeToStr(precision), deviceTypeToStr(device));
return false;
}
if( precision == TYPE_INT8 && !calibrator )
printf(LOG_TRT "warning: device %s using INT8 precision with RANDOM calibration\n", deviceTypeToStr(device));
}
/*
* attempt to load network from cache before profiling with tensorRT
*/
std::stringstream gieModelStream;
gieModelStream.seekg(0, gieModelStream.beg);
char cache_prefix[512];
char cache_path[512];
sprintf(cache_prefix, "%s.%u.%u.%s.%s", model_path.c_str(), maxBatchSize, (uint32_t)allowGPUFallback, deviceTypeToStr(device), precisionTypeToStr(precision));
sprintf(cache_path, "%s.calibration", cache_prefix);
mCacheCalibrationPath = cache_path;
sprintf(cache_path, "%s.engine", cache_prefix);
mCacheEnginePath = cache_path;
printf(LOG_GIE "attempting to open engine cache file %s\n", mCacheEnginePath.c_str());
std::ifstream cache( mCacheEnginePath );
if( !cache )
{
printf(LOG_GIE "cache file not found, profiling network model on device %s\n", deviceTypeToStr(device));
if( !ProfileModel(prototxt_path, model_path, output_blobs, maxBatchSize,
precision, device, allowGPUFallback, calibrator,
gieModelStream) )
{
printf("device %s, failed to load %s\n", deviceTypeToStr(device), model_path.c_str());
return 0;
}
printf(LOG_GIE "network profiling complete, writing engine cache to %s\n", mCacheEnginePath.c_str());
std::ofstream outFile;
outFile.open(mCacheEnginePath);
outFile << gieModelStream.rdbuf();
outFile.close();
gieModelStream.seekg(0, gieModelStream.beg);
printf(LOG_GIE "device %s, completed writing engine cache to %s\n", deviceTypeToStr(device), mCacheEnginePath.c_str());
}
else
{
printf(LOG_GIE "loading network profile from engine cache... %s\n", mCacheEnginePath.c_str());
gieModelStream << cache.rdbuf();
cache.close();
// test for half FP16 support
/*nvinfer1::IBuilder* builder = CREATE_INFER_BUILDER(gLogger);
if( builder != NULL )
{
mEnableFP16 = !mOverride16 && builder->platformHasFastFp16();
printf(LOG_GIE "platform %s fast FP16 support\n", mEnableFP16 ? "has" : "does not have");
builder->destroy();
}*/
}
printf(LOG_GIE "device %s, %s loaded\n", deviceTypeToStr(device), model_path.c_str());
/*
* create runtime inference engine execution context
*/
nvinfer1::IRuntime* infer = CREATE_INFER_RUNTIME(gLogger);
if( !infer )
{
printf(LOG_GIE "device %s, failed to create InferRuntime\n", deviceTypeToStr(device));
return 0;
}
#if NV_TENSORRT_MAJOR >= 5 && !(NV_TENSORRT_MAJOR == 5 && NV_TENSORRT_MINOR == 0 && NV_TENSORRT_PATCH == 0)
// if using DLA, set the desired core before deserialization occurs
if( device == DEVICE_DLA_0 )
{
printf(LOG_TRT "device %s, enabling DLA core 0\n", deviceTypeToStr(device));
infer->setDLACore(0);
}
else if( device == DEVICE_DLA_1 )
{
printf(LOG_TRT "device %s, enabling DLA core 1\n", deviceTypeToStr(device));
infer->setDLACore(1);
}
#endif
#if NV_TENSORRT_MAJOR > 1
// support for stringstream deserialization was deprecated in TensorRT v2
// instead, read the stringstream into a memory buffer and pass that to TRT.
gieModelStream.seekg(0, std::ios::end);
const int modelSize = gieModelStream.tellg();
gieModelStream.seekg(0, std::ios::beg);
void* modelMem = malloc(modelSize);
if( !modelMem )
{
printf(LOG_GIE "failed to allocate %i bytes to deserialize model\n", modelSize);
return 0;
}
gieModelStream.read((char*)modelMem, modelSize);
nvinfer1::ICudaEngine* engine = infer->deserializeCudaEngine(modelMem, modelSize, NULL);
free(modelMem);
#else
// TensorRT v1 can deserialize directly from stringstream
nvinfer1::ICudaEngine* engine = infer->deserializeCudaEngine(gieModelStream);
#endif
if( !engine )
{
printf(LOG_GIE "device %s, failed to create CUDA engine\n", deviceTypeToStr(device));
return 0;
}
nvinfer1::IExecutionContext* context = engine->createExecutionContext();
if( !context )
{
printf(LOG_GIE "device %s, failed to create execution context\n", deviceTypeToStr(device));
return 0;
}
if( mEnableDebug )
{
printf(LOG_GIE "device %s, enabling context debug sync.\n", deviceTypeToStr(device));
context->setDebugSync(true);
}
if( mEnableProfiler )
context->setProfiler(&gProfiler);
printf(LOG_GIE "device %s, CUDA engine context initialized with %u bindings\n", deviceTypeToStr(device), engine->getNbBindings());
mInfer = infer;
mEngine = engine;
mContext = context;
SetStream(stream); // set default device stream
#if NV_TENSORRT_MAJOR >= 4
/*
* print out binding info
*/
const int numBindings = engine->getNbBindings();
for( int n=0; n < numBindings; n++ )
{
printf(LOG_TRT "binding -- index %i\n", n);
const char* bind_name = engine->getBindingName(n);
printf(" -- name '%s'\n", bind_name);
printf(" -- type %s\n", dataTypeToStr(engine->getBindingDataType(n)));
printf(" -- in/out %s\n", engine->bindingIsInput(n) ? "INPUT" : "OUTPUT");
const nvinfer1::Dims bind_dims = engine->getBindingDimensions(n);
printf(" -- # dims %i\n", bind_dims.nbDims);
for( int i=0; i < bind_dims.nbDims; i++ )
printf(" -- dim #%i %i (%s)\n", i, bind_dims.d[i], dimensionTypeToStr(bind_dims.type[i]));
}
#endif
/*
* determine dimensions of network input bindings
*/
const int inputIndex = engine->getBindingIndex(input_blob);
printf(LOG_GIE "binding to input 0 %s binding index: %i\n", input_blob, inputIndex);
#if NV_TENSORRT_MAJOR > 1
nvinfer1::Dims inputDims = validateDims(engine->getBindingDimensions(inputIndex));
#else
Dims3 inputDims = engine->getBindingDimensions(inputIndex);
#endif
size_t inputSize = maxBatchSize * DIMS_C(inputDims) * DIMS_H(inputDims) * DIMS_W(inputDims) * sizeof(float);
printf(LOG_GIE "binding to input 0 %s dims (b=%u c=%u h=%u w=%u) size=%zu\n", input_blob, maxBatchSize, DIMS_C(inputDims), DIMS_H(inputDims), DIMS_W(inputDims), inputSize);
/*
* allocate memory to hold the input buffer
*/
if( !cudaAllocMapped((void**)&mInputCPU, (void**)&mInputCUDA, inputSize) )
{
printf(LOG_TRT "failed to alloc CUDA mapped memory for tensor input, %zu bytes\n", inputSize);
return false;
}
mInputSize = inputSize;
mWidth = DIMS_W(inputDims);
mHeight = DIMS_H(inputDims);
mMaxBatchSize = maxBatchSize;
/*
* 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 "binding to output %i %s binding index: %i\n", n, output_blobs[n].c_str(), outputIndex);
#if NV_TENSORRT_MAJOR > 1
nvinfer1::Dims outputDims = validateDims(engine->getBindingDimensions(outputIndex));
#else
Dims3 outputDims = engine->getBindingDimensions(outputIndex);
#endif
size_t outputSize = maxBatchSize * DIMS_C(outputDims) * DIMS_H(outputDims) * DIMS_W(outputDims) * sizeof(float);
printf(LOG_GIE "binding to output %i %s dims (b=%u c=%u h=%u w=%u) size=%zu\n", n, output_blobs[n].c_str(), maxBatchSize, DIMS_C(outputDims), DIMS_H(outputDims), DIMS_W(outputDims), outputSize);
// allocate output memory
void* outputCPU = NULL;
void* outputCUDA = NULL;
//if( CUDA_FAILED(cudaMalloc((void**)&outputCUDA, outputSize)) )
if( !cudaAllocMapped((void**)&outputCPU, (void**)&outputCUDA, outputSize) )
{
printf(LOG_TRT "failed to alloc CUDA mapped memory for tensor output, %zu bytes\n", outputSize);
return false;
}
outputLayer l;
l.CPU = (float*)outputCPU;
l.CUDA = (float*)outputCUDA;
l.size = outputSize;
#if NV_TENSORRT_MAJOR > 1
DIMS_W(l.dims) = DIMS_W(outputDims);
DIMS_H(l.dims) = DIMS_H(outputDims);
DIMS_C(l.dims) = DIMS_C(outputDims);
#else
l.dims = outputDims;
#endif
l.name = output_blobs[n];
mOutputs.push_back(l);
}
#if NV_TENSORRT_MAJOR > 1
DIMS_W(mInputDims) = DIMS_W(inputDims);
DIMS_H(mInputDims) = DIMS_H(inputDims);
DIMS_C(mInputDims) = DIMS_C(inputDims);
#else
mInputDims = inputDims;
#endif
mPrototxtPath = prototxt_path;
mModelPath = model_path;
mInputBlobName = input_blob;
mPrecision = precision;
mDevice = device;
mAllowGPUFallback = allowGPUFallback;
if( mean_path != NULL )
mMeanPath = mean_path;
printf("device %s, %s initialized.\n", deviceTypeToStr(device), mModelPath.c_str());
return true;
}
// CreateStream
cudaStream_t tensorNet::CreateStream( bool nonBlocking )
{
uint32_t flags = cudaStreamDefault;
if( nonBlocking )
flags = cudaStreamNonBlocking;
cudaStream_t stream = NULL;
if( CUDA_FAILED(cudaStreamCreateWithFlags(&stream, flags)) )
return NULL;
SetStream(stream);
return stream;
}
// SetStream
void tensorNet::SetStream( cudaStream_t stream )
{
mStream = stream;
if( !mStream )
return;
for( int n=0; n < 2; n++ )
{
if( !mEvents[n] )
CUDA(cudaEventCreateWithFlags(&mEvents[n], /*cudaEventBlockingSync*/cudaEventDefault));
}
}