Skip to content
Prev 327 / 2152 Next

work splitting method on quadcore CPU

Matteo Mattiuzzi wrote:
Split your task into more pieces than 4 using a vector length that is 
some multiple of 4 to divide the work into smaller pieces.   If you 
divide it into smaller parts, the work will be distributed round-robin 
style to the CPU's as they become available.  This should minimize the 
unequal loading.

   - Brian