The message was reporting failure with n threads and retrying with n // 2, however a few lines up threads was already set to n // 2 representing the next thread count to try.
You'll see currently the log finishing with
[WARNING] PoissonRecon failed with 1 threads, let's retry with 0...
The message was reporting failure with
n
threads and retrying withn // 2
, however a few lines upthreads
was already set ton // 2
representing the next thread count to try.You'll see currently the log finishing with
which demonstrates the issues.