Hi @Erez,
I see that you used the --performance
parameter when running the hailomz compile
command. This means that the compilation will be run in “performance mode” , so the compiler will run an exhaustive search to find the solution that guarantees the highest throughput.
In more details, the compiler will set different resources utilization levels and will try to allocate the model many times, and then it will select the best solution. For some of these utilization levels, it may happen that the compilation fails, and the compiler moves to the next iteration.
I see from your log that you got a yolov8n.hef at the end of the process, which means that the compilation was successful.
As a side note, I suggest you run compilation with performance mode only when you really need to optimize the model’s performance, it is generally not needed in earlier phase of development (as it takes much more time than the standard compilation).