Skip to content

work splitting method on quadcore CPU

3 messages · Brian G. Peterson, Matteo Mattiuzzi

#
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
13 days later