hexiangquan/tensorRTyoloV3

Is there a bug in upsample_kernel function?

Opened this issue · 0 comments

int line 28:
int in_index = b*w*h*c + in_c*w*h + in_h*w + in_w;
I think there should be :
int in_index = b*in_w*in_h*in_c + in_c*in_w*in_h + in_h*in_w + in_w;
is that right?