You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To compile the yolov4 models with batched NMS, I had to change this:
comment builder->allowGPUFallback(true); in SampleYolo.cpp. According docs the allowGPUFallback was removed from TensorRT 8.0.1. If I understand well, I do not have to care about it in TensorRT 8.0.1. Am I right?
comment all MYELIN_LIB and ENABLE_MYELIN, in Makefile.config to prevent error: /usr/bin/ld: cannot find -lmyelin because it seems to me that TensorRT 8.0.1 does not use it, but I found nothing about it. Do you have any idea?
If you do these 2 steps, then you can compile it and it works.
Good luck!
The text was updated successfully, but these errors were encountered:
frenky-strasak
changed the title
TensorRT 8.0.1 engine for YOLOv4 in standalone mode
[Solution]TensorRT 8.0.1 engine for YOLOv4 in standalone mode
Nov 24, 2021
frenky-strasak
changed the title
[Solution]TensorRT 8.0.1 engine for YOLOv4 in standalone mode
[Solution] TensorRT 8.0.1 engine for YOLOv4 in standalone mode
Nov 24, 2021
To compile the yolov4 models with batched NMS, I had to change this:
builder->allowGPUFallback(true);
in SampleYolo.cpp. According docs theallowGPUFallback
was removed from TensorRT 8.0.1. If I understand well, I do not have to care about it in TensorRT 8.0.1. Am I right?MYELIN_LIB
andENABLE_MYELIN
, inMakefile.config
to prevent error:/usr/bin/ld: cannot find -lmyelin
because it seems to me that TensorRT 8.0.1 does not use it, but I found nothing about it. Do you have any idea?If you do these 2 steps, then you can compile it and it works.
Good luck!
The text was updated successfully, but these errors were encountered: