OpenBLAS Warning: Detect OpenMP Loop and this application may hang. Please rebuild the library with USE_OPENMP = 1 option

Hi,

The error indicates the OpenBLAS doesn’t build with OpenMP support.
But YOLOv5 source do use OpenMP for acceleration.

To workaround this, you can try to set OMP_NUM_THREADS=1 to turn-off multi-thread.
Or you can re-install OpenBLAS from source by compiling it with USE_OPENMP=1.

Thanks.