primitive icon indicating copy to clipboard operation
primitive copied to clipboard

What's the meaning of "worker"

Open Rusching opened this issue 2 years ago • 1 comments

Your work is amazing and I am truly amazed! While reading the code, I have something that I don't understand. What does 'worker' mean? Is it to start multiple threads at the same time to perform the hill climbing algorithm to get the optimal result? If only one worker is used, will it affect the result?

Rusching avatar Mar 19 '22 03:03 Rusching

workers usually mean number of cpu cores used for processing. Defaukt seems to use all cores but if you needed to slow down processing, you could use a single core only per example.

result should be the same(ish)... i dont think theres a way to generate exact same output every time so it will do the deed and process images correctly, albeit slower

mathieu-aubin avatar Jul 09 '22 21:07 mathieu-aubin