Yolov3_tiny works on tensorRT

Signed-off-by: fbagni <gattinomicino>
This commit is contained in:
fbagni
2019-12-23 16:11:41 +01:00
parent f0ea2c027f
commit 7e7f480e2b
5 changed files with 20 additions and 32 deletions
-4
View File
@@ -25,8 +25,6 @@ Pooling::Pooling( Network *net, int winH, int winW, int strideH, int strideW,
int h = input_dim.h;
int w = input_dim.w;
int l = input_dim.l;
printf("before: %d %d\n", h, w);
poolOn3d = false;
@@ -64,8 +62,6 @@ Pooling::Pooling( Network *net, int winH, int winW, int strideH, int strideW,
checkCUDNN( cudnnSetTensor4dDescriptor(dstTensorDesc,
net->tensorFormat, net->dataType, n, c, h, w) );
printf("after: %d %d\n", h, w);
output_dim.n = n;
output_dim.c = c;